1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-18 11:40:18 +01:00

Removing grarph_manager param (#141)

This commit is contained in:
Gal Leibovich
2018-11-23 21:42:54 +02:00
committed by Ajay Deshpande
parent a1c56edd98
commit 2b4c9c6774
2 changed files with 3 additions and 1 deletions

View File

@@ -579,7 +579,7 @@ class CoachLauncher(object):
return
if args.distributed_coach and args.distributed_coach_run_type == RunType.ORCHESTRATOR:
handle_distributed_coach_orchestrator(graph_manager, args)
handle_distributed_coach_orchestrator(args)
return
# Single-threaded runs

View File

@@ -113,6 +113,8 @@ class RedisPubSubBackend(MemoryBackend):
def undeploy(self):
if self.params.deployed:
return
from kubernetes import client
api_client = client.AppsV1Api()
delete_options = client.V1DeleteOptions()
try: