Prevents module from failing with "_mysql_exceptions.Warning: Sending passwords in plain text without SSL/TLS is extremely insecure." When not using SSL/TLS.

This commit is contained in:
James Martin 2014-09-09 19:44:40 -04:00
parent 0179c13e04
commit d458f9430b

View file

@ -366,3 +366,4 @@ def main():
# import module snippets # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
warnings.simplefilter("ignore")