We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa3e47d commit a084fe0Copy full SHA for a084fe0
cromshell
@@ -237,7 +237,7 @@ function checkPrerequisites
237
function assertCanCommunicateWithServer
238
{
239
# Make sure we can talk to the cromwell server:
240
- serverName=$( echo ${1}| sed 's#.*://##g' )
+ serverName=$( echo ${1}| sed 's#.*://##g'| sed 's#:[0-9]*##g' )
241
$PING_CMD $serverName &> /dev/null
242
r=$?
243
[[ $r -ne 0 ]] && error "Error: Cannot communicate with Cromwell server: $serverName" && exit 4
0 commit comments