Skip to content

Commit

Permalink
Worker: do not consider on-disk VMs syncing error as fatal (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
edigaryev authored Dec 11, 2024
1 parent d7b6f47 commit 08769e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/worker/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ func (worker *Worker) runNewSession(ctx context.Context) error {

// Sync on-disk VMs
if err := worker.syncOnDiskVMs(ctx); err != nil {
return err
worker.logger.Errorf("failed to sync on-disk VMs: %v", err)

return nil
}

for {
Expand Down

0 comments on commit 08769e0

Please sign in to comment.