You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SDK prints out the "New SDK client connected" message TWICE which is unexpected for users:
For exampole:
[2024-09-26T00:08:33Z INFO re_sdk_comms::server] Hosting a SDK server over TCP at 0.0.0.0:9876. Connect with the Rerun logging SDK.
[2024-09-26T00:08:33Z INFO re_sdk_comms::server] New SDK client connected from: 127.0.0.1:63884
[2024-09-26T00:08:33Z INFO re_sdk_comms::server] New SDK client connected from: 127.0.0.1:63885
The rationale comes back to the fact that after spawning we wait for the spawned server to be able to be connected to, which is helpful to prevents other connection-timeout messages down the line. See:
This "test connection" causes the spurious connection message from the viewer instance.
Now that we have a more defined connection protocol we should be able to include a payload indicating this is a "test" connection and skip the client connection printout in that case.
The text was updated successfully, but these errors were encountered:
When using:
The SDK prints out the "New SDK client connected" message TWICE which is unexpected for users:
For exampole:
The rationale comes back to the fact that after spawning we wait for the spawned server to be able to be connected to, which is helpful to prevents other connection-timeout messages down the line. See:
rerun/crates/top/re_sdk/src/spawn.rs
Lines 302 to 314 in bd87d4c
This "test connection" causes the spurious connection message from the viewer instance.
Now that we have a more defined connection protocol we should be able to include a payload indicating this is a "test" connection and skip the client connection printout in that case.
The text was updated successfully, but these errors were encountered: