From f29ee03a99a25c96b387b62459ac9d7fa13733ca Mon Sep 17 00:00:00 2001 From: Dominic Tubach Date: Thu, 23 May 2019 15:14:34 +0200 Subject: [PATCH] API: Change type of RemotrAddrs to array of strings in operation SwarmJoin Signed-off-by: Dominic Tubach (cherry picked from commit d5f6bdb027596b44244a6ce50555664b3a5ee4a7) Signed-off-by: Sebastiaan van Stijn Upstream-commit: d359834555628f67693cdf7eda246835b659a41c Component: engine --- components/engine/api/swagger.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/engine/api/swagger.yaml b/components/engine/api/swagger.yaml index ca9d29e021..6aeb711e59 100644 --- a/components/engine/api/swagger.yaml +++ b/components/engine/api/swagger.yaml @@ -8932,7 +8932,9 @@ paths: type: "string" RemoteAddrs: description: "Addresses of manager nodes already participating in the swarm." - type: "string" + type: "array" + items: + type: "string" JoinToken: description: "Secret token for joining this swarm." type: "string"