[
https://issues.apache.org/jira/browse/RANGER-4000?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Madhan Neethiraj updated RANGER-4000:
-------------------------------------
Attachment: RANGER-4000.patch
> unit test failure in JDK17
> --------------------------
>
> Key: RANGER-4000
> URL: https://issues.apache.org/jira/browse/RANGER-4000
> Project: Ranger
> Issue Type: Bug
> Components: plugins
> Reporter: Madhan Neethiraj
> Assignee: Madhan Neethiraj
> Priority: Major
> Fix For: 3.0.0, 2.4.0
>
> Attachments: RANGER-4000.patch
>
>
> Following expression in test_policyengine_geo.json fails with JDK17 (script
> engine from org.graalvm.js):
> {code:java}
> (!!country_code_format_long && !!country_code_format_dot &&
> (country_code_format_long == country_code_format_dot)){code}
>
> This expression should be updated with:
> {noformat}
> (country_code_format_long != null && country_code_format_dot != null &&
> (country_code_format_long == country_code_format_dot)) {noformat}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)