chore: remove superfluous context.Canceled handling

This commit is contained in:
Spike Curtis 2024-05-03 10:37:38 +04:00
parent 7779c0a1dc
commit 2a73bb49f0
1 changed files with 0 additions and 3 deletions

View File

@ -903,9 +903,6 @@ func (a *agent) handleManifest(manifestOK chan<- struct{}) func(ctx context.Cont
Subsystems: subsys,
}})
if err != nil {
if xerrors.Is(err, context.Canceled) {
return nil
}
return xerrors.Errorf("update workspace agent startup: %w", err)
}