You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, I am building a graal native executable and part of its dependencies use environ.
The issue is that the defonce env gets compiled into that native executable and is initialized at build time (which is something we have to do for Clojure programs). I think that is unavoidable really but for our systems I would like to call read-env at runtime but it is private.
Would you consider making read-env public?
The text was updated successfully, but these errors were encountered:
I copied environ and exposed read-env. So we don't depend on this library any more. Then we have a system to save the program config to a variable that gets scanned by graal's compiler and hence saved as a static variable in the system and then use read-env to apply only the environmental changes to the static variable.
Hey, I am building a graal native executable and part of its dependencies use environ.
The issue is that the
defonce env
gets compiled into that native executable and is initialized at build time (which is something we have to do for Clojure programs). I think that is unavoidable really but for our systems I would like to call read-env at runtime but it is private.Would you consider making
read-env
public?The text was updated successfully, but these errors were encountered: