Move config_manage out of webapps/ into config/

First pass.
This commit is contained in:
Sergey Golitsynskiy
2019-08-22 15:46:08 -04:00
parent 6a1279e702
commit fb98cf3585
5 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ RELEASE_NEXT:=16.04
RELEASE_NEXT_BRANCH:=dev
RELEASE_UPSTREAM:=upstream
MY_UPSTREAM:=origin
CONFIG_MANAGE=$(IN_VENV) python lib/galaxy/webapps/config_manage.py
CONFIG_MANAGE=$(IN_VENV) python lib/galaxy/config/config_manage.py
PROJECT_URL?=https://github.com/galaxyproject/galaxy
DOCS_DIR=doc
DOC_SOURCE_DIR=$(DOCS_DIR)/source
+1 -1
View File
@@ -47,7 +47,7 @@ from galaxy.web_stack import (
get_stack_facts,
register_postfork_function
)
from galaxy.webapps.config_manage import GALAXY_APP
from .config_manage import GALAXY_APP
from ..version import VERSION_MAJOR
log = logging.getLogger(__name__)
@@ -1,4 +1,4 @@
from galaxy.webapps.config_manage import AppSchema
from galaxy.config.config_manage import AppSchema
def test_get_reloadable_option_defaults(monkeypatch):
@@ -5,7 +5,7 @@ import tempfile
import yaml
from galaxy.webapps.config_manage import main
from galaxy.config.config_manage import main
THIS_DIR = os.path.dirname(__file__)