merge v0.23.0-rc changes

This commit is contained in:
Gani Georgiev
2024-09-29 19:23:19 +03:00
parent ad92992324
commit 844f18cac3
753 changed files with 85141 additions and 63396 deletions
+2 -5
View File
@@ -181,11 +181,8 @@ func TestBatchHandlerHandle(t *testing.T) {
BeforeAddFunc: func(_ context.Context, log *Log) bool {
beforeLogs = append(beforeLogs, log)
if log.Message == "test2" {
return false // skip test2 log
}
return true
// skip test2 log
return log.Message != "test2"
},
WriteFunc: func(_ context.Context, logs []*Log) error {
writeLogs = logs