We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6cd0fe + 25f970e commit b3c631fCopy full SHA for b3c631f
Jenkinsfile
@@ -219,6 +219,11 @@ def assertIvyConsoleLog(example, message) {
219
220
def assertNoErrorOrWarnInIvyLog(example) {
221
def log = getIvyConsoleLog(example)
222
+
223
+ // remove false-positive warnings for mariadb
224
+ log = log.replace("WARN] (main) Error: 1049-42000:", "")
225
+ log = log.replace("WARN] (System Database Creator Thread) Error: 1049-42000:", "")
226
227
if (log.contains("WARN") || log.contains("ERROR")) {
228
throw new Exception("console log of ivy contains WARN/ERROR messages");
229
}
0 commit comments