From dd2ee8f7e9c948ec8afb4fe2eb2ec103f68ad9d5 Mon Sep 17 00:00:00 2001 From: Fabio Todaro Date: Thu, 29 Apr 2021 13:17:12 +0200 Subject: [PATCH] Allow transport-options env var --- celery_exporter/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/celery_exporter/__main__.py b/celery_exporter/__main__.py index 2737dcd..fd8971a 100644 --- a/celery_exporter/__main__.py +++ b/celery_exporter/__main__.py @@ -53,7 +53,7 @@ @click.option( "--transport-options", type=str, - allow_from_autoenv=False, + show_envvar=True, help="JSON object with additional options passed to the underlying transport.", ) @click.option(