File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def get_leader(topic, partition)
120
120
121
121
# Finds the broker acting as the coordinator of the given group.
122
122
#
123
- # @param group_id: [String]
123
+ # @param group_id [String]
124
124
# @return [Broker] the broker that's currently coordinator.
125
125
def get_group_coordinator ( group_id :)
126
126
@logger . debug "Getting group coordinator for `#{ group_id } `"
@@ -130,7 +130,7 @@ def get_group_coordinator(group_id:)
130
130
131
131
# Finds the broker acting as the coordinator of the given transaction.
132
132
#
133
- # @param transactional_id: [String]
133
+ # @param transactional_id [String]
134
134
# @return [Broker] the broker that's currently coordinator.
135
135
def get_transaction_coordinator ( transactional_id :)
136
136
@logger . debug "Getting transaction coordinator for `#{ transactional_id } `"
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ def write_varint_string(string)
126
126
# Writes an integer under varints serializing to the IO object.
127
127
# https://developers.google.com/protocol-buffers/docs/encoding#varints
128
128
#
129
- # @param string [Integer]
129
+ # @param int [Integer]
130
130
# @return [nil]
131
131
def write_varint ( int )
132
132
int = int << 1
You can’t perform that action at this time.
0 commit comments