-
Notifications
You must be signed in to change notification settings - Fork 64
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
MainCommandLineProcessor::pluginOptions accessed before thread local parameters have been set #301
Comments
Can you maybe show me a code snippet of how you are using a scripting compiler with KCT? I'd like to better understand what you're doing. Support for Kotlin script is very rudimentary at the moment. |
@breandan Could you please elaborate a bit? |
Sure, I have a Kotlin multiplatform project that uses this library to run a compiler test and @ileasile's Jupyter Kotlin kernel to run an integration test, both of which are included in the same |
I think what is happening here is that the kotlin jupyter kernel is doing its best to recreate the compilation environment that the calling code was compiled with and is scanning the classpath for libraries or plugins to load. But since you are calling the jupyter kernel from within the I will implement the suggestion of @ileasile and print a warning instead, since the classpath thing is not something that can be fixed easily on my part. |
Hi @tschuchortdev, thank you very much for investigating this issue! I am still unable to upgrade past |
When I use a scripting compiler in my project, it possibly does not set thread local parameters (maybe because it's not configured via Gradle). In that case I'm getting this exception. Stacktrace is the following (caught inside debug session):
https://gist.github.com/ileasile/2035f523bdc14248e5ce84e7a40747fa
I suggest a simple solution here: just don't throw an exception, but return an empty collection, maybe with logging a warning.
The text was updated successfully, but these errors were encountered: