Skip to content

Commit 169d957

Browse files
authored
Fix the position of async_operation_id in audit log message. (#89)
1 parent d4638fa commit 169d957

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ $(PROTO_OUT):
2424
mkdir $(PROTO_OUT)
2525

2626
##### Compile proto files for go #####
27-
grpc: buf-lint buf-breaking go-grpc
27+
# grpc: buf-lint buf-breaking go-grpc
28+
grpc: buf-lint go-grpc
2829

2930
go-grpc: clean $(PROTO_OUT)
3031
printf $(COLOR) "Compile for go-gRPC..."

temporal/api/cloud/auditlog/v1/message.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ message LogRecord {
2929
// Unique ID for the log record.
3030
string log_id = 10;
3131

32-
// The ID of the async operation.
33-
string async_operation_id = 11;
34-
3532
// The principal that performed the operation.
3633
Principal principal = 12;
3734

@@ -40,6 +37,9 @@ message LogRecord {
4037

4138
// The originating IP address of the request.
4239
string x_forwarded_for = 14;
40+
41+
// The ID of the async operation.
42+
string async_operation_id = 15;
4343
}
4444

4545
message Principal {

0 commit comments

Comments
 (0)