Skip to content

Commit 906a0ee

Browse files
authored
#1809 - Remove unnecessary mongod shutdown
It appears Jenkins is killing mongod automatically after the job is complete. As such, we don't need to do so manually via the Jenkinsfile.
1 parent 54b3f45 commit 906a0ee

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

Jenkinsfile

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,6 @@ pipeline {
6060
archiveArtifacts 'build/tn_data_00/stderr.txt'
6161
archiveArtifacts 'build/test_walletd_output.log'
6262
}
63-
always {
64-
sh '''
65-
/usr/bin/mongod --shutdown
66-
'''
67-
}
6863
}
6964
}
7065
stage('MacOS') {
@@ -87,11 +82,6 @@ pipeline {
8782
archiveArtifacts 'build/tn_data_00/stderr.txt'
8883
archiveArtifacts 'build/test_walletd_output.log'
8984
}
90-
always {
91-
sh '''
92-
/usr/local/bin/mongod --shutdown
93-
'''
94-
}
9585
}
9686
}
9787
stage('Fedora') {
@@ -117,11 +107,6 @@ pipeline {
117107
archiveArtifacts 'build/tn_data_00/stderr.txt'
118108
archiveArtifacts 'build/test_walletd_output.log'
119109
}
120-
always {
121-
sh '''
122-
/usr/bin/mongod --shutdown
123-
'''
124-
}
125110
}
126111
}
127112
}

0 commit comments

Comments
 (0)