Fix package import identify at time of sanity check
Change-Id: I84ab65d04322769e177a474722b0e311ce1fafef
This commit is contained in:
parent
ee9bbf42b6
commit
a997a34f10
@ -7,7 +7,7 @@ db_user = 'root'
|
|||||||
db_pass = 'stack'
|
db_pass = 'stack'
|
||||||
db_host = '127.0.0.1'
|
db_host = '127.0.0.1'
|
||||||
ssl_verify = False
|
ssl_verify = False
|
||||||
token_auth_enabled = True
|
token_auth_enabled = False
|
||||||
token_auth_user = 'admin'
|
token_auth_user = 'admin'
|
||||||
token_auth_pass = 'nova'
|
token_auth_pass = 'nova'
|
||||||
token_auth_tenant = 'admin'
|
token_auth_tenant = 'admin'
|
||||||
@ -65,3 +65,6 @@ rds = {
|
|||||||
'base_url': '{}://{}:{}/'.format(orm_protocal, orm_host, rds_port),
|
'base_url': '{}://{}:{}/'.format(orm_protocal, orm_host, rds_port),
|
||||||
'log': log_location.format('rds.log')
|
'log': log_location.format('rds.log')
|
||||||
}
|
}
|
||||||
|
cli = {
|
||||||
|
'base_region': 'local'
|
||||||
|
}
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
# these values are used by ormcli to retrieve auth_token which is sent,
|
# these values are used by ormcli to retrieve auth_token which is sent,
|
||||||
# along with region, with each cms and fms api request
|
# along with region, with each cms and fms api request
|
||||||
tenant_name = ''
|
import orm.base_config as config
|
||||||
username = ''
|
|
||||||
password = False
|
tenant_name = config.token_auth_tenant
|
||||||
auth_region = ''
|
username = config.token_auth_user
|
||||||
orm_base_url = 'http://127.0.0.1'
|
password = config.token_auth_pass
|
||||||
verify = False
|
auth_region = config.cli['base_region']
|
||||||
|
orm_base_url = config.rms['base_url']
|
||||||
|
verify = config.ssl_verify
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import orm.base_config as config
|
import orm.base_config as config
|
||||||
from orm_common.hooks.api_error_hook import APIErrorHook
|
from orm.common.orm_common.hooks.api_error_hook import APIErrorHook
|
||||||
from orm_common.hooks.security_headers_hook import SecurityHeadersHook
|
from orm.common.orm_common.hooks.security_headers_hook import SecurityHeadersHook
|
||||||
from orm_common.hooks.transaction_id_hook import TransactionIdHook
|
from orm.common.orm_common.hooks.transaction_id_hook import TransactionIdHook
|
||||||
global TransactionIdHook
|
global TransactionIdHook
|
||||||
global APIErrorHook
|
global APIErrorHook
|
||||||
global SecurityHeadersHook
|
global SecurityHeadersHook
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
from ims.hooks.service_hooks import TransIdHook
|
|
||||||
import orm.base_config as config
|
import orm.base_config as config
|
||||||
from orm_common.hooks.api_error_hook import APIErrorHook
|
from orm.common.orm_common.hooks.api_error_hook import APIErrorHook
|
||||||
from orm_common.hooks.security_headers_hook import SecurityHeadersHook
|
from orm.common.orm_common.hooks.security_headers_hook import SecurityHeadersHook
|
||||||
|
from orm.services.image_manager.ims.hooks.service_hooks import TransIdHook
|
||||||
global TransIdHook
|
global TransIdHook
|
||||||
global APIErrorHook
|
global APIErrorHook
|
||||||
global SecurityHeadersHook
|
global SecurityHeadersHook
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
from ims.ims_mocks import audit_mock, requests_mock
|
from orm.common.orm_common.utils import utils
|
||||||
from ims.logic import image_logic, metadata_logic
|
from orm.services.image_manager.ims.ims_mocks import audit_mock, requests_mock
|
||||||
from ims.persistency.sql_alchemy.data_manager import DataManager
|
from orm.services.image_manager.ims.logic import image_logic, metadata_logic
|
||||||
from ims.proxies import rds_proxy
|
from orm.services.image_manager.ims.persistency.sql_alchemy.data_manager import DataManager
|
||||||
from orm_common.utils import utils
|
from orm.services.image_manager.ims.proxies import rds_proxy
|
||||||
|
|
||||||
providers = [
|
providers = [
|
||||||
('rds_proxy', rds_proxy),
|
('rds_proxy', rds_proxy),
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import imp
|
import imp
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from orm_common.injector import fang
|
from orm.common.orm_common.injector import fang
|
||||||
|
|
||||||
_di = fang.Di()
|
_di = fang.Di()
|
||||||
logger = None
|
logger = None
|
||||||
|
@ -2,7 +2,7 @@ import time
|
|||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
from orm_common.logger import get_logger
|
from orm.common.orm_common.logger import get_logger
|
||||||
from pecan import conf
|
from pecan import conf
|
||||||
|
|
||||||
logger = get_logger(__name__)
|
logger = get_logger(__name__)
|
||||||
|
@ -4,7 +4,7 @@ import time
|
|||||||
import requests
|
import requests
|
||||||
|
|
||||||
from audit_client.api import audit
|
from audit_client.api import audit
|
||||||
from orm_common.logger import get_logger
|
from orm.common.orm_common.logger import get_logger
|
||||||
from pecan import conf
|
from pecan import conf
|
||||||
|
|
||||||
logger = get_logger(__name__)
|
logger = get_logger(__name__)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from orm_common.hooks.transaction_id_hook import TransactionIdHook
|
from orm.common.orm_common.hooks.transaction_id_hook import TransactionIdHook
|
||||||
from orm_common.utils import utils
|
from orm.common.orm_common.utils import utils
|
||||||
|
|
||||||
|
|
||||||
class TransIdHook(TransactionIdHook):
|
class TransIdHook(TransactionIdHook):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user