From e6ea289d32468da3f61ab8e385751d7676ee2e50 Mon Sep 17 00:00:00 2001 From: Seth Howard <79228961+sethhoward-dd@users.noreply.github.com> Date: Wed, 14 Apr 2021 16:19:57 -0600 Subject: [PATCH] Update pagerduty token environment variable As is the docs have "Token token=" in both the config and the environment variable, which will lead to requests looking like "Token token=Token token=" This removes the "Token token=" from the environment variable and requests will work. Signed-off-by: Seth Howard --- plugins/pagerduty/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/pagerduty/README.md b/plugins/pagerduty/README.md index 965a719020..9d8023b9fe 100644 --- a/plugins/pagerduty/README.md +++ b/plugins/pagerduty/README.md @@ -74,7 +74,7 @@ proxy: Then start the backend passing the token as an environment variable: ```bash -$ PAGERDUTY_TOKEN='Token token=' yarn start +$ PAGERDUTY_TOKEN='' yarn start ``` This will proxy the request by adding `Authorization` header with the provided token.