From cce65048e419ca7141c20d826d925c17c18eedd2 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Wed, 30 Oct 2024 14:34:22 -0400 Subject: WARP: Only run matcher workflow once This fixes the matcher constantly being invoked. --- plugins/warp/src/plugin/workflow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/warp/src/plugin') diff --git a/plugins/warp/src/plugin/workflow.rs b/plugins/warp/src/plugin/workflow.rs index ee224df8..bea5326e 100644 --- a/plugins/warp/src/plugin/workflow.rs +++ b/plugins/warp/src/plugin/workflow.rs @@ -15,7 +15,7 @@ const MATCHER_ACTIVITY_CONFIG: &str = r#"{ "description": "This analysis step applies WARP info to matched functions...", "eligibility": { "auto": {}, - "runOnce": false + "runOnce": true } }"#; -- cgit v1.3.1