Skip to content

Commit

Permalink
Added 'custom' property to node config. (#1339)
Browse files Browse the repository at this point in the history
* Added 'custom' property to node config.

Original node config json can contain 'custom' property, but current 'generate_config' files do not support it.

* Remove whitespaces
  • Loading branch information
UlianaHolub authored Jul 29, 2021
1 parent 1933a07 commit 4ec6c5b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion NodeChrome/generate_config
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ cat <<_EOF
"nodePolling": $NODE_POLLING,
"unregisterIfStillDownAfter": $NODE_UNREGISTER_IF_STILL_DOWN_AFTER,
"downPollingLimit": $NODE_DOWN_POLLING_LIMIT,
"debug": $GRID_DEBUG
"debug": $GRID_DEBUG,
"custom": $NODE_CUSTOM
}
_EOF
3 changes: 2 additions & 1 deletion NodeFirefox/generate_config
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ cat <<_EOF
"nodePolling": $NODE_POLLING,
"unregisterIfStillDownAfter": $NODE_UNREGISTER_IF_STILL_DOWN_AFTER,
"downPollingLimit": $NODE_DOWN_POLLING_LIMIT,
"debug": $GRID_DEBUG
"debug": $GRID_DEBUG,
"custom": $NODE_CUSTOM
}
_EOF
3 changes: 2 additions & 1 deletion NodeOpera/generate_config
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ cat <<_EOF
"nodePolling": $NODE_POLLING,
"unregisterIfStillDownAfter": $NODE_UNREGISTER_IF_STILL_DOWN_AFTER,
"downPollingLimit": $NODE_DOWN_POLLING_LIMIT,
"debug": $GRID_DEBUG
"debug": $GRID_DEBUG,
"custom": $NODE_CUSTOM
}
_EOF

0 comments on commit 4ec6c5b

Please sign in to comment.