revert: fix(agent/agentcontainers): refresh containers before status change (#18624)

Reverts coder/coder#18620

This fix exacerbated the problem, reverting until a better fix can be made.
This commit is contained in:
Mathias Fredriksson
2025-06-26 20:51:06 +00:00
committed by GitHub
parent 7b0b6498fb
commit d5e34195b0
+7 -9
View File
@@ -1002,15 +1002,6 @@ func (api *API) CreateDevcontainer(workspaceFolder, configPath string, opts ...D
logger.Info(ctx, "devcontainer created successfully")
// Ensure the container list is updated immediately after creation.
// This makes sure that dc.Container is populated before we acquire
// the lock avoiding a temporary inconsistency in the API state
// where status is running, but the container is nil.
if err := api.RefreshContainers(ctx); err != nil {
logger.Error(ctx, "failed to trigger immediate refresh after devcontainer creation", slog.Error(err))
return xerrors.Errorf("refresh containers: %w", err)
}
api.mu.Lock()
dc = api.knownDevcontainers[dc.WorkspaceFolder]
// Update the devcontainer status to Running or Stopped based on the
@@ -1029,6 +1020,13 @@ func (api *API) CreateDevcontainer(workspaceFolder, configPath string, opts ...D
api.knownDevcontainers[dc.WorkspaceFolder] = dc
api.mu.Unlock()
// Ensure an immediate refresh to accurately reflect the
// devcontainer state after recreation.
if err := api.RefreshContainers(ctx); err != nil {
logger.Error(ctx, "failed to trigger immediate refresh after devcontainer creation", slog.Error(err))
return xerrors.Errorf("refresh containers: %w", err)
}
return nil
}