Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GCSFS new file object doesn't exist #354

Closed
fraserdarwent opened this issue May 11, 2022 · 1 comment
Closed

GCSFS new file object doesn't exist #354

fraserdarwent opened this issue May 11, 2022 · 1 comment

Comments

@fraserdarwent
Copy link

fraserdarwent commented May 11, 2022

When attempting to create a new file on GCSFS with flags os.O_CREATE|os.O_TRUNC, the resource delete operation throws an error "object doesn't exist"

	if flag&os.O_TRUNC != 0 {
		err = file.resource.obj.Delete(fs.ctx) // Throws an error
		if err != nil {
			return nil, err
		}
		return fs.Create(name)
	}
@fraserdarwent
Copy link
Author

I think a solution is to modify the code to something like this so it only attempts to delete the file on truncate if it exists, but I'm not certain

	if flag&os.O_TRUNC != 0 {
		if found {
			err = file.resource.obj.Delete(fs.ctx)
			if err != nil {
				return nil, err
			}
		}
		return fs.Create(name)
	}

@fraserdarwent fraserdarwent closed this as not planned Won't fix, can't repro, duplicate, stale Nov 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant