We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e772208 commit e432293Copy full SHA for e432293
operator/src/main/resources/scripts/startNodeManager.sh
@@ -1,4 +1,5 @@
1
-#!/bin/sh
+#!/bin/bash
2
+
3
# Copyright 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
4
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
5
@@ -290,7 +291,7 @@ ${stm_script} > ${nodemgr_out_file} 2>&1 &
290
291
292
wait_count=0
293
start_secs=$SECONDS
-max_wait_secs=15
294
+max_wait_secs=${NODE_MANAGER_MAX_WAIT:-60}
295
while [ 1 -eq 1 ]; do
296
sleep 1
297
if [ -e ${nodemgr_log_file} ] && [ `grep -c "Plain socket listener started" ${nodemgr_log_file}` -gt 0 ]; then
0 commit comments