Skip to content

Commit

Permalink
Merge branch 'apply-tracing' of github.com:MapColonies/exporter-trigg…
Browse files Browse the repository at this point in the history
…er into apply-tracing
  • Loading branch information
razbroc committed Aug 1, 2024
2 parents 4c4c533 + 10afbb1 commit ac863fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/createPackage/models/createPackageManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class CreatePackageManager {
@withSpanAsyncV4
private async validateFreeSpace(estimatesGpkgSize: number): Promise<boolean> {
const diskFreeSpace = await this.getFreeStorage(); // calculate free space including other running jobs
this.logger.debug(`Estimated requested gpkg size: ${estimatesGpkgSize}, Estimated free space: ${diskFreeSpace}`);
this.logger.debug({msg: `Estimated requested gpkg size: ${estimatesGpkgSize}, Estimated free space: ${diskFreeSpace}`});
return diskFreeSpace - estimatesGpkgSize >= 0;
}

Expand Down

0 comments on commit ac863fb

Please sign in to comment.