Skip to content
This repository has been archived by the owner on Mar 21, 2022. It is now read-only.

Commit

Permalink
SwarmJoin.AdvertiseAddr field is Nullable but RemoteAddrs and JoinTo…
Browse files Browse the repository at this point in the history
…ken are not
  • Loading branch information
fdonze committed Jun 16, 2017
1 parent 6f676a6 commit 572a5df
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,13 @@ public abstract class SwarmJoin {
@JsonProperty("ListenAddr")
public abstract String listenAddr();

@Nullable
@JsonProperty("AdvertiseAddr")
public abstract String advertiseAddr();

@Nullable
@JsonProperty("RemoteAddrs")
public abstract List<String> remoteAddrs();

@Nullable
@JsonProperty("JoinToken")
public abstract String joinToken();

Expand Down

0 comments on commit 572a5df

Please sign in to comment.