We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8e2370 commit d53399fCopy full SHA for d53399f
1 file changed
livekit-rtc/livekit/rtc/room.py
@@ -466,6 +466,11 @@ def on_participant_connected(participant):
466
req.connect.options.auto_subscribe = options.auto_subscribe
467
req.connect.options.dynacast = options.dynacast
468
469
+ # The Python SDK still implements data streams in Python on top of raw FFI
470
+ # packets, so always advertise only legacy (v1) data stream support to other
471
+ # clients.
472
+ req.connect.options.data_stream.use_legacy_client_implementation = True
473
+
474
if options.connect_timeout is not None:
475
req.connect.options.connect_timeout_ms = int(options.connect_timeout * 1000)
476
0 commit comments