Skip to content

Commit

Permalink
Added error message on Ansible Runner exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Abarca committed Jul 1, 2024
1 parent 647013d commit c3fc8c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ public void processWithGatherFacts(NodeSetImpl nodes, AnsibleRunner.AnsibleRunne
try {
runner.run();
} catch (Exception e) {
throw new ResourceModelSourceException(e.getMessage(),e);
throw new ResourceModelSourceException("Failed Ansible Runner execution",e);
}

try {
Expand Down

0 comments on commit c3fc8c5

Please sign in to comment.