Skip to content

Commit

Permalink
remote_account: rise paramiko REKEY_BYTES
Browse files Browse the repository at this point in the history
Changing it due to redpanda-data/redpanda#6792
  • Loading branch information
ZeDRoman authored and savex committed Sep 12, 2023
1 parent 2941ee5 commit 143a26d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ducktape/cluster/remoteaccount.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import paramiko
# Constant that is responsible for updating ssh session keys after
# more than REKEY_BYTES data passed through the connection
# Changing it due to https://github.com/redpanda-data/redpanda/issues/6792
paramiko.packet.Packetizer.REKEY_BYTES = pow(2, 32) # noqa

from contextlib import contextmanager
import logging
import os
Expand Down

0 comments on commit 143a26d

Please sign in to comment.