From 7cc6fe575895dca6c50c4eadb0fd4c4986d05048 Mon Sep 17 00:00:00 2001 From: Adam Avilla Date: Thu, 23 Jun 2016 14:54:40 -0700 Subject: [PATCH] Fixing typo on service log output. Signed-off-by: Adam Avilla --- api/server/router/swarm/cluster_routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/server/router/swarm/cluster_routes.go b/api/server/router/swarm/cluster_routes.go index 50f823e07e..2f678d706c 100644 --- a/api/server/router/swarm/cluster_routes.go +++ b/api/server/router/swarm/cluster_routes.go @@ -109,7 +109,7 @@ func (sr *swarmRouter) createService(ctx context.Context, w http.ResponseWriter, id, err := sr.backend.CreateService(service) if err != nil { - logrus.Errorf("Error reating service %s: %v", id, err) + logrus.Errorf("Error creating service %s: %v", id, err) return err }