diff --git a/taskflow/storage.py b/taskflow/storage.py index bb9f0a21..5386907e 100644 --- a/taskflow/storage.py +++ b/taskflow/storage.py @@ -263,16 +263,19 @@ class Storage(object): @property def flow_name(self): + """The flow detail name this storage unit is associated with.""" # This never changes (so no read locking needed). return self._flowdetail.name @property def flow_uuid(self): + """The flow detail uuid this storage unit is associated with.""" # This never changes (so no read locking needed). return self._flowdetail.uuid @property def backend(self): + """The backend this storage unit is associated with.""" # This never changes (so no read locking needed). return self._backend