[Swift-commit] cog r3783

swift at ci.uchicago.edu swift at ci.uchicago.edu
Sun Sep 15 22:15:03 CDT 2013


------------------------------------------------------------------------
r3783 | hategan | 2013-09-15 22:10:14 -0500 (Sun, 15 Sep 2013) | 1 line

Replaced misleading info message when shared proxies are disabled
------------------------------------------------------------------------
Index: modules/provider-coaster/src/org/globus/cog/abstraction/impl/execution/coaster/AutoCA.java
===================================================================
--- modules/provider-coaster/src/org/globus/cog/abstraction/impl/execution/coaster/AutoCA.java	(revision 3782)
+++ modules/provider-coaster/src/org/globus/cog/abstraction/impl/execution/coaster/AutoCA.java	(working copy)
@@ -164,7 +164,12 @@
                 int index = discoverNextIndex();
                 this.info = new Info(makeFile(PROXY_NAME_PREFIX, index), makeFile(CA_CRT_NAME_PREFIX, index));
                 if (logger.isInfoEnabled()) {
-                    logger.info("No certificates with enough lifetime. Creating new certificate: " + info.proxyPath);
+                    if (!SHARED_PROXIES) {
+                        logger.info("Shared proxies are disabled. Creating new certificate: " + info.proxyPath);
+                    }
+                    else {
+                        logger.info("No certificates with enough lifetime. Creating new certificate: " + info.proxyPath);
+                    }
                 }
                 this.cert = createAll(index);
             }



More information about the Swift-commit mailing list