Merge pull request #30885 from vieux/restore_join_token

print 'worker' join token after swarm init
This commit is contained in:
Victor Vieux 2017-02-10 00:12:06 -08:00 committed by GitHub
commit b847fe563a

View file

@ -78,7 +78,7 @@ func runInit(dockerCli command.Cli, flags *pflag.FlagSet, opts initOptions) erro
fmt.Fprintf(dockerCli.Out(), "Swarm initialized: current node (%s) is now a manager.\n\n", nodeID)
if err := printJoinCommand(ctx, dockerCli, nodeID, false, true); err != nil {
if err := printJoinCommand(ctx, dockerCli, nodeID, true, false); err != nil {
return err
}