mirror of https://github.com/apache/kafka.git
KAFKA-5355; DelayedFetch should propagate isolation level to log read
Tests will be added in a subsequent commit. Author: Jason Gustafson <jason@confluent.io> Reviewers: Ismael Juma <ismael@juma.me.uk> Closes #3221 from hachikuji/KAFKA-5355
This commit is contained in:
parent
eb5586102e
commit
6a5a908b1c
|
|
@ -152,7 +152,8 @@ class DelayedFetch(delayMs: Long,
|
|||
fetchMaxBytes = fetchMetadata.fetchMaxBytes,
|
||||
hardMaxBytesLimit = fetchMetadata.hardMaxBytesLimit,
|
||||
readPartitionInfo = fetchMetadata.fetchPartitionStatus.map { case (tp, status) => tp -> status.fetchInfo },
|
||||
quota = quota
|
||||
quota = quota,
|
||||
isolationLevel = isolationLevel
|
||||
)
|
||||
|
||||
val fetchPartitionData = logReadResults.map { case (tp, result) =>
|
||||
|
|
|
|||
Loading…
Reference in New Issue