From d5f6bdb027596b44244a6ce50555664b3a5ee4a7 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 --- api/swagger.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/swagger.yaml b/api/swagger.yaml index 7f47dceba3..0e54c276aa 100644 --- a/api/swagger.yaml +++ b/api/swagger.yaml @@ -9119,7 +9119,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"