From 7c84530d100608af53e26a2b4f208865b7cd7f66 Mon Sep 17 00:00:00 2001 From: Suvid Sahay Date: Tue, 24 Mar 2020 22:48:36 +0530 Subject: [PATCH] Fixed Didn't call Close on UserStreamListener log messages when syncing Signed-off-by: Suvid Sahay Removing the extra imports --- syncapi/sync/userstream.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/syncapi/sync/userstream.go b/syncapi/sync/userstream.go index 6eef86440..88867005e 100644 --- a/syncapi/sync/userstream.go +++ b/syncapi/sync/userstream.go @@ -21,7 +21,6 @@ import ( "time" "github.com/matrix-org/dendrite/syncapi/types" - "github.com/matrix-org/util" ) // UserStream represents a communication mechanism between the /sync request goroutine @@ -76,7 +75,6 @@ func (s *UserStream) GetListener(ctx context.Context) UserStreamListener { // Lets be a bit paranoid here and check that Close() is being called runtime.SetFinalizer(&listener, func(l *UserStreamListener) { if !l.hasClosed { - util.GetLogger(ctx).Warn("Didn't call Close on UserStreamListener") l.Close() } })