Skip to content

Commit

Permalink
name
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed Oct 11, 2023
1 parent c31501e commit 40e40b2
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions rest/clients/local_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ def run_sorting(
}

container = self.client.containers.run(
name=f'si-sorting-run-{run_kwargs.run_identifier}',
image='python:slim',
command=['python', '-c', 'import os; print(os.environ.get("SI_RUN_KWARGS"))'],
detach=True,
Expand All @@ -64,12 +65,7 @@ def run_sorting(
capabilities=[['gpu']]
)
]
)
# if response.status_code == 200:
# self.logger.info("Success!")
# else:
# self.logger.info(f"Error {response.status_code}: {response.content}")

)

def get_run_logs(self, run_identifier):
# TODO: Implement this
Expand Down

0 comments on commit 40e40b2

Please sign in to comment.