Skip to content

Commit 002563f

Browse files
[ci] working yohou
Signed-off-by: Julien Tinguely <[email protected]>
1 parent e18bc32 commit 002563f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

build.sbt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1834,17 +1834,18 @@ checkErrors := {
18341834
Seq(".github/actions/scripts/split-canton-logs.sh", logFile, logFileBefore, logFileAfter).!
18351835

18361836
import better.files.File
1837-
val logSpecificIgnores =
1837+
val logSpecificIgnores = {
18381838
if (File(ignorePatternsFilename(logName)).exists()) Seq(logName) else Seq.empty
1839-
val extraSpecificIgnores = if (sys.env.contains("SPLICE_USE_BFT_SEQUENCER")) {
1839+
}
1840+
val bftIgnores = if (sys.env.contains("SPLICE_USE_BFT_SEQUENCER")) {
18401841
Seq("canton_log_bft")
18411842
} else {
18421843
Seq.empty
18431844
}
18441845

18451846
val simtimeIgnorePatterns = if (usesSimtime) Seq("canton_log_simtime_extra") else Seq.empty
18461847
val beforeIgnorePatterns =
1847-
Seq("canton_log") ++ simtimeIgnorePatterns ++ logSpecificIgnores ++ extraSpecificIgnores
1848+
Seq("canton_log") ++ simtimeIgnorePatterns ++ logSpecificIgnores ++ bftIgnores
18481849
val afterIgnorePatterns =
18491850
beforeIgnorePatterns ++ Seq("canton_log_shutdown_extra") ++ logSpecificIgnores
18501851

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Errors and warnings caused by the key rotation in ManualSignatureIntegrationTest
2+
.*could not verify client's signature.*
3+
.*used to generate signature is not a valid key.*
4+
.*Response message for request.* timed out.*

project/ignore-patterns/canton_log_signatures.ignore.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)