We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in startup pack message buffer, look for rcConnect l 1100 startupPack.option
Think about a sig that allows 'naming' of a connection
The text was updated successfully, but these errors were encountered:
import contextlib import time import os from irods.session import iRODSSession @contextlib.contextmanager def session(name_): try: env_file = os.environ['IRODS_ENVIRONMENT_FILE'] except KeyError: env_file = os.path.expanduser('~/.irods/irods_environment.json') session = iRODSSession(irods_env_file=env_file, name = name_) # <<< specify the app name here try: yield session finally: session.cleanup() print "cleanup" if __name__ == '__main__': with session("myApp") as s: s.collections.get('/tempZone/home/alissa') time.sleep(15.0)
Sorry, something went wrong.
Resolved by #423 and #430.
michael-conway
No branches or pull requests
in startup pack message buffer, look for rcConnect l 1100 startupPack.option
Think about a sig that allows 'naming' of a connection
The text was updated successfully, but these errors were encountered: