Commit 27ab41f6 authored by Matthias Bernt's avatar Matthias Bernt
Browse files

fix real_system_username

follow up to https://github.com/galaxyproject/galaxy/pull/18945
this was suggested in a comment, but forgotten
parent 1d31d5b3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2521,7 +2521,7 @@ class MinimalJobWrapper(HasResourceParameters):
        if self.__user_system_pwent is None:
            job = self.get_job()
            self.__user_system_pwent = job.user.system_user_pwent(
                self.get_destination_configuration("real_system_username", None)
                self.get_destination_configuration("real_system_username", self.app.config.real_system_username)
            )
        return self.__user_system_pwent