Skip to content

Commit

Permalink
Fix logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
Prashant Tiwari committed May 5, 2024
1 parent d10c05e commit 609ee7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests_deployment/test_conda_store_scaling.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def read_namespaced_config_map(self):
_client.close()

def patch_namespaced_config_map(self, config_map):
self.log(f"Conda store config patched: {config_map}")
self.log.info(f"Conda store config patched: {config_map}")
with kubernetes.client.ApiClient(self.configuration) as _client:
api_instance = kubernetes.client.CoreV1Api(_client)
try:
Expand Down Expand Up @@ -104,7 +104,7 @@ def setUp(self):

# Read conda-store-config
self.config_map = self.read_namespaced_config_map()
self.log(f"Conda store config read: {self.config_map}")
self.log.info(f"Conda store config read: {self.config_map}")

# Patch conda-store-config
self.config_map.data["conda_store_config.py"] = self.config_map.data[
Expand Down

0 comments on commit 609ee7f

Please sign in to comment.