-
Notifications
You must be signed in to change notification settings - Fork 53
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
Add view logs support, bold button for start/pause, bump Kotlin/Gradle #415
Conversation
@@ -204,7 +204,7 @@ class VariableCapacityChannelTest { | |||
@Test | |||
fun `listener is called`() { | |||
val size = AtomicInteger() | |||
runBlockingTest { |
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.
Did we mean to do these?
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.
Part of the Kotlin 2 upgrade
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.
Reverting to do in a separate PR
d236f42
to
b88dc39
Compare
build.gradle.kts
Outdated
} | ||
} | ||
|
||
tasks.withType<JavaCompile> { | ||
sourceCompatibility = JavaVersion.VERSION_11.toString() | ||
targetCompatibility = JavaVersion.VERSION_11.toString() | ||
sourceCompatibility = JavaVersion.VERSION_17.toString() |
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.
I'm not sure we can do this? I think this will lock out anyone < 17 right?
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.
reverted
17976b5
to
22a5ae3
Compare
22a5ae3
to
c9373be
Compare
The latest Misk was causing failures when trying to start the development service so the Kotlin/Gradle upgrade was necessary to unblock forward development.
View logs link now works and there are bolder start/pause buttons in the Backfill Show page.