diff --git a/nativelink-config/src/cas_server.rs b/nativelink-config/src/cas_server.rs index 0f71c3d10..04a7b00ca 100644 --- a/nativelink-config/src/cas_server.rs +++ b/nativelink-config/src/cas_server.rs @@ -139,12 +139,13 @@ pub struct ByteStreamConfig { /// According to /// 16KiB - 64KiB is optimal. /// - /// TODO(marcussorealheis) in the config tests, include a defined max_bytes_per_stream. + /// /// Defaults: 64KiB #[serde(default, deserialize_with = "convert_data_size_with_shellexpand")] pub max_bytes_per_stream: usize, - /// Used when the config specifies a maximum number of bytes to decode on each grpc stream chunk. + /// Maximum number of bytes to decode on each grpc stream chunk. + /// Defaults: 4 MiB #[serde(default, deserialize_with = "convert_data_size_with_shellexpand")] pub max_decoding_message_size: usize,