10000 Update Go toolchain version top 1.24.6 by aphralG · Pull Request #1213 · nginx/agent · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/nginx/agent/v3

go 1.24.0

toolchain go1.24.4
toolchain go1.24.6

require (
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.4-20250130201111-63bb56e20495.1
Expand Down
4 changes: 2 additions & 2 deletions internal/resource/nginx_instance_operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ func (i *NginxInstanceOperator) checkWorkers(ctx context.Context, instanceID str
return
}

slog.DebugContext(ctx, "Found parent process ID", "process_id", newPid)
slog.DebugContext(ctx, "Found parent process ID, checking NGINX worker processes have reloaded",
"process_id", newPid)

err := backoff.WaitUntil(ctx, backoffSettings, func() error {
slog.Info(" ============ Checking NGINX worker processes have reloaded")
currentWorkers := i.nginxProcessOperator.NginxWorkerProcesses(ctx, newPid)
if len(currentWorkers) == 0 {
return errors.New("waiting for NGINX worker processes")
Expand Down
0