@@ -44,16 +44,15 @@ def generate_steps(containers, context):
4444 upstream_name = container .upstreamName
4545 api_version = container .apiVersion
4646 vn = container .nginxServer
47- sick_step = steps .jython (description = "Mark test [%s] as down in Nginx [%s], api version is [%s]" % (server_name , vn .name , api_version ), order = 5 ,
47+ sick_step = steps .jython (description = "Mark [%s] as down in Nginx [%s], api version is [%s]" % (server_name , vn .name , api_version ), order = 5 ,
4848 script = "nginxplus/down-server.py" ,
4949 jython_context = {"server_name" : server_name , "upstream_name" : upstream_name , "api_version" : api_version ,
5050 "nginx_url" : vn .url })
51- health_step = steps .jython (description = "Mark test [%s] as up in Nginx [%s], api version is [%s]" % (server_name , vn .name , api_version ), order = 95 ,
51+ health_step = steps .jython (description = "Mark [%s] as up in Nginx [%s], api version is [%s]" % (server_name , vn .name , api_version ), order = 95 ,
5252 script = "nginxplus/up-server.py" ,
5353 jython_context = {"server_name" : server_name , "upstream_name" : upstream_name , "api_version" : api_version ,
5454 "nginx_url" : vn .url })
5555 context .addStep (sick_step )
5656 context .addStep (health_step )
5757
58-
5958generate_steps (extract_nginx_aware_containers (deltas ), context )
0 commit comments