From 0a2a382a35a49ff2ecdb89a7969ab4167abafea1 Mon Sep 17 00:00:00 2001 From: BryantHe Date: Mon, 7 Aug 2023 14:44:34 +0800 Subject: [PATCH] fix: update method of start_grafana --- namekoplus/command.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/namekoplus/command.py b/namekoplus/command.py index c73d786..adbbb8f 100644 --- a/namekoplus/command.py +++ b/namekoplus/command.py @@ -136,7 +136,7 @@ def start_grafana(): grafana_conf_dir = os.path.join(get_directory('chassis-agent'), 'metric-configs') grafana_provisioning_path = os.path.join(grafana_conf_dir, 'grafana_conf/provisioning') grafana_config_path = os.path.join(grafana_conf_dir, 'grafana_conf/config/grafana.ini') - grafana_dashboard_path = os.path.join('.', 'grafana_dashboards') + grafana_dashboard_path = os.path.join(os.getcwd(), 'grafana_dashboards') returned_string = docker.run(image='grafana/grafana:latest', name='grafana', hostname='grafana', detach=True, restart='always', tty=True, interactive=True, publish=[(3100, 3000)], pull='missing', diff --git a/setup.py b/setup.py index 6f8a6be..c8222c5 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f: setup( name='namekoplus', - version='0.4.11', + version='0.4.12', description='A lightweight Python distributed microservice solution', long_description=long_description, long_description_content_type='text/markdown',