Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gribigo updated to latest version #3419

Merged
merged 26 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
minor changes
  • Loading branch information
nsadhasivam committed Sep 10, 2024
commit 183e6670abfb45bd28f78fcf6cf45f8a3e4fce4a
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/openconfig/containerz/client"
cpb "github.com/openconfig/featureprofiles/internal/cntrsrv/proto/cntr"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/connectivity"
"google.golang.org/grpc/credentials"
)

var (
Expand Down Expand Up @@ -56,7 +56,7 @@ func TestDeployAndStartContainer(t *testing.T) {
})
conntectionState := connectivity.Ready
conn, err := grpc.NewClient("localhost:60061", grpc.WithTransportCredentials(tlsc))
conn.WaitForStateChange( ctx, conntectionState )
conn.WaitForStateChange(ctx, conntectionState)
if err != nil {
t.Fatalf("Failed to dial cntrsrv, %v", err)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func DialService(ctx context.Context, t *testing.T, name string, dut *ondatra.DU
InsecureSkipVerify: true, // NOLINT
})
conn, err := dialer.DialGRPC(ctx, name, grpc.WithTransportCredentials(tlsc))
conn.WaitForStateChange( ctx, connectivity.Ready )
conn.WaitForStateChange(ctx, connectivity.Ready)
if err != nil {
t.Fatalf("Failed to dial %s, %v", name, err)
}
Expand Down
Loading