You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 4, 2018. It is now read-only.
I required the following changes to get ingest.py to run:
Removed hard-coded password and replaced with password drawn from environment file:
from irods.password_obfuscation import decode
...
with open(env['irods_authentication_file'], 'r') as authfile:
pw = decode(authfile.read().rstrip('\n'))
The value of IRODS_ENVIRONMENT_FILE is ignored and a hard coded environment file path is used (meaning that I ran this on our production system by accident).
I also uncommented the raise statement which was trapping all exceptions in order to get a stracktrace.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Using python-irodsclient built from irods/python-irodsclient@f48f0fe
I required the following changes to get
ingest.py
to run:Removed hard-coded password and replaced with password drawn from environment file:
The value of
IRODS_ENVIRONMENT_FILE
is ignored and a hard coded environment file path is used (meaning that I ran this on our production system by accident).I also uncommented the
raise
statement which was trapping all exceptions in order to get a stracktrace.The text was updated successfully, but these errors were encountered: