Skip to content

Commit da5b33b

Browse files
committed
Merge branch 'v3' into fix-flaky-tests
2 parents 6440652 + cfc9f48 commit da5b33b

File tree

3 files changed

+67
-67
lines changed

3 files changed

+67
-67
lines changed

api/grpc/mpi/v1/files.pb.go

Lines changed: 63 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/grpc/mpi/v1/files.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,10 +272,10 @@ message X509Name {
272272
repeated string postal_code = 7 [(buf.validate.field).repeated.items.string.min_len = 1];
273273

274274
// Serial Number (SN): Unique identifier or serial number.
275-
string serial_number = 8 [(buf.validate.field).string.min_len = 0];
275+
string serial_number = 8;
276276

277277
// Common Name (CN): Typically the person’s or entity's full name.
278-
string common_name = 9 [(buf.validate.field).string.min_len = 1];
278+
string common_name = 9;
279279

280280
// Parsed attributes including any non-standard attributes, as specified in RFC 2253.
281281
// These attributes are parsed but not marshaled by this package.

internal/file/file_manager_service.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,8 @@ func (fms *FileManagerService) UpdateFile(
238238
defer backoffCancel()
239239

240240
sendUpdateFile := func() (*mpi.UpdateFileResponse, error) {
241-
slog.DebugContext(ctx, "Sending update file request", "request", request)
241+
slog.DebugContext(ctx, "Sending update file request", "request_file", request.GetFile(),
242+
"request_message_meta", request.GetMessageMeta())
242243
if fms.fileServiceClient == nil {
243244
return nil, errors.New("file service client is not initialized")
244245
}

0 commit comments

Comments
 (0)