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 6907012 commit a293330Copy full SHA for a293330
crates/top/re_sdk/src/recording_stream.rs
@@ -421,7 +421,7 @@ impl RecordingStreamBuilder {
421
pub fn serve_grpc(self) -> RecordingStreamResult<RecordingStream> {
422
self.serve_grpc_opts(
423
"0.0.0.0",
424
- 9876,
+ crate::DEFAULT_SERVER_PORT,
425
re_memory::MemoryLimit::from_fraction_of_total(0.75),
426
)
427
}
@@ -1893,7 +1893,7 @@ impl RecordingStream {
1893
&self,
1894
server_memory_limit: re_memory::MemoryLimit,
1895
) -> RecordingStreamResult<()> {
1896
- self.serve_grpc_opts("0.0.0.0", 9876, server_memory_limit)
+ self.serve_grpc_opts("0.0.0.0", crate::DEFAULT_SERVER_PORT, server_memory_limit)
1897
1898
1899
#[cfg(feature = "server")]
0 commit comments