From b5c4e41de7ff142c32f0d6123040f44d8b34e1ac Mon Sep 17 00:00:00 2001 From: Nick Cabatoff Date: Fri, 13 Oct 2023 16:26:58 -0400 Subject: [PATCH] For now, go back to the hook approach for addExternalPlugins. I've broken many tests on ent that relied on a broken behaviour. I'll fix them properly later, for now I want to unbreak the build. (#23652) --- helper/builtinplugins/registry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/builtinplugins/registry.go b/helper/builtinplugins/registry.go index 462b858824..3c531a9e1f 100644 --- a/helper/builtinplugins/registry.go +++ b/helper/builtinplugins/registry.go @@ -200,7 +200,7 @@ func newRegistry() *registry { }, } - entAddExtPlugins(reg) + addExternalPlugins(reg) return reg }