File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
crates/top/rerun/src/commands Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Examples:
57
57
Open an .rrd file and stream it to a Web Viewer:
58
58
rerun recording.rrd --web-viewer
59
59
60
- Host a Rerun gRPC server which listens for incoming connections from the logging SDK, buffers the log messages, and serves the results:
60
+ Host a Rerun gRPC server which listens for incoming connections from the logging SDK, buffer the log messages, and serve the results:
61
61
rerun --serve-web
62
62
63
63
Host a Rerun Server which serves a recording from a file over gRPC to any connecting Rerun Viewers:
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ def serve_grpc(
227
227
You can limit the amount of data buffered by the gRPC server with the `server_memory_limit` argument.
228
228
Once reached, the earliest logged data will be dropped. Static data is never dropped.
229
229
230
- This function returns immediately. In order to keep the server running, you must keep the process running
230
+ This function returns immediately. In order to keep the server running, you must keep the Python process running
231
231
as well.
232
232
233
233
Parameters
@@ -249,7 +249,7 @@ def serve_grpc(
249
249
250
250
"""
251
251
if not is_recording_enabled (recording ):
252
- logging .warning ("Rerun is disabled - serve () call ignored" )
252
+ logging .warning ("Rerun is disabled - serve_grpc () call ignored" )
253
253
return
254
254
255
255
from rerun .recording_stream import get_application_id
Original file line number Diff line number Diff line change @@ -979,7 +979,7 @@ fn serve_grpc(
979
979
} ;
980
980
981
981
if re_sdk:: forced_sink_path ( ) . is_some ( ) {
982
- re_log:: debug!( "Ignored call to `serve ()` since _RERUN_TEST_FORCE_SAVE is set" ) ;
982
+ re_log:: debug!( "Ignored call to `serve_grpc ()` since _RERUN_TEST_FORCE_SAVE is set" ) ;
983
983
return Ok ( ( ) ) ;
984
984
}
985
985
You can’t perform that action at this time.
0 commit comments