aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/configuration/settings.py
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2021-03-19 15:01:26 +0000
committerMichal Jagiello <michal.jagiello@t-mobile.pl>2021-03-19 15:46:43 +0000
commit11eaf0bf2df74664ab9812d817e1d34e89112c0b (patch)
treea8b7854c5332ec4fe1e65cd469881feba814919f /src/onaptests/configuration/settings.py
parentfb89da9e663ae759fc245b9273e55d06bc57f6a8 (diff)
Timeout on orchestration requests
Use wait_for_finish method to raise an exception if orchestration requests took more than 10 minutes Issue-ID: TEST-316 Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl> Change-Id: I0d82d91b0f7104caf32e5905d5950047d7551a7b
Diffstat (limited to 'src/onaptests/configuration/settings.py')
-rw-r--r--src/onaptests/configuration/settings.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/onaptests/configuration/settings.py b/src/onaptests/configuration/settings.py
index 609ca66..5cea0a6 100644
--- a/src/onaptests/configuration/settings.py
+++ b/src/onaptests/configuration/settings.py
@@ -45,3 +45,5 @@ TILLER_HOST = "localhost"
K8S_CONFIG = None # None means it will use default config (~/.kube/config)
K8S_NAMESPACE = "onap" # Kubernetes namespace
#SOCK_HTTP = "socks5h://127.0.0.1:8091"
+
+ORCHESTRATION_REQUEST_TIMEOUT = 60.0 * 10 # Ten minutes in seconds