learning-loop-node 0.13.3__py3-none-any.whl → 0.13.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of learning-loop-node might be problematic. Click here for more details.
- learning_loop_node/detector/detector_node.py +5 -2
- {learning_loop_node-0.13.3.dist-info → learning_loop_node-0.13.4.dist-info}/METADATA +1 -1
- {learning_loop_node-0.13.3.dist-info → learning_loop_node-0.13.4.dist-info}/RECORD +4 -4
- {learning_loop_node-0.13.3.dist-info → learning_loop_node-0.13.4.dist-info}/WHEEL +0 -0
|
@@ -200,8 +200,11 @@ class DetectorNode(Node):
|
|
|
200
200
|
"""The DetectorNode acts as a SocketIO server. This method sets up the server and defines the event handlers."""
|
|
201
201
|
# pylint: disable=unused-argument
|
|
202
202
|
|
|
203
|
-
# Initialize the Socket.IO server
|
|
204
|
-
self.sio = socketio.AsyncServer(
|
|
203
|
+
# Initialize the Socket.IO server with 20MB buffer size
|
|
204
|
+
self.sio = socketio.AsyncServer(
|
|
205
|
+
async_mode='asgi',
|
|
206
|
+
max_http_buffer_size=2e7, # 20MB
|
|
207
|
+
)
|
|
205
208
|
# Initialize and mount the ASGI app
|
|
206
209
|
self.sio_app = socketio.ASGIApp(self.sio, socketio_path='/socket.io')
|
|
207
210
|
self.mount('/ws', self.sio_app)
|
|
@@ -12,7 +12,7 @@ learning_loop_node/data_classes/training.py,sha256=FFPsr2AA7ynYz39MLZaFJ0sF_9Axl
|
|
|
12
12
|
learning_loop_node/data_exchanger.py,sha256=IG5ki3f3IsVuXbyw6q_gUIakgv-GMT6e9nhOhzjKgW4,9055
|
|
13
13
|
learning_loop_node/detector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
learning_loop_node/detector/detector_logic.py,sha256=FhGbu0mdF0tW0Gg8cr8xM6ZmZzEigGf0IcAWBjoxFrs,2191
|
|
15
|
-
learning_loop_node/detector/detector_node.py,sha256=
|
|
15
|
+
learning_loop_node/detector/detector_node.py,sha256=2DpolliA36HIOvFqNeZaBOX2vwKL58i1rEJidPcFymM,25151
|
|
16
16
|
learning_loop_node/detector/inbox_filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
learning_loop_node/detector/inbox_filter/cam_observation_history.py,sha256=1PHgXRrhSQ34HSFw7mdX8ndRxHf_i1aP5nXXnrZxhAY,3312
|
|
18
18
|
learning_loop_node/detector/inbox_filter/relevance_filter.py,sha256=NPEmrAtuGjIWCtHS0B3zDmnYWkhVFCLbd_7RUp08_AM,1372
|
|
@@ -96,6 +96,6 @@ learning_loop_node/trainer/test_executor.py,sha256=6BVGDN_6f5GEMMEvDLSG1yzMybSvg
|
|
|
96
96
|
learning_loop_node/trainer/trainer_logic.py,sha256=eK-01qZzi10UjLMCQX8vy5eW2FoghPj3rzzDC-s3Si4,8792
|
|
97
97
|
learning_loop_node/trainer/trainer_logic_generic.py,sha256=RQqon8JIVzxaNh0KdEe6tMxebsY0DgZllEohHR-AgqU,26846
|
|
98
98
|
learning_loop_node/trainer/trainer_node.py,sha256=Dl4ZQAjjXQggibeBjvhXAoFClw1ZX2Kkt3v_fjrJnCI,4508
|
|
99
|
-
learning_loop_node-0.13.
|
|
100
|
-
learning_loop_node-0.13.
|
|
101
|
-
learning_loop_node-0.13.
|
|
99
|
+
learning_loop_node-0.13.4.dist-info/METADATA,sha256=PCQ2UaAA26NGRvbsCnjf2uWla3Qf-WBjfCs1o5gsgJs,12761
|
|
100
|
+
learning_loop_node-0.13.4.dist-info/WHEEL,sha256=WGfLGfLX43Ei_YORXSnT54hxFygu34kMpcQdmgmEwCQ,88
|
|
101
|
+
learning_loop_node-0.13.4.dist-info/RECORD,,
|
|
File without changes
|