Thomas Pegeot

Results 4 comments of Thomas Pegeot

Hello, I tried your fix for the null pointer but I couldn't compile the code as the call to the "continue" statement is done outside of a loop. Are you...

Modifying the java code to set maxAliasesForCollections to an higher value (like 1000) seems to fix the problem. But I keep having java.lang.NullPointerException like in https://github.com/rundeck/rundeck/issues/9278#issuecomment-2363156231

> Hi @tpegeot Is it possible for you to share a version of your inventory that produces the issue? Thanks Luis @ltamaster , [ldimaur0](https://github.com/ldimaur0) uploaded our inventory. As mentioned earlier,...

In src/main/groovy/com/rundeck/plugins/ansible/plugin/AnsibleResourceModelSource.java, I modified the ansibleInventoryList function : ``` public void ansibleInventoryList(NodeSetImpl nodes, AnsibleRunner.AnsibleRunnerBuilder runnerBuilder) throws ResourceModelSourceException { int codePointLimit = yamlDataSize * 1024 * 1024; + int maxAliasesForCollections =...