diff options
author | mconway <michael.c.conway@gmail.com> | 2013-02-19 20:39:28 (GMT) |
---|---|---|
committer | mconway <michael.c.conway@gmail.com> | 2013-02-19 20:39:28 (GMT) |
commit | e7de93334ae241acab34763f3931d76eecf1c0b8 (patch) | |
tree | a7f3ccc7c29b0a0bca06da7043794d16123bce27 | |
parent | dc94d9042534e918ea18d3c30961ea84e1c34ef3 (diff) | |
download | QCG-Data-e7de93334ae241acab34763f3931d76eecf1c0b8.zip QCG-Data-e7de93334ae241acab34763f3931d76eecf1c0b8.tar.gz QCG-Data-e7de93334ae241acab34763f3931d76eecf1c0b8.tar.bz2 |
[#1219] error on intiial display centos6
-rwxr-xr-x | idrop-web/grails-app/controllers/org/irods/mydrop/controller/BrowseController.groovy | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/idrop-web/grails-app/controllers/org/irods/mydrop/controller/BrowseController.groovy b/idrop-web/grails-app/controllers/org/irods/mydrop/controller/BrowseController.groovy index 8ddd928..e8be884 100755 --- a/idrop-web/grails-app/controllers/org/irods/mydrop/controller/BrowseController.groovy +++ b/idrop-web/grails-app/controllers/org/irods/mydrop/controller/BrowseController.groovy @@ -223,7 +223,14 @@ class BrowseController { } else { - def isStrict = environmentalInfoAO.isStrictACLs() + def isStrict; + try { + isStrict = environmentalInfoAO.isStrictACLs() + } catch (JargonException je) { + log.warn("error getting rule info for strict acl's currently overheaded see idrop bug [#1219] error on intiial display centos6") + isStrict = false + } + log.info "is strict?:{isStrict}" if (isStrict) { parent = "/" + irodsAccount.zone + "/home/" + irodsAccount.userName |