From 08a374825f71c168a62d903775829e737b85228e Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 22 Nov 2023 08:59:46 +0800 Subject: [PATCH] :art: Set the env `SIYUAN_ACCESS_AUTH_CODE_BYPASS=true` to skip checking access auth code when deploying Docker Fix https://github.com/siyuan-note/siyuan/issues/9709 --- kernel/util/working.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/util/working.go b/kernel/util/working.go index c9cc1a1b5..6bcceb567 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -89,12 +89,12 @@ func Boot() { bypass, parseErr := strconv.ParseBool(byPassEnv) if nil == parseErr && bypass { interruptBoot = false - logging.LogInfof("bypass access auth code check since the env [SIYUAN_ACCESS_AUTH_CODE_BYPASS] is set to [true]") + fmt.Println("bypass access auth code check since the env [SIYUAN_ACCESS_AUTH_CODE_BYPASS] is set to [true]") } if interruptBoot { // The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 - fmt.Printf("The access authorization code command line parameter (--accessAuthCode) must be set when deploying via Docker.") + fmt.Printf("the access authorization code command line parameter (--accessAuthCode) must be set when deploying via Docker") os.Exit(1) } }