commit/galaxy-central: natefoo: In the dynamic job function mapper, get the user directly from the job instead of from the history.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/83a3792548db/ Changeset: 83a3792548db User: natefoo Date: 2014-07-09 19:10:43 Summary: In the dynamic job function mapper, get the user directly from the job instead of from the history. Affected #: 1 file diff -r cbe3fe407093b0161469e1de662623d1d13bf532 -r 83a3792548db71c8bf69e278bf745bc5df123db7 lib/galaxy/jobs/mapper.py --- a/lib/galaxy/jobs/mapper.py +++ b/lib/galaxy/jobs/mapper.py @@ -83,7 +83,7 @@ if "job" in function_arg_names or "user" in function_arg_names or "user_email" in function_arg_names or "resource_params" in function_arg_names: job = self.job_wrapper.get_job() history = job.history - user = history and history.user + user = job.user user_email = user and str(user.email) if "job" in function_arg_names: Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org