From adf0cc5a6fb1ce32bdd4890c0df5029aaeba627c Mon Sep 17 00:00:00 2001 From: HYbutterfly <707298413@qq.com> Date: Fri, 27 Oct 2023 17:16:48 +0800 Subject: [PATCH] check enablessl == "true" (#1815) --- service/bootstrap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/bootstrap.lua b/service/bootstrap.lua index 69802b49..02d19dd0 100644 --- a/service/bootstrap.lua +++ b/service/bootstrap.lua @@ -42,7 +42,7 @@ skynet.start(function() skynet.newservice "service_mgr" local enablessl = skynet.getenv "enablessl" - if enablessl then + if enablessl == "true" then service.new("ltls_holder", function () local c = require "ltls.init.c" c.constructor()