Skip to content

Commit 6907012

Browse files
jprochazkemilk
andauthored
Update wording
Co-authored-by: Emil Ernerfeldt <[email protected]>
1 parent 716188d commit 6907012

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

crates/top/rerun/src/commands/entrypoint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Examples:
5757
Open an .rrd file and stream it to a Web Viewer:
5858
rerun recording.rrd --web-viewer
5959
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:
6161
rerun --serve-web
6262
6363
Host a Rerun Server which serves a recording from a file over gRPC to any connecting Rerun Viewers:

rerun_py/rerun_sdk/rerun/sinks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def serve_grpc(
227227
You can limit the amount of data buffered by the gRPC server with the `server_memory_limit` argument.
228228
Once reached, the earliest logged data will be dropped. Static data is never dropped.
229229
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
231231
as well.
232232
233233
Parameters
@@ -249,7 +249,7 @@ def serve_grpc(
249249
250250
"""
251251
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")
253253
return
254254

255255
from rerun.recording_stream import get_application_id

rerun_py/src/python_bridge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ fn serve_grpc(
979979
};
980980

981981
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");
983983
return Ok(());
984984
}
985985

0 commit comments

Comments
 (0)