From 863904ac0628e16a7e6f301f452c8a7e654805f2 Mon Sep 17 00:00:00 2001 From: Molly Struve Date: Mon, 6 Jan 2020 08:12:24 -0500 Subject: [PATCH] Ignore dynotype run since that is used for console access (#5354) [deploy] --- datadog/prerun.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datadog/prerun.sh b/datadog/prerun.sh index 434cf4b93..ed3293b6a 100644 --- a/datadog/prerun.sh +++ b/datadog/prerun.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # Disable the Datadog Agent for scheduler workers -if [ "$DYNOTYPE" == "scheduler" ]; then +if [ "$DYNOTYPE" == "scheduler" ] || [ "$DYNOTYPE" == "run" ]; then DISABLE_DATADOG_AGENT="true" fi