Skip to content

Commit

Permalink
Fix a bug in the cloud storage manager class.
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili committed Aug 1, 2018
1 parent 82d6a80 commit 2419c71
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/galaxy/managers/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""

import logging
from galaxy import model
from galaxy import util
from galaxy.exceptions import (
AuthenticationFailed,
Expand Down Expand Up @@ -40,6 +41,13 @@

class CloudManager(sharable.SharableModelManager):

# This manager does not manage a history; however,
# some of its functions require operations
# on history objects using methods from the base
# manager class (e.g., get_accessible), which requires
# setting this property.
model_class = model.History

def __init__(self, app, *args, **kwargs):
super(CloudManager, self).__init__(app, *args, **kwargs)

Expand Down

0 comments on commit 2419c71

Please sign in to comment.