-
Notifications
You must be signed in to change notification settings - Fork 645
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump: Scala 2.13.10 and 2.12.17; Javadoc links #2925
Conversation
Scala introduced more warnings which now make the build fail. |
@@ -552,7 +552,7 @@ trait S3IntegrationSpec | |||
_ <- akka.pattern.after(25.seconds)(Future { | |||
sharedKillSwitch.abort(AbortException) | |||
}) | |||
_ <- multiPartUpload.recover { | |||
_ <- multiPartUpload.recover[Any] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
val defaultScalaOptions = "-Wconf:cat=unused-nowarn:s,cat=lint-infer-any:s,any:e"
is used in Akka akka/akka#31648
@@ -89,7 +89,7 @@ class AmqpGraphStageLogicConnectionShutdownSpec | |||
|
|||
Future | |||
.traverse(input)(in => Source.single(ByteString(in)).runWith(amqpSink)) | |||
.recover { | |||
.recover[Object] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AnyRef
@@ -61,7 +61,7 @@ class InfluxDbSourceSpec | |||
val query = new Query("SELECT man() FROM invalid", DatabaseName); | |||
|
|||
val result = InfluxDbSource(influxDB, query) //.runWith(Sink.seq) | |||
.recover { | |||
.recover[Object] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AnyRef
in several places
"http://www.scala-lang.org/api/2.13.8/scala/concurrent/Future.html" | ||
"http://www.scala-lang.org/api/2.13.8/scala/util/Try.html" | ||
"http://www.scala-lang.org/api/2.13.10/scala/concurrent/Future.html" | ||
"http://www.scala-lang.org/api/2.13.10/scala/util/Try.html" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sadly not. The generated links contain the exact version.
I updated the mocks in Google Pub/Sub so they don't always fail. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
...and remove some link checking left-overs.