2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-12 00:06:36 +00:00

fix: avoid circular imports and optimization

This commit is contained in:
Gavin D'souza 2020-03-15 22:50:52 +05:30
parent 1f0b78f2fe
commit 9e7b8d1f2e
2 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,6 @@ import bench
from bench.app import get_current_frappe_version, use_rq
from bench.utils import get_bench_name, find_executable
from bench.config.common_site_config import get_config, update_config, get_gunicorn_workers
from bench.config.production_setup import service
# imports - third party imports
import click
@ -65,6 +64,8 @@ def get_supervisord_conf():
def update_supervisord_conf(user):
"""From bench v5.0, we're moving to supervisor running as user"""
from bench.config.production_setup import service
supervisord_conf = get_supervisord_conf() or "supervisord.conf"
section = "unix_http_server"

View File

@ -3,7 +3,7 @@ import subprocess
import sys
# imports - module imports
from bench.utils import log, get_cmd_output, exec_cmd, which
from bench.utils import get_cmd_output, exec_cmd, which
from bench.cli import change_uid_msg