[Swift-commit] r6727 - SwiftTutorials/ATPESC_2013-08-06/scripts
yadunandb at ci.uchicago.edu
yadunandb at ci.uchicago.edu
Fri Aug 2 21:18:58 CDT 2013
Author: yadunandb
Date: 2013-08-02 21:18:58 -0500 (Fri, 02 Aug 2013)
New Revision: 6727
Modified:
SwiftTutorials/ATPESC_2013-08-06/scripts/start_coaster_workers.sh
Log:
Minor update to fix issue with -local flag for coaster-service
Modified: SwiftTutorials/ATPESC_2013-08-06/scripts/start_coaster_workers.sh
===================================================================
--- SwiftTutorials/ATPESC_2013-08-06/scripts/start_coaster_workers.sh 2013-08-03 02:06:17 UTC (rev 6726)
+++ SwiftTutorials/ATPESC_2013-08-06/scripts/start_coaster_workers.sh 2013-08-03 02:18:58 UTC (rev 6727)
@@ -10,8 +10,12 @@
LPORT_F=local_port
SPORT_F=service_port
-coaster-service -local -passive -nosec -localportfile $LPORT_F -portfile $SPORT_F > coaster-log 2>&1 &
+# -local is not working properly
+# TODO: Check if this is a reproducible bug.
+# removing -local fixes the problem
+coaster-service -passive -nosec -localportfile $LPORT_F -portfile $SPORT_F > coaster-log 2>&1 &
+
echo "Starting a reverse tunnel ...in 5 seconds"
sleep 5
LOCAL_PORT=$(cat $LPORT_F)
More information about the Swift-commit
mailing list