Skip to content

Commit

Permalink
Improve logging when deregistering a nonexistent service (hashicorp#2492
Browse files Browse the repository at this point in the history
)

Log a warning instead of a success message when attempting to deregister a nonexistent service. In Consul 0.8 this can be changed to giving an error outright, but for now we can keep the idempotent delete behavior.
  • Loading branch information
kyhavlov authored and tolitius committed Nov 11, 2016
1 parent 1a40a7c commit cd83e96
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
9 changes: 8 additions & 1 deletion command/agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,14 @@ func (a *Agent) RemoveService(serviceID string, persist bool) error {
}

// Remove service immediately
a.state.RemoveService(serviceID)
err := a.state.RemoveService(serviceID)

// TODO: Return the error instead of just logging here in Consul 0.8
// For now, keep the current idempotent behavior on deleting a nonexistent service
if err != nil {
a.logger.Printf("[WARN] agent: Failed to deregister service %q: %s", serviceID, err)
return nil
}

// Remove the service from the data dir
if persist {
Expand Down
5 changes: 5 additions & 0 deletions command/agent/agent_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,11 @@ func TestAgent_PurgeService(t *testing.T) {
t.Fatalf("err: %s", err)
}

// Re-add the service
if err := agent.AddService(svc, nil, true, ""); err != nil {
t.Fatalf("err: %v", err)
}

// Removed
if err := agent.RemoveService(svc.ID, true); err != nil {
t.Fatalf("err: %s", err)
Expand Down
16 changes: 11 additions & 5 deletions command/agent/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,14 +170,20 @@ func (l *localState) AddService(service *structs.NodeService, token string) {

// RemoveService is used to remove a service entry from the local state.
// The agent will make a best effort to ensure it is deregistered
func (l *localState) RemoveService(serviceID string) {
func (l *localState) RemoveService(serviceID string) error {
l.Lock()
defer l.Unlock()

delete(l.services, serviceID)
delete(l.serviceTokens, serviceID)
l.serviceStatus[serviceID] = syncStatus{inSync: false}
l.changeMade()
if _, ok := l.services[serviceID]; ok {
delete(l.services, serviceID)
delete(l.serviceTokens, serviceID)
l.serviceStatus[serviceID] = syncStatus{inSync: false}
l.changeMade()
} else {
return fmt.Errorf("Service does not exist")
}

return nil
}

// Services returns the locally registered services that the
Expand Down
4 changes: 4 additions & 0 deletions command/agent/local_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1074,6 +1074,10 @@ func TestAgent_serviceTokens(t *testing.T) {
l := new(localState)
l.Init(config, nil)

l.AddService(&structs.NodeService{
ID: "redis",
}, "")

// Returns default when no token is set
if token := l.ServiceToken("redis"); token != "default" {
t.Fatalf("bad: %s", token)
Expand Down

0 comments on commit cd83e96

Please sign in to comment.