From c88ec7fb0c49b46518e610dddc38bd39c15c9756 Mon Sep 17 00:00:00 2001 From: lenkan Date: Mon, 9 Dec 2024 16:16:04 +0100 Subject: [PATCH] rename env variable to indicate experimental status --- src/keria/app/cli/commands/start.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keria/app/cli/commands/start.py b/src/keria/app/cli/commands/start.py index 8f4dcd5..d27cfc0 100644 --- a/src/keria/app/cli/commands/start.py +++ b/src/keria/app/cli/commands/start.py @@ -110,7 +110,7 @@ def runAgent(name="ahab", base="", bran="", admin=3901, http=3902, boot=3903, co keypath=keypath, certpath=certpath, cafilepath=cafilepath, - bootPassword=os.getenv("KERIA_BOOT_PASSWORD"), - bootUsername=os.getenv("KERIA_BOOT_USERNAME"))) + bootPassword=os.getenv("KERIA_EXPERIMENTAL_BOOT_PASSWORD"), + bootUsername=os.getenv("KERIA_EXPERIMENTAL_BOOT_USERNAME"))) directing.runController(doers=doers, expire=expire)