John McAndrews
John McAndrews
pg code in question: ``` import { PgPool } from '@vertx/pg-client' import { PgConnectOptions } from '@vertx/pg-client/options' import { PoolOptions } from '@vertx/sql-client/options' import { makeSuccess, makeError, document, nv }...
the exception happens at deployment. we have some wrapper code around deployment but that has been stable and untouched to this point.
I def remember seeing logs about blocking so I know that was something happening for me during startup, how it's only now turning into a brick wall is weird. but...
still throwing: ``` Unhandled exception caused by java.lang.IllegalStateException: Multi threaded access requested by thread Thread[vert.x-eventloop-thread-1,5,main] but is not allowed for language(s) js. at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotEngineException.illegalState(PolyglotEngineException.java:129) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.throwDeniedThreadAccess(PolyglotContextImpl.java:940) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.checkAllThreadAccesses(PolyglotContextImpl.java:799) at org.graalvm.truffle/com.oracle.truffle.polyglot.PolyglotContextImpl.enterThreadChanged(PolyglotContextImpl.java:629)...
ok, so it turns out the test branch gets me what I needed, but in the course of modifying I uncommented code that gave the same amount of those exceptions...
ideally I'd love to just be able to point webUI at a folder containing a built copy of my vue app. serving the static assets within the same script doesn't...