-
Notifications
You must be signed in to change notification settings - Fork 7
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: use typemap in JVM #2556
fix: use typemap in JVM #2556
Conversation
b62128f
to
4eb66a1
Compare
go.mod
Outdated
@@ -47,6 +47,7 @@ require ( | |||
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 | |||
github.com/sqlc-dev/pqtype v0.3.0 | |||
github.com/swaggest/jsonschema-go v0.3.72 | |||
github.com/tbd54566975/web5-go v0.24.0 |
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.
It looks like this was added just to get a type to use for testing, but this will slow down the builds, so let's remove it and use some type in the stdlib or something.
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 it ok to keep using it in the testdata project (so it is not in the main go.mod, just the test project used in integration tests).
Using this class actually showed up some real world issues as it has a custom serialization format, and was supported in both languages via third party libraries.
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.
Yeah that's fine!
jvm-runtime/ftl-runtime/common/runtime/src/main/java/xyz/block/ftl/runtime/VerbHandler.java
Outdated
Show resolved
Hide resolved
7459ffe
to
9d67773
Compare
9d67773
to
2f21934
Compare
fixes: #2513
fixes: #2510