Skip to content

Commit

Permalink
fix(unchunker): initial allowed message size to env var (#158)
Browse files Browse the repository at this point in the history
* initial allowed message size to env var
  • Loading branch information
kliment-slice authored May 20, 2024
1 parent 3508390 commit 488d637
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/src/wslink/chunking.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
import sys
import secrets
import msgpack
Expand Down Expand Up @@ -87,7 +88,7 @@ class UnChunker:

def __init__(self):
self.pending_messages = {}
self.max_message_size = 512
self.max_message_size = int(os.environ.get("WSLINK_AUTH_MSG_SIZE", 512))

def set_max_message_size(self, size):
self.max_message_size = size
Expand Down

0 comments on commit 488d637

Please sign in to comment.