We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
allowIO
1 parent 06cc110 commit 6df4366Copy full SHA for 6df4366
src/main/kotlin/com/salesforce/revoman/internal/postman/PostmanSDK.kt
@@ -19,7 +19,6 @@ import org.graalvm.polyglot.Context
19
import org.graalvm.polyglot.HostAccess
20
import org.graalvm.polyglot.Source
21
import org.graalvm.polyglot.Value
22
-import org.graalvm.polyglot.io.IOAccess
23
import org.http4k.format.ConfigurableMoshi
24
25
/**
@@ -66,7 +65,8 @@ class PostmanSDK(
66
65
jsContext =
67
Context.newBuilder("js")
68
.allowExperimentalOptions(true)
69
- .allowIO(IOAccess.ALL)
+ // ! TODO 07 Dec 2024 gopala.akshintala: Using this for core compatability
+ .allowIO(true)
70
.options(options)
71
.allowHostAccess(HostAccess.ALL)
72
.allowHostClassLookup { true }
0 commit comments