From 2851482099e7021a7ebf0408f4976470c3f9b335 Mon Sep 17 00:00:00 2001 From: Matt Ehrnschwender Date: Tue, 13 Feb 2024 21:56:45 -0500 Subject: [PATCH] Change fail mode --- .github/workflows/test.yml | 1 + Payload_Type/thanatos/agent/thanatos_agent/src/lib.rs | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 191fa41..e1ca456 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,6 +13,7 @@ jobs: name: Agent Tests strategy: + fail-fast: false matrix: os: [ubuntu-latest, windows-latest] diff --git a/Payload_Type/thanatos/agent/thanatos_agent/src/lib.rs b/Payload_Type/thanatos/agent/thanatos_agent/src/lib.rs index d9d43dc..bf55184 100644 --- a/Payload_Type/thanatos/agent/thanatos_agent/src/lib.rs +++ b/Payload_Type/thanatos/agent/thanatos_agent/src/lib.rs @@ -50,9 +50,6 @@ pub fn entrypoint() { #[cfg(feature = "init-thread")] std::thread::spawn(|| run_agent(agent_config)); - #[cfg(all(target_os = "linux", feature = "init-fork"))] - native::linux::fork(|| run_agent(agent_config)); - #[cfg(not(any(feature = "init-thread", feature = "init-fork")))] run_agent(agent_config); }