Skip to content

Commit

Permalink
Merge pull request #16359 from natefoo/fix-mem-self-flush
Browse files Browse the repository at this point in the history
[23.0] Don't attempt to call a bool when using mem-self handler assignment.
  • Loading branch information
natefoo authored Jul 1, 2023
2 parents 25b52a9 + fc33d6b commit ba4517a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/web_stack/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def _assign_mem_self_handler(self, obj, method, configured, queue_callback=None,
HANDLER_ASSIGNMENT_METHODS.MEM_SELF,
configured,
)
if flush():
if flush:
_timed_flush_obj(obj)
queue_callback()
return self.app.config.server_name
Expand Down

0 comments on commit ba4517a

Please sign in to comment.