Skip to content

Commit 88d6702

Browse files
committed
Now sending is alive message every 1 minute.
1 parent 6ce748c commit 88d6702

File tree

1 file changed

+2
-1
lines changed
  • hkube_python_wrapper/wrapper

1 file changed

+2
-1
lines changed

Diff for: hkube_python_wrapper/wrapper/wc.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ def __init__(self, msg_queue, encoding, url):
2121
self._active = True
2222
self._firstConnect = False
2323
self._printThrottleMessages = {
24-
messages.outgoing.streamingStatistics: {"delay": 240, "lastPrint": None}
24+
messages.outgoing.streamingStatistics: {"delay": 240, "lastPrint": None},
25+
messages.outgoing.alive: {"delay": 60, "lastPrint": None}
2526
}
2627
self._encoding = Encoding(encoding)
2728
self._ws_opcode = ABNF.OPCODE_BINARY if self._encoding.isBinary else ABNF.OPCODE_TEXT

0 commit comments

Comments
 (0)