Merge "Change bm_availability_zone to nova"
diff --git a/checklist.yaml b/checklist.yaml
index e0bcdaf..80fae3f 100644
--- a/checklist.yaml
+++ b/checklist.yaml
@@ -241,5 +241,11 @@
     status: ProdFailed
     defects: PROD-35882
 
+  - title: test_kpi_metrics
+    errors:
+      - 'TimeoutError: Waiting timed out'
+    status: TestFailed
+    defects: PROD-35920
+
 
 
diff --git a/jobs/scripts/mcp_mu_release_artifact_checker.py b/jobs/scripts/mcp_mu_release_artifact_checker.py
index d029c03..82abbf7 100644
--- a/jobs/scripts/mcp_mu_release_artifact_checker.py
+++ b/jobs/scripts/mcp_mu_release_artifact_checker.py
@@ -82,7 +82,7 @@
     released_snapshot_date = get_snapshot_date(released_snapshot)
     proposed_snapshot_date = get_snapshot_date(proposed_snapshot)
     if proposed_snapshot_date > released_snapshot_date:
-        good_subrepos.append(subrepo)
+        good_subrepos.append([subrepo, proposed_snapshot])
     elif proposed_snapshot_date == released_snapshot_date:
         suspicious_subrepos.append([subrepo, proposed_snapshot])
     else:
@@ -92,9 +92,9 @@
 for subrepo in subrepos:
     check_snapshot(subrepo)
 
-for repo in good_subrepos:
+for i in good_subrepos:
     print("Repo {} - all fine, proposed is fresher than "
-          "latest release".format(repo))
+          "latest release\n{}".format(i[0], i[1]))
 print("Good news ended\n" + "=" * 79)
 for i in suspicious_subrepos:
     print(
diff --git a/tcp_tests/tests/system/test_cvp_pipelines.py b/tcp_tests/tests/system/test_cvp_pipelines.py
index 4597e54..1523c48 100644
--- a/tcp_tests/tests/system/test_cvp_pipelines.py
+++ b/tcp_tests/tests/system/test_cvp_pipelines.py
@@ -146,7 +146,9 @@
   GENERATE_CONFIG: true
   SKIP_LIST_PATH: /usr/share/tempest/skip.list
   report_prefix: "cvp_"
-            """,
+  concurrency: {concurrency}
+            """.format(concurrency=settings.TEMPEST_THREADS),
+
             'TEMPEST_ENDPOINT_TYPE': 'internalURL',
             'TEMPEST_TEST_PATTERN': tempest_pattern,
         }