This is an automated email from the ASF dual-hosted git repository.
kgyrtkirk pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hive.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new f101c73 set pod timeout to 24 hours
f101c73 is described below
commit f101c735e7790b6bdb8cb83369bf356f28f91d07
Author: Zoltan Haindrich <[email protected]>
AuthorDate: Thu Dec 10 11:53:56 2020 +0000
set pod timeout to 24 hours
---
Jenkinsfile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Jenkinsfile b/Jenkinsfile
index 2850142..c23ca60 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -67,10 +67,12 @@ setPrLabel("PENDING");
def executorNode(run) {
hdbPodTemplate {
+ timeout(time: 24, unit: 'HOURS') {
node(POD_LABEL) {
container('hdb') {
run()
}
+ }
}
}
}