fixes on use hive flightsheet flag
This commit is contained in:
parent
35ce001a71
commit
504aa74f5e
|
@ -341,7 +341,7 @@ class CloreClient:
|
||||||
self.containers=container_conf[1]
|
self.containers=container_conf[1]
|
||||||
tmp_images = []
|
tmp_images = []
|
||||||
for container in self.containers:
|
for container in self.containers:
|
||||||
if "image" in container:
|
if "image" in container and "image" in container and container["image"]!="cloreai/hive-use-flightsheet":
|
||||||
log_pull = False
|
log_pull = False
|
||||||
if "name" in container:
|
if "name" in container:
|
||||||
if "-order-" in container["name"]:
|
if "-order-" in container["name"]:
|
||||||
|
@ -411,6 +411,7 @@ class CloreClient:
|
||||||
self.validated_containers_set=True
|
self.validated_containers_set=True
|
||||||
self.validated_containers = result.valid_containers
|
self.validated_containers = result.valid_containers
|
||||||
self.use_hive_flightsheet = result.use_hive_flightsheet
|
self.use_hive_flightsheet = result.use_hive_flightsheet
|
||||||
|
log.debug(f"Use Hive flightsheet: {result.use_hive_flightsheet}")
|
||||||
elif type(result)==types.DeployContainersRes:
|
elif type(result)==types.DeployContainersRes:
|
||||||
try:
|
try:
|
||||||
self.all_running_container_names = result.all_running_container_names
|
self.all_running_container_names = result.all_running_container_names
|
||||||
|
|
|
@ -155,7 +155,7 @@ class WebSocketClient:
|
||||||
if len(parsed_json["new_containers"]) > 0: # There should be at least one container
|
if len(parsed_json["new_containers"]) > 0: # There should be at least one container
|
||||||
self.containers_set = True
|
self.containers_set = True
|
||||||
self.containers=parsed_json["new_containers"]
|
self.containers=parsed_json["new_containers"]
|
||||||
#log.success(container_str)
|
log.success(container_str)
|
||||||
elif "allow_oc" in parsed_json: # Enable OC
|
elif "allow_oc" in parsed_json: # Enable OC
|
||||||
self.oc_enabled=True
|
self.oc_enabled=True
|
||||||
await self.send(json.dumps({"allow_oc":True}))
|
await self.send(json.dumps({"allow_oc":True}))
|
||||||
|
|
Loading…
Reference in New Issue