MINOR: Enable fatal warnings with scala 2.13#8429
Merged
ijuma merged 1 commit intoapache:trunkfrom Apr 23, 2020
Merged
Conversation
Member
Author
|
Will rebase after #8490 is merged. Scala 2.13.2 should be released within 1 to 2 weeks and is a requirement for this PR. |
38ddd97 to
d56dcf9
Compare
d56dcf9 to
138c47d
Compare
Member
Author
|
Unrelated flaky test failure in 1 (out of 3) jobs: kafka.integration.MetricsDuringTopicCreationDeletionTest.testMetricsDuringTopicCreateDelete |
lrytz
reviewed
Apr 23, 2020
| if (versions.baseScala != '2.12') { | ||
| scalaCompileOptions.additionalParameters += ["-opt-warnings"] | ||
| // Scala 2.13.2 introduces compiler warnings suppression, which is a pre-requisite for -Xfatal-warnings | ||
| scalaCompileOptions.additionalParameters += ["-Xfatal-warnings"] |
ijuma
added a commit
to ijuma/kafka
that referenced
this pull request
Apr 29, 2020
…t-for-generated-requests * apache-github/trunk: (366 commits) MINOR: Improve producer test BufferPoolTest#testCloseNotifyWaiters. (apache#7982) MINOR: document how to escape json parameters to ducktape tests (apache#8546) KAFKA-9885; Evict last members of a group when the maximum allowed is reached (apache#8525) KAFKA-9866: Avoid election for topics where preferred leader is not in ISR (apache#8524) KAFKA-9839; Broker should accept control requests with newer broker epoch (apache#8509) KAKFA-9612: Add an option to kafka-configs.sh to add configs from a prop file (KIP-574) MINOR: Partition is under reassignment when adding and removing (apache#8364) MINOR: reduce allocations in log start and recovery checkpoints (apache#8467) MINOR: Remove unused foreign-key join class (apache#8547) HOTFIX: Fix broker bounce system tests (apache#8532) KAFKA-9704: Fix the issue z/OS won't let us resize file when mmap. (apache#8224) KAFKA-8639: Replace AddPartitionsToTxn with Automated Protocol (apache#8326) MINOR: equals() should compare all fields for generated classes (apache#8539) KAFKA-9844; Fix race condition which allows more than maximum number of members(apache#8454) KAFKA-9823: Remember the sent generation for the coordinator request (apache#8445) KAFKA-9883: Add better error message when REST API forwards a request and leader is not known (apache#8536) KAFKA-9907: Switch default build to Scala 2.13 (apache#8537) MINOR: Some html fixes in Streams DSL documentation (apache#8503) MINOR: Enable fatal warnings with scala 2.13 (apache#8429) KAFKA-9852: Change the max duration that calls to the buffer pool can block from 2000ms to 10ms to reduce overall test runtime (apache#8464) ...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@nowarn annotation for Scala 2.12.
Scala 2.13.2 highlights (besides @nowarn):
for performance. Small vectors are now more compactly
represented. Some operations are now drastically faster on
large vectors. A few operations may be a little slower.
https://github.com/scala/scala/releases/tag/v2.13.2
Committer Checklist (excluded from commit message)