Skip to content

Commit

Permalink
Fix for the carina and controller issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Utkarsh Shukla committed Dec 3, 2024
1 parent 657e26f commit 12633e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,14 @@ func waitForRequest(ctx context.Context, c pb.TunnelServiceClient) error {
defer cancel()
stream, err := c.WaitForRequest(ctx, &pb.WaitForRequestArgs{})
if err != nil {
log.info("Wait for request grpc action failed")

Check failure on line 132 in app/client/main.go

View workflow job for this annotation

GitHub Actions / test (1.21.x, ubuntu-latest)

undefined: log.info

Check failure on line 132 in app/client/main.go

View workflow job for this annotation

GitHub Actions / test (1.21.x, ubuntu-latest)

undefined: log.info
return err
}
for {
req, err := stream.Recv()
if err != nil {
return err
// return err
continue
}
if req.IsKeepalive {
continue
Expand Down

0 comments on commit 12633e0

Please sign in to comment.