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 900bf47 commit 0271476Copy full SHA for 0271476
server/src/handlers/http/logstream.rs
@@ -967,17 +967,6 @@ pub async fn put_stream_hot_tier(
967
return Err(StreamError::HotTierNotEnabled(stream_name));
968
}
969
970
- if STREAM_INFO
971
- .get_time_partition(&stream_name)
972
- .unwrap()
973
- .is_some()
974
- {
975
- return Err(StreamError::Custom {
976
- msg: "Hot tier can not be enabled for stream with time partition".to_string(),
977
- status: StatusCode::BAD_REQUEST,
978
- });
979
- }
980
-
981
let body = body.into_inner();
982
let mut hottier: StreamHotTier = match serde_json::from_value(body) {
983
Ok(hottier) => hottier,
0 commit comments