Skip to content

Commit e194c65

Browse files
committed
chore: Disable startup move-encode, remove debug print in get_object
1 parent b16d10f commit e194c65

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

components/data_proxy/src/caching/cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ impl Cache {
160160
debug!("initialized notification handler");
161161
};
162162

163-
cache.handle_temp_locations(temp_locations).await?;
163+
//cache.handle_temp_locations(temp_locations).await?;
164164
Ok(cache)
165165
}
166166

components/data_proxy/src/data_backends/s3_backend.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ impl StorageBackend for S3Backend {
173173
let id = location.id.to_string();
174174

175175
while let Some(bytes) = object_request.body.next().await {
176-
trace!(len = ?bytes.as_ref().map(|e| e.len()), ?id, "Sending bytes");
176+
//trace!(len = ?bytes.as_ref().map(|e| e.len()), ?id, "Sending bytes");
177177
sender
178178
.send(Ok(bytes.map_err(|e| {
179179
error!(error = ?e, msg = e.to_string());

0 commit comments

Comments
 (0)