Skip to content

Commit 6b717c6

Browse files
author
Lucas Wilson
committed
Removing Cray-specific -d flag to nc
1 parent ca2392c commit 6b717c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

launcher

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ elif [ $LAUNCHER_SCHED == "block" ]; then
6868
nextblock=`expr \( $LAUNCHER_TSK_ID + 1 \) \* $blocks + 1`
6969
else
7070
# Grab the JID to run from The Count
71-
export LAUNCHER_JID=`nc -d $LAUNCHER_DYN_SRV`
71+
export LAUNCHER_JID=`nc $LAUNCHER_DYN_SRV`
7272
fi
7373

7474
COMPLETE="false"
@@ -100,7 +100,7 @@ while [ $COMPLETE == "false" ]; do
100100
RETRY=0
101101
while [ $RETRY -lt 3 ]
102102
do
103-
export LAUNCHER_JID=`nc -d $LAUNCHER_DYN_SRV`
103+
export LAUNCHER_JID=`nc $LAUNCHER_DYN_SRV`
104104
if [ "x$LAUNCHER_JID" == "x" ]
105105
then
106106
if [ $RETRY -lt 3 ]

0 commit comments

Comments
 (0)