We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in MarathonTask
def __init__( self, app_id=None, health_check_results=None, host=None, id=None, ports=None, service_ports=None, slave_id=None, staged_at=None, started_at=None, version=None, ip_addresses=[]): self.app_id = app_id self.health_check_results = health_check_results or [] self.health_check_results = [ hcr if isinstance( hcr, MarathonHealthCheckResult) else MarathonHealthCheckResult().from_json(hcr) for hcr in (health_check_results or []) if any(health_check_results) ] self.host = host self.id = id self.ports = ports or [] self.service_ports = service_ports or [] self.slave_id = slave_id self.staged_at = staged_at if (staged_at is None or isinstance(staged_at, datetime)) \ else datetime.strptime(staged_at, self.DATETIME_FORMAT) self.started_at = started_at if (started_at is None or isinstance(started_at, datetime)) \ else datetime.strptime(started_at, self.DATETIME_FORMAT) self.version = version
ip_addresses are passed but not set to self.ip_addresses
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
in MarathonTask
ip_addresses are passed but not set to self.ip_addresses
The text was updated successfully, but these errors were encountered: