8000 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
Changes from 1 commit
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
Prev Previous commit
fix log
  • Loading branch information
aphralG committed Aug 14, 2025
commit e1a9e3120cfc2702dd215c20efa2975667b9de32
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