-
Notifications
You must be signed in to change notification settings - Fork 326
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
Fix minor issues discovered in native-image #12379
Conversation
Bugs have been reported by first users of NI.
@@ -131,6 +131,12 @@ final class JobExecutionEngine( | |||
} | |||
logger.log(Level.WARNING, sb.toString()) | |||
runningJob.future.cancel(runningJob.job.mayInterruptIfRunning) | |||
case _: CancellationException => |
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.
Is this related to native-image?
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.
Indirectly. @jdunkerley reported it while using NI but I suppose one could get this exception with JVM runner as well.
Weird that this has not been picked up by our nightly checks that should run cloud tests. |
Perhaps the nightly tests are somehow still defaulting to running in non-native mode? Maybe we should consider updating them if native is becoming our default. |
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.
- with Progress API #12163 integrated
- this PR may need to be updated
std-bits/base/src/main/resources/META-INF/native-image/org/enso/base/reflect-config.json
Show resolved
Hide resolved
Having the test would like discover #12379 early. AOT and JVM modes generate the same result therefore it doesn't make sense to duplicate runs.
Hubert Plociniczak reports a new STANDUP for today (2025-02-28): Progress: Addressing more NI bugs. Verifying stale type info bug in #12207 which turned out to be a GUI issue. More testing. It should be finished by 2025-02-28. Next Day: Next day I will be working on the #12379 task. Continue investigating NI issues. |
Pull Request Description
Bugs have been reported by first users of NI.
Important Notes