From e76a30471a961115598a70588d21a6e1ae889245 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sat, 18 Apr 2026 16:19:14 +0100 Subject: [PATCH] bisync: fix integration tests after sftp log changes We added a new log message here which we need to ignore in the bisync tests 3658470022d8a440 sftp: warn the user if no host key validation is configured --- cmd/bisync/bisync_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/bisync/bisync_test.go b/cmd/bisync/bisync_test.go index d33ccece2..a76cbc5bd 100644 --- a/cmd/bisync/bisync_test.go +++ b/cmd/bisync/bisync_test.go @@ -85,6 +85,8 @@ var logReplacements = []string{ `^NOTICE: .*?: Replacing invalid UTF-8 characters in "[^"]*"$`, dropMe, // ignore rclone debug messages `^DEBUG : .*$`, dropMe, + // ignore SFTP host key messages + `^NOTICE: .*?No host key validation is being performed.*$`, dropMe, // ignore dropbox info messages `^NOTICE: too_many_(requests|write_operations)/\.*: Too many requests or write operations.*$`, dropMe, `^NOTICE: .*?: Forced to upload files to set modification times on this backend.$`, dropMe,