Skip to content

Commit

Permalink
Fix missing arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ceh committed Nov 1, 2014
1 parent 8a013f2 commit c9333b1
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 78 deletions.
2 changes: 1 addition & 1 deletion consul/kvs_endpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ func TestKVS_Apply_LockDelay(t *testing.T) {
// Create and invalidate a session with a lock
state := s1.fsm.State()
if err := state.EnsureNode(1, structs.Node{"foo", "127.0.0.1"}); err != nil {
t.Fatalf("err: %v")
t.Fatalf("err: %v", err)
}
session := &structs.Session{
ID: generateUUID(),
Expand Down
2 changes: 1 addition & 1 deletion consul/serf.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func (s *Server) nodeJoin(me serf.MemberEvent, wan bool) {
ok, parts := isConsulServer(m)
if !ok {
if wan {
s.logger.Printf("[WARN] consul: non-server in WAN pool: %s %s", m.Name)
s.logger.Printf("[WARN] consul: non-server in WAN pool: %s", m.Name)
}
continue
}
Expand Down
Loading

0 comments on commit c9333b1

Please sign in to comment.