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 4c353fd commit a6891a7Copy full SHA for a6891a7
src/hottier.rs
@@ -171,7 +171,7 @@ impl HotTierManager {
171
HotTierValidationError::NotFound(stream.to_owned()),
172
));
173
}
174
- let path = hot_tier_file_path(&self.hot_tier_path, stream)?;
+ let path = hot_tier_file_path(self.hot_tier_path, stream)?;
175
let bytes = self
176
.filesystem
177
.get(&path)
@@ -204,7 +204,7 @@ impl HotTierManager {
204
stream: &str,
205
hot_tier: &mut StreamHotTier,
206
) -> Result<(), HotTierError> {
207
208
let bytes = serde_json::to_vec(&hot_tier)?.into();
209
self.filesystem.put(&path, bytes).await?;
210
Ok(())
0 commit comments