STAR-322: Fixing printer matching by network key

This commit is contained in:
Daniel Schiavini 2018-12-05 16:02:38 +01:00
parent cd67100097
commit 7e76913736
5 changed files with 97 additions and 64 deletions

View file

@ -11,7 +11,7 @@ class CloudCluster(BaseModel):
self.host_name = None # type: str
self.host_version = None # type: str
self.status = None # type: str
self.is_online = None # type: bool
self.is_online = False # type: bool
super().__init__(**kwargs)
# Validates the model, raising an exception if the model is invalid.