You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2018. It is now read-only.
How would the method prototype would look like then, would domain_name become mandatory?
Plus, I'm very aware of class methods usage, but queryset depends on their instance connection attribute to go fetch data from amazon, how would it be handled without self instance reference?
current method:
deffilter(self, domain_name=None, registration_status=REGISTERED, name=None):
"""Filters workflows based of their status, and/or name"""defget_workflows():
response= {'nextPageToken': None}
while'nextPageToken'inresponse:
response=self.connection.list_workflow_types(
domain_name,
registration_status,
name=name,
next_page_token=response['nextPageToken']
)
forworkflowinresponse['typeInfos']:
yieldworkflow# As WorkflowTypeQuery has to be built against a specific domain# name, domain filter is disposable, but not mandatory.domain_name=domain_nameorself.domain.namereturn [self.to_WorkflowType(wf) forwfinget_workflows()]
If we filter by domain we should not have to instanciate
WorkflowTypeQuerySet
with aDomain
in argument.The text was updated successfully, but these errors were encountered: