diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 1e3b7b41..aaffac3b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -6,14 +6,13 @@ on: pull_request: branches: ["main"] schedule: - - cron: '0 * * * *' + - cron: '*/30 * * * *' concurrency: group: e2e-tests cancel-in-progress: false env: - CARGO_TERM_COLOR: always RUSTFLAGS: "-Dwarnings" jobs: diff --git a/frontend/sync-client/src/services/sync-service.ts b/frontend/sync-client/src/services/sync-service.ts index bbaaa8a6..ee67630a 100644 --- a/frontend/sync-client/src/services/sync-service.ts +++ b/frontend/sync-client/src/services/sync-service.ts @@ -91,11 +91,7 @@ export class SyncService { ); } - this.logger.debug( - `Created document ${JSON.stringify(result)} with id ${ - result.documentId - }` - ); + this.logger.debug(`Created document ${JSON.stringify(result)}`); return result; }); @@ -274,9 +270,7 @@ export class SyncService { ); } - this.logger.debug( - `Get document ${result.relativePath} with id ${result.documentId}` - ); + this.logger.debug(`Got document ${JSON.stringify(result)}`); return result; });