Skip to content

Commit

Permalink
adding not daemon mode
Browse files Browse the repository at this point in the history
  • Loading branch information
paigerube14 committed Dec 4, 2024
1 parent 4353040 commit faaaeab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/krkn_lib/k8s/krkn_kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2415,7 +2415,7 @@ def archive_and_get_path_from_pod(
safe_logger,
),
)
worker.daemon = True
#worker.daemon = True
worker.start()
queue.join()
except Exception as e:
Expand Down
2 changes: 1 addition & 1 deletion src/krkn_lib/tests/test_krkn_kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ def test_get_nodes_infos(self):
except Exception:
self.fail("failed to deserialize NodeInfo")

def notest_download_folder_from_pod_as_archive(self):
def test_download_folder_from_pod_as_archive(self):
workdir_basepath = os.getenv("TEST_WORKDIR")
workdir = self.get_random_string(10)
test_workdir = os.path.join(workdir_basepath, workdir)
Expand Down

0 comments on commit faaaeab

Please sign in to comment.