From 4dfada0dbd56aea8afd1bcf7515d28aaf807e9c8 Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Mon, 11 May 2026 23:36:03 +0300 Subject: [PATCH] appview: disable BackgroundMigrationMiddleware for now Signed-off-by: Anirudh Oppiliappan --- appview/state/router.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appview/state/router.go b/appview/state/router.go index 6c46eb86..bcf6e519 100644 --- a/appview/state/router.go +++ b/appview/state/router.go @@ -13,7 +13,7 @@ import ( "tangled.org/core/appview/labels" "tangled.org/core/appview/metrics" "tangled.org/core/appview/middleware" - "tangled.org/core/appview/migration" + // "tangled.org/core/appview/migration" "tangled.org/core/appview/notifications" "tangled.org/core/appview/pipelines" "tangled.org/core/appview/pulls" @@ -41,8 +41,8 @@ func (s *State) Router() http.Handler { router.Use(metrics.Middleware) - m := migration.NewMigration(s.db, s.oauth, s.idResolver.Directory(), s.logger) - router.Use(m.BackgroundMigrationMiddleware) + // m := migration.NewMigration(s.db, s.oauth, s.idResolver.Directory(), s.logger) + // router.Use(m.BackgroundMigrationMiddleware) router.Get("/pwa-manifest.json", s.WebAppManifest) router.Get("/robots.txt", s.RobotsTxt) -- 2.51.2