From c01e495aa3d2d6706ed6b8005702cd3819beca75 Mon Sep 17 00:00:00 2001 From: James Rasell Date: Tue, 5 Nov 2019 22:53:38 +0100 Subject: [PATCH] Remove trailing dot on drain message to ensure better consistency. (#5956) --- api/nodes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/nodes.go b/api/nodes.go index bf72034f0..e4910a829 100644 --- a/api/nodes.go +++ b/api/nodes.go @@ -335,7 +335,7 @@ func (n *Nodes) monitorDrainAllocs(ctx context.Context, nodeID string, ignoreSys // Exit if all allocs are terminal if runningAllocs == 0 { - msg := Messagef(MonitorMsgLevelInfo, "All allocations on node %q have stopped.", nodeID) + msg := Messagef(MonitorMsgLevelInfo, "All allocations on node %q have stopped", nodeID) select { case allocCh <- msg: case <-ctx.Done():