Skip to content

Commit

Permalink
change finalize restore open mode to RDONLY
Browse files Browse the repository at this point in the history
Signed-off-by: Utkarsh Srivastava <srivastavautkarsh8097@gmail.com>
  • Loading branch information
tangledbytes committed Jul 22, 2024
1 parent 4bb376b commit 1d8ce65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdk/nsfs_glacier_backend/tapecloud.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ class TapeCloudGlacierBackend extends GlacierBackend {
const entry = new NewlineReaderEntry(fs_context, entry_path);
let fh = null;
try {
fh = await entry.open();
fh = await entry.open("r");

const stat = await fh.stat(fs_context, {
xattr_get_keys: [
Expand Down

0 comments on commit 1d8ce65

Please sign in to comment.