Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
fix(snapshot): Set automated snapshot to 30 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefanie S committed Apr 19, 2020
1 parent 403c098 commit bd88f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/services/snapshot.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class SnapshotService implements OnDestroy {
console.warn('App is running in development mode, so no automated commit hook will be created.');
return;
}
this.automatedCommitSubscription = interval(1000 * 60 * 2).subscribe(() => {
this.automatedCommitSubscription = interval(1000 * 60 * 30).subscribe(() => {
const date = new Date().toISOString();
const msg = this.transloco.translate('git.message.automateCommit', { date });
this.createSnapshot(msg)
Expand Down

0 comments on commit bd88f40

Please sign in to comment.