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
When trying to access the ThreadManager in development (using appengine-magic.core/serve), the import works but this exception is thrown:
clojure.lang.Compiler$CompilerException: java.lang.RuntimeException: Unable to find static field: createThreadForCurrentRequest in class com.google.appengine.api.ThreadManager, compiling: x
If run the exact same code via the dev_appserver.sh script, it works just fine. I guess that some part of the threading stuff is not getting initialized by appengine-magic?
The text was updated successfully, but these errors were encountered:
It certainly looks that way. The ThreadManager is a 1.6.4 feature, which is not currently supported by appengine-magic. I'll try to find time in the next few days to bring the library up-to-date.
When trying to access the ThreadManager in development (using
appengine-magic.core/serve
), the import works but this exception is thrown:clojure.lang.Compiler$CompilerException: java.lang.RuntimeException: Unable to find static field: createThreadForCurrentRequest in class com.google.appengine.api.ThreadManager, compiling: x
If run the exact same code via the dev_appserver.sh script, it works just fine. I guess that some part of the threading stuff is not getting initialized by appengine-magic?
The text was updated successfully, but these errors were encountered: