We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There should be no reflection to use Datahike via GraalVM native-compiled binary
No reflection warnings
none
The text was updated successfully, but these errors were encountered:
Some of them have been fixed now, not sure whether all of them are.
Sorry, something went wrong.
I am using this alias for my repl:
:repl/portal {:extra-deps {nrepl/nrepl {:mvn/version "1.1.0"} cider/cider-nrepl {:mvn/version "0.43.3"} djblue/portal {:mvn/version "0.49.1"}} :jvm-opts ["--enable-preview"] :main-opts ["-e" "(set! *warn-on-reflection* true)" "-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware,portal.nrepl/wrap-portal]"]}}}
We could (set! *warn-on-reflection* true) or #?(:clj (set! *warn-on-reflection* true)) in each namespace to be sure we catch all of it. Or this: https://ask.clojure.org/index.php/3787/theres-enable-warn-reflection-from-command-running-clojure (borkdude's comment)
(set! *warn-on-reflection* true)
#?(:clj (set! *warn-on-reflection* true))
A build profile adjustment sounds good, adding a lot of code for it would be not so ideal.
No branches or pull requests
Describe the feature you would like to request
There should be no reflection to use Datahike via GraalVM native-compiled binary
Describe the solution you would like
No reflection warnings
Describe alternatives you've considered
none
The text was updated successfully, but these errors were encountered: