mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
use to_str instead of json.dumps when serializing k8s object for logging
This commit is contained in:
committed by
Chris Houseknecht
parent
6e6a6ff36b
commit
20d2a83e13
@@ -226,7 +226,7 @@ class KubernetesAnsibleModule(AnsibleModule):
|
||||
self.exit_json(**return_attributes)
|
||||
else:
|
||||
self.helper.log('Existing:')
|
||||
self.helper.log(json.dumps(existing.to_dict(), indent=4))
|
||||
self.helper.log(existing.to_str(), indent=4)
|
||||
self.helper.log('\nDifferences:')
|
||||
self.helper.log(json.dumps(diff, indent=4))
|
||||
# Differences exist between the existing obj and requested params
|
||||
|
||||
Reference in New Issue
Block a user