🔥 移除 --resident--servePath 内核参数 Fix https://github.com/siyuan-note/siyuan/issues/6389

This commit is contained in:
Liang Ding 2022-10-28 19:19:09 +08:00
parent 4559b03488
commit 3bd6c3fb20
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
6 changed files with 1 additions and 38 deletions

View file

@ -47,7 +47,6 @@ func logBootInfo() {
logging.LogInfof("kernel is booting:\n"+
" * ver [%s]\n"+
" * arch [%s]\n"+
" * resident [%v]\n"+
" * pid [%d]\n"+
" * runtime mode [%s]\n"+
" * working directory [%s]\n"+
@ -55,7 +54,7 @@ func logBootInfo() {
" * container [%s]\n"+
" * database [ver=%s]\n"+
" * workspace directory [%s, data %s]",
Ver, runtime.GOARCH, Resident, os.Getpid(), Mode, WorkingDir, ReadOnly, Container, DatabaseVer, WorkspaceDir, dataDirSize)
Ver, runtime.GOARCH, os.Getpid(), Mode, WorkingDir, ReadOnly, Container, DatabaseVer, WorkspaceDir, dataDirSize)
}
func IsMutexLocked(m *sync.Mutex) bool {