From b461ba54fd1ee8c78058aabdd52d88ebf1a11b07 Mon Sep 17 00:00:00 2001 From: Kevin Su Date: Tue, 16 May 2023 06:16:32 -0700 Subject: [PATCH] Add grpc plugin to loader.go (#562) Signed-off-by: Kevin Su --- flytepropeller/plugins/loader.go | 1 + 1 file changed, 1 insertion(+) diff --git a/flytepropeller/plugins/loader.go b/flytepropeller/plugins/loader.go index 68635dc78..388367ba3 100644 --- a/flytepropeller/plugins/loader.go +++ b/flytepropeller/plugins/loader.go @@ -17,5 +17,6 @@ import ( _ "github.com/flyteorg/flyteplugins/go/tasks/plugins/webapi/athena" _ "github.com/flyteorg/flyteplugins/go/tasks/plugins/webapi/bigquery" _ "github.com/flyteorg/flyteplugins/go/tasks/plugins/webapi/databricks" + _ "github.com/flyteorg/flyteplugins/go/tasks/plugins/webapi/grpc" _ "github.com/flyteorg/flyteplugins/go/tasks/plugins/webapi/snowflake" )