From 15305a29b33c4db09e925a1486e02ca21bcd7772 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 11 Mar 2018 17:41:50 +0000 Subject: [PATCH] spelling: asynchronously --- command/agent/consul/client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/command/agent/consul/client.go b/command/agent/consul/client.go index 93547c26e..5ae306e6d 100644 --- a/command/agent/consul/client.go +++ b/command/agent/consul/client.go @@ -681,7 +681,7 @@ func (c *ServiceClient) checkRegs(ops *operations, allocID, serviceID string, se // If the service IP is set it used as the address in the service registration. // Checks will always use the IP from the Task struct (host's IP). // -// Actual communication with Consul is done asynchrously (see Run). +// Actual communication with Consul is done asynchronously (see Run). func (c *ServiceClient) RegisterTask(allocID string, task *structs.Task, restarter TaskRestarter, exec driver.ScriptExecutor, net *cstructs.DriverNetwork) error { // Fast path numServices := len(task.Services) @@ -842,7 +842,7 @@ func (c *ServiceClient) UpdateTask(allocID string, existing, newTask *structs.Ta // RemoveTask from Consul. Removes all service entries and checks. // -// Actual communication with Consul is done asynchrously (see Run). +// Actual communication with Consul is done asynchronously (see Run). func (c *ServiceClient) RemoveTask(allocID string, task *structs.Task) { ops := operations{}