File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ async function adminStart() {
72
72
console . log ( `\tProtocol type: ${ group . protocolType } ` ) ;
73
73
console . log ( `\tPartition assignor: ${ group . partitionAssignor } ` ) ;
74
74
console . log ( `\tState: ${ group . state } ` ) ;
75
+ console . log ( `\tType: ${ group . type } ` ) ;
75
76
console . log ( `\tCoordinator: ${ group . coordinator ? group . coordinator . id : group . coordinator } ` ) ;
76
77
printNode ( group . coordinator , '\t' ) ;
77
78
console . log ( `\tAuthorized operations: ${ group . authorizedOperations } ` ) ;
Original file line number Diff line number Diff line change @@ -1127,8 +1127,7 @@ v8::Local<v8::Object> FromConsumerGroupDescription(
1127
1127
1128
1128
// type
1129
1129
Nan::Set (returnObject, Nan::New (" type" ).ToLocalChecked (),
1130
- Nan::New<v8::String>(rd_kafka_ConsumerGroupDescription_type (desc))
1131
- .ToLocalChecked ());
1130
+ Nan::New<v8::Number>(rd_kafka_ConsumerGroupDescription_type (desc)));
1132
1131
1133
1132
// coordinator
1134
1133
const rd_kafka_Node_t* coordinator =
You can’t perform that action at this time.
0 commit comments