We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6763618 commit 4bdf2f7Copy full SHA for 4bdf2f7
perfrunner/utils/jenkins.py
@@ -11,7 +11,10 @@
11
from logger import logger
12
from perfrunner.utils.weekly import Weekly
13
14
-set_start_method("fork")
+try:
15
+ set_start_method("fork")
16
+except Exception as ex:
17
+ print(ex)
18
19
JobMapping = Dict[str, List[Dict[str, str]]]
20
perfrunner/utils/stats.py
@@ -12,7 +12,10 @@
from perfrunner.utils.jenkins import JenkinsScanner
StatsSettings = namedtuple('StatsSettings', ('cluster', 'cbmonitor_host'))
21
0 commit comments