[Swift-commit] r4923 - SwiftApps/GOSwift/pykoa/tools
jonmon at ci.uchicago.edu
jonmon at ci.uchicago.edu
Mon Aug 1 15:21:21 CDT 2011
Author: jonmon
Date: 2011-08-01 15:21:21 -0500 (Mon, 01 Aug 2011)
New Revision: 4923
Modified:
SwiftApps/GOSwift/pykoa/tools/koa_goswift.py
Log:
o changed the GLOBUS_HOSTNAME variable to a new variable since I have switched VMs.
o changed subprocess.Popen parameter from stderr=subprocess.STDOUT to stderr=subprocess.PIPE
Modified: SwiftApps/GOSwift/pykoa/tools/koa_goswift.py
===================================================================
--- SwiftApps/GOSwift/pykoa/tools/koa_goswift.py 2011-08-01 19:29:06 UTC (rev 4922)
+++ SwiftApps/GOSwift/pykoa/tools/koa_goswift.py 2011-08-01 20:21:21 UTC (rev 4923)
@@ -266,7 +266,7 @@
os.environ["X509_USER_PROXY"] = proxyfile
# Need to figure out how to get the values. Not sure how.
- os.environ["GLOBUS_HOSTNAME"] = "50.16.138.64"
+ os.environ["GLOBUS_HOSTNAME"] = "174.129.136.78"
os.environ["GLOBUS_TCP_PORT_RANGE"] = "50000,51000"
os.environ["GLOBUS_SOURCE_PORT_RANGE"] = "50000,51000"
@@ -296,7 +296,7 @@
preexec_fn=enable_sigint,
cwd=os.getcwd(),
stdout=subprocess.PIPE,
- stderr=subprocess.STDOUT)
+ stderr=subprocess.PIPE)
c = SwiftObserver()
status = c.run(p)
More information about the Swift-commit
mailing list