mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-06-02 14:27:08 +00:00
circonus_annotation: fix broken import, update requirements
This commit is contained in:
parent
24b58ba109
commit
f69333b80d
2 changed files with 9 additions and 5 deletions
|
|
@ -22,9 +22,7 @@ description:
|
|||
author: "Nick Harring (@NickatEpic)"
|
||||
version_added: 2.0
|
||||
requirements:
|
||||
- urllib3
|
||||
- requests
|
||||
- time
|
||||
- requests (either >= 2.0.0 for Python 3, or >= 1.0.0 for Python 2)
|
||||
notes:
|
||||
- Check mode isn’t supported.
|
||||
options:
|
||||
|
|
@ -143,7 +141,11 @@ import json
|
|||
import time
|
||||
import traceback
|
||||
|
||||
import requests
|
||||
try:
|
||||
import requests
|
||||
HAS_REQUESTS = True
|
||||
except ImportError:
|
||||
HAS_REQUESTS = False
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils._text import to_native
|
||||
|
|
@ -201,6 +203,9 @@ def main():
|
|||
)
|
||||
)
|
||||
|
||||
if not HAS_REQUESTS:
|
||||
module.fail_json(msg='requests is required for this module')
|
||||
|
||||
annotation = create_annotation(module)
|
||||
try:
|
||||
resp = post_annotation(annotation, module.params['api_key'])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue