valence/valence/cmd/db_manager.py
Ananth Narayan S 1706b3cff5 Remove object imports.
This patch modifies import statements to import only modules and
remove object imports as per the OpenStack import guidelines.

Change-Id: Id4841375a15f41dd166bf16d4c8736954ca61440
Closes-Bug: #1650063
2017-01-18 07:59:58 +05:30

40 lines
881 B
Python
Executable File

#!/usr/bin/env python
# copyright (c) 2016 Intel, Inc.
#
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import logging
import sys
import valence.db.etcd_db as valence_etcdb
LOG = logging.getLogger(__name__)
def init():
valence_etcdb.init_etcd_db()
def migrate():
pass
def main():
if sys.argv[1] == 'init':
LOG.info("initialize database")
init()
if __name__ == '__main__':
sys.exit(main())