更新 chassis 3

This commit is contained in:
BryantHe 2023-05-30 05:06:20 +08:00
parent bd0047b6a8
commit 52733acf61
1 changed files with 1 additions and 7 deletions

View File

@ -1,9 +1,7 @@
import os
import logging import logging
from logstash_formatter import LogstashFormatterV1 from logstash_formatter import LogstashFormatterV1
from statsd import StatsClient from statsd import StatsClient
from nameko_sentry import SentryReporter from nameko_sentry import SentryReporter
from dotenv import load_dotenv
def init_statsd(prefix=None, host=None, port=8125): def init_statsd(prefix=None, host=None, port=8125):
@ -21,8 +19,4 @@ def init_logger():
def init_sentry(): def init_sentry():
return SentryReporter() return SentryReporter()
def init_dotenv(env_file='.nameko.env'):
load_dotenv(os.path.join(os.getcwd(), env_file))