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 b6accac commit 17afca0Copy full SHA for 17afca0
src/packages/server/compute/cloud-filesystem/create.ts
@@ -216,6 +216,8 @@ export async function createCloudFilesystem(opts: Options): Promise<number> {
216
push("last_edited", now);
217
const port = await getPort(opts.project_id);
218
push("port", port);
219
+ // bytes_used MUST always be set, and of course initially it is 0.
220
+ push("bytes_used", 0);
221
222
// there could be a race condition if user tries to make two cloud filesystems at
223
// same time for same project -- one would fail and they get an error due to
0 commit comments