1
votes

I have a Jenkins Multibranch Pipeline build job that is uploading a rather large number of big files to Artifactory, and therefore the upload step is taking longer than the default 5 minute limit defined in the Artifactory Jenkins plugin:

src/main/java/org/jfrog/hudson/ArtifactoryServer.java:    private static final int DEFAULT_CONNECTION_TIMEOUT = 300;    // 5 Minutes

How can I specify a longer timeout in my Jenkinsfile so my build jobs can get successfully uploaded and stop failing?

1
can you please provide the Jenkinsfile snippet you have defined atm?Sergej Lopatkin

1 Answers

2
votes

This is documented here: HAP-893.

The short answer is that, for now, this is not possible for pipeline jobs.