Skip to content

Commit

Permalink
small fix for system-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jt-dd committed Jun 19, 2024
1 parent 9e12f51 commit a46f8f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/system/setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a46f8f1

Please sign in to comment.