print message removed

This commit is contained in:
ahmadbilalkhalid 2020-01-10 15:47:38 +05:00
commit b4f47adb4f
1 changed files with 6 additions and 4 deletions

View File

@ -55,20 +55,22 @@ if __name__ == '__main__':
arg_parser.print_help()
else:
arguments = vars(args)
# print(arguments)
# print(etcd_parser)
name = arguments.pop('command')
mod = importlib.import_module('uncloud.{}.main'.format(name))
main = getattr(mod, 'main')
if component in ETCD_COMPONENTS:
# If the component requires etcd3, we import it and catch the
# etcd3.exceptions.ConnectionFailedError
if name in ETCD_COMPONENTS:
import etcd3
try:
main(arguments)
except UncloudException as err:
logger.error(err)
sys.exit(1)
except etcd3.exceptions.ConnectionFailedError as err:
logger.error("Cannot connect to etcd")
except Exception as err:
logger.exception(err)
sys.exit(1)