We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75254eb commit e70ceeaCopy full SHA for e70ceea
instrumentation/nocode/src/main/java/com/splunk/opentelemetry/instrumentation/nocode/JexlEvaluator.java
@@ -42,6 +42,12 @@ public JexlEvaluator() {
42
.permissions(JexlPermissions.UNRESTRICTED)
43
// don't support ant syntax
44
.antish(false)
45
+ // This api is terribly named but false means "null deref throws exception rather than log warning"
46
+ .safe(false)
47
+ // We will catch our own exceptions
48
+ .silent(false)
49
+ // Don't assume unknown methods/variables mean "null"
50
+ .strict(true)
51
.create();
52
}
53
0 commit comments