From b3e905ab3646fdfe192abeecfa448ea1a8287c8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Wed, 29 Oct 2025 16:30:20 -0400 Subject: [PATCH] incus-osd/providers: Remove old migration logic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- incus-osd/internal/providers/load.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/incus-osd/internal/providers/load.go b/incus-osd/internal/providers/load.go index 75e6cb1..790e326 100644 --- a/incus-osd/internal/providers/load.go +++ b/incus-osd/internal/providers/load.go @@ -10,11 +10,6 @@ import ( // Load gets a specific provider and initializes it with the provider configuration. func Load(ctx context.Context, s *state.State) (Provider, error) { - // NOTE: Migration logic, remove after a few releases. - if s.System.Provider.Config.Name == "github" { - s.System.Provider.Config.Name = "images" - } - var p Provider switch s.System.Provider.Config.Name {