浏览代码

Merge pull request #23933 from yp-engineering/service-log-typo

Fixing typo on service log output.
Sebastiaan van Stijn 9 年之前
父节点
当前提交
b73b303b1c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      api/server/router/swarm/cluster_routes.go

+ 1 - 1
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
 	}