Skip to content

Commit

Permalink
Remove periods
Browse files Browse the repository at this point in the history
  • Loading branch information
sjberman committed Dec 20, 2024
1 parent 1cb42a1 commit ea3607a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/mode/static/nginx/agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type NginxUpdaterImpl struct {

// UpdateConfig sends the nginx configuration to the agent.
func (n *NginxUpdaterImpl) UpdateConfig(files int) {
n.Logger.Info("Sending nginx configuration to agent.", "numFiles", files)
n.Logger.Info("Sending nginx configuration to agent", "numFiles", files)

Check warning on line 25 in internal/mode/static/nginx/agent/agent.go

View check run for this annotation

Codecov / codecov/patch

internal/mode/static/nginx/agent/agent.go#L24-L25

Added lines #L24 - L25 were not covered by tests
}

// UpdateUpstreamServers sends an APIRequest to the agent to update upstream servers using the NGINX Plus API.
Expand All @@ -32,5 +32,5 @@ func (n *NginxUpdaterImpl) UpdateUpstreamServers() {
return
}

Check warning on line 33 in internal/mode/static/nginx/agent/agent.go

View check run for this annotation

Codecov / codecov/patch

internal/mode/static/nginx/agent/agent.go#L30-L33

Added lines #L30 - L33 were not covered by tests

n.Logger.Info("Updating upstream servers using NGINX Plus API.")
n.Logger.Info("Updating upstream servers using NGINX Plus API")

Check warning on line 35 in internal/mode/static/nginx/agent/agent.go

View check run for this annotation

Codecov / codecov/patch

internal/mode/static/nginx/agent/agent.go#L35

Added line #L35 was not covered by tests
}

0 comments on commit ea3607a

Please sign in to comment.