From 9ed2256aa689ddad067b3d8d4725e656673a47a3 Mon Sep 17 00:00:00 2001 From: BuzzTroll Date: Thu, 2 Sep 2010 16:59:31 -0500 Subject: [PATCH] group id will be a uuid --- lantorrent/pylantorrent/request.py | 2 +- .../src/org/globus/workspace/sqlauthz/AuthzDecisionLogic.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lantorrent/pylantorrent/request.py b/lantorrent/pylantorrent/request.py index 14326c50..4f279cea 100755 --- a/lantorrent/pylantorrent/request.py +++ b/lantorrent/pylantorrent/request.py @@ -120,7 +120,7 @@ def main(argv=sys.argv[1:]): src_filename = argv[0] dst_filename = argv[1] - group_id = int(argv[2]) + group_id = argv[2] group_count = int(argv[3]) # the user provides the rid. that way we know they have it to look # things up later if needed diff --git a/service/service/java/source/src/org/globus/workspace/sqlauthz/AuthzDecisionLogic.java b/service/service/java/source/src/org/globus/workspace/sqlauthz/AuthzDecisionLogic.java index abc93790..763c08b9 100644 --- a/service/service/java/source/src/org/globus/workspace/sqlauthz/AuthzDecisionLogic.java +++ b/service/service/java/source/src/org/globus/workspace/sqlauthz/AuthzDecisionLogic.java @@ -145,7 +145,7 @@ protected String translateCumulus( { rc = scheme + "://" + this.getRepoHost() + "/" + dataKey; } - logger.debug("converted " + objectName + " to " + rc); + logger.debug("converted " + objectName + " to " + rc + "scheme " + scheme); return rc; }