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.
2 parents 6396d13 + e2b4a2c commit 7a33c33Copy full SHA for 7a33c33
postgresql_archive/src/archive.rs
@@ -320,7 +320,7 @@ fn acquire_lock(out_dir: &Path) -> Result<PathBuf> {
320
}
321
322
/// Extracts the compressed tar [bytes](Bytes) to the [out_dir](Path).
323
-#[instrument]
+#[instrument(skip(bytes))]
324
pub async fn extract(bytes: &Bytes, out_dir: &Path) -> Result<()> {
325
let input = BufReader::new(Cursor::new(bytes));
326
let decoder = GzDecoder::new(input);
0 commit comments