Worker: do not consider on-disk VMs syncing error as fatal (#230)
This commit is contained in:
parent
d7b6f477e1
commit
08769e00b4
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue