From 255278c372d4ff631380e5075f618e608fc01766 Mon Sep 17 00:00:00 2001
From: Fabian Schindler <fabian.schindler.strauss@gmail.com>
Date: Mon, 1 Aug 2022 17:29:22 +0200
Subject: [PATCH] Fixing registrar CLI

---
 registrar/cli.py | 8 ++++++--
 run-registrar.sh | 9 +++------
 2 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/registrar/cli.py b/registrar/cli.py
index 567308f..df857e8 100644
--- a/registrar/cli.py
+++ b/registrar/cli.py
@@ -61,7 +61,7 @@ def setup_logging(debug=False):
 
 
 @click.group()
-@click.option("--config-file", type=click.File("r"))
+@click.option("--config-file", type=click.Path(exists=True))
 @click.option("--validate", is_flag=True)
 @click.option("--host", type=str)
 @click.option("--port", type=int)
@@ -77,7 +77,11 @@ def cli(
     # ensure that ctx.obj exists and is a dict (in case `cli()` is called
     # by means other than the `if` block below)
 
-    config = RegistrarConfig.from_file(config_file, validate)
+    if not config_file:
+        raise ValueError("Missing --config-file parameter")
+
+    with open(config_file, encoding="utf-8") as config_file_:
+        config = RegistrarConfig.from_file(config_file_, validate)
     if host:
         config.redis_host = host
     if port:
diff --git a/run-registrar.sh b/run-registrar.sh
index b69c27e..069213d 100755
--- a/run-registrar.sh
+++ b/run-registrar.sh
@@ -11,13 +11,10 @@ if test "$DEBUG" = true; then
     debug="--debug"
 fi
 
-registrar daemon \
-    ${debug} \
+registrar  \
     --config-file /config.yaml \
     --host ${REDIS_HOST} \
     --port ${REDIS_PORT} \
-    --register-queue ${REDIS_REGISTER_QUEUE_KEY} \
-    --register-path-queue ${REDIS_REGISTER_PATH_QUEUE_KEY} \
-    --deregister-queue ${REDIS_DEREGISTER_QUEUE_KEY} \
-    --deregister-path-queue ${REDIS_DEREGISTER_PATH_QUEUE_KEY} \
+    ${debug} \
+    daemon \
     ${replace} >&2
-- 
GitLab