fix: (#10437 followup) fix conditions with DEBUG config (#10438)

pull/10444/head
Bowen Liang 1 year ago committed by GitHub
parent 0ebe198ff1
commit 0e8ab0588f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2,7 +2,7 @@ import os
from configs import dify_config
if dify_config.DEBUG:
if not dify_config.DEBUG:
from gevent import monkey
monkey.patch_all()

@ -2,7 +2,7 @@ import os
from configs import dify_config
if dify_config.DEBUG:
if not dify_config.DEBUG:
from gevent import monkey
monkey.patch_all()

Loading…
Cancel
Save