File tree Expand file tree Collapse file tree 2 files changed +18
-6
lines changed
Expand file tree Collapse file tree 2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -62,9 +62,15 @@ def create_run_remote_arguments(parser):
6262 help = "uploads the result files and configuration file to public "
6363 "'ci.benchmarks.redislabs' bucket. Proper credentials are required" ,
6464 )
65- parser .add_argument ("--redistimesies_host" , type = str , default = PERFORMANCE_RTS_HOST )
66- parser .add_argument ("--redistimesies_port" , type = int , default = PERFORMANCE_RTS_PORT )
67- parser .add_argument ("--redistimesies_pass" , type = str , default = PERFORMANCE_RTS_AUTH )
65+ parser .add_argument (
66+ "--redistimeseries_host" , type = str , default = PERFORMANCE_RTS_HOST
67+ )
68+ parser .add_argument (
69+ "--redistimeseries_port" , type = int , default = PERFORMANCE_RTS_PORT
70+ )
71+ parser .add_argument (
72+ "--redistimeseries_pass" , type = str , default = PERFORMANCE_RTS_AUTH
73+ )
6874 parser .add_argument (
6975 "--push_results_redistimeseries" ,
7076 default = PERFORMANCE_RTS_PUSH ,
Original file line number Diff line number Diff line change @@ -29,7 +29,13 @@ def create_watchdog_arguments(parser):
2929 default = 60 ,
3030 help = "watchdog update interval in seconds" ,
3131 )
32- parser .add_argument ("--redistimesies_host" , type = str , default = PERFORMANCE_RTS_HOST )
33- parser .add_argument ("--redistimesies_port" , type = int , default = PERFORMANCE_RTS_PORT )
34- parser .add_argument ("--redistimesies_pass" , type = str , default = PERFORMANCE_RTS_AUTH )
32+ parser .add_argument (
33+ "--redistimeseries_host" , type = str , default = PERFORMANCE_RTS_HOST
34+ )
35+ parser .add_argument (
36+ "--redistimeseries_port" , type = int , default = PERFORMANCE_RTS_PORT
37+ )
38+ parser .add_argument (
39+ "--redistimeseries_pass" , type = str , default = PERFORMANCE_RTS_AUTH
40+ )
3541 return parser
You can’t perform that action at this time.
0 commit comments