From a46f8f124b3b0109f558b46ab47aab69b2870b72 Mon Sep 17 00:00:00 2001 From: jt-dd Date: Wed, 19 Jun 2024 16:13:06 +0200 Subject: [PATCH] small fix for system-tests --- test/system/setup_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/system/setup_test.go b/test/system/setup_test.go index e40a3efe8..9bc3c4800 100644 --- a/test/system/setup_test.go +++ b/test/system/setup_test.go @@ -208,7 +208,10 @@ func RunGRPC(ctx context.Context, runArgs *runArgs, p *providers.ProvidersFactor ingestorApi := api.NewIngestorAPI(khCfg, puller, noopNotifier, p) // Start the GRPC server - go grpc.Listen(ctx, ingestorApi) + go func() { + err := grpc.Listen(ctx, ingestorApi) + log.I.Fatalf(err.Error()) + }() // Starting ingestion of the dumped data err = core.CoreClientGRPCIngest(khCfg.Ingestor, cluster, runID)