Skip to content

Commit

Permalink
Restored remoteHost support
Browse files Browse the repository at this point in the history
(cherry picked from commit 43e4ef1)
Signed-off-by: Diego Molina <[email protected]>
  • Loading branch information
kinjelom authored and diemol committed Nov 9, 2018
1 parent b162748 commit 07a116a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ public GridNodeConfiguration(GridNodeCliOptions cliConfig) {
ofNullable(cliConfig.getProxy()).ifPresent(v -> proxy = v);
ofNullable(cliConfig.getEnablePlatformVerification()).ifPresent(v -> enablePlatformVerification = v);
ofNullable(cliConfig.getId()).ifPresent(v -> id = v);
ofNullable(cliConfig.getRemoteHost()).ifPresent(v -> remoteHost = v);
if (cliConfig.getHub() != null) {
hub = cliConfig.getHub();
} else if (cliConfig.getHubHost() != null || cliConfig.getHubPort() != null) {
Expand Down

0 comments on commit 07a116a

Please sign in to comment.