blob: eb15301238c9743bca303169d8f1cad39735fde2 [file] [log] [blame]
Zack Williams029c92f2018-05-30 15:45:04 -07001#!/usr/bin/env python
Matteo Scandoloa86e0a12017-08-08 13:05:27 -07002
3# Copyright 2017-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Scott Baker171d35e2016-06-20 17:36:29 -070017# This imports and runs ../../xos-observer.py
18
19import importlib
20import os
21import sys
Matteo Scandolo15f11b92017-05-30 17:31:02 -070022
23from xosconfig import Config
24config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/vtr_config.yaml')
25
26Config.init(config_file, 'synchronizer-config-schema.yaml')
27observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../synchronizers/new_base")
28
29# observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../../../xos/xos/synchronizers/new_base")
30# sys.path.append('/Users/teone/Sites/opencord/orchestration/xos/xos')
31
Scott Baker171d35e2016-06-20 17:36:29 -070032sys.path.append(observer_path)
33mod = importlib.import_module("xos-synchronizer")
34mod.main()