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

Implement structured logging for gRPC errors on SPIRE agent #4262

Merged
Prev Previous commit
Next Next commit
fix expires at and issued at dates
Signed-off-by: Neniel <11655196+Neniel@users.noreply.github.com>
  • Loading branch information
Neniel committed Aug 24, 2023
commit a090c43780c80cd3844f73ef353ecc2d24a3db97
4 changes: 2 additions & 2 deletions pkg/agent/client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -783,8 +783,8 @@ func TestFetchJWTSVID(t *testing.T) {
setupTest: func(err error) {
tc.svidClient.jwtSVID = &types.JWTSVID{
Token: "token",
ExpiresAt: issuedAt,
IssuedAt: expiresAt,
ExpiresAt: expiresAt,
IssuedAt: issuedAt,
}
tc.svidClient.newJWTSVID = err
},
Expand Down