1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Fix up date formatting when emitting facts to the fact service

This commit is contained in:
Matthew Jones 2015-02-23 10:11:10 -05:00
parent 70f2e5ea1d
commit 0db749ea19

View File

@ -30,13 +30,14 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
import sys import sys
import time
import datetime import datetime
from ansible import constants as C from ansible import constants as C
from ansible.cache.base import BaseCacheModule from ansible.cache.base import BaseCacheModule
try: try:
import zmq import zmq
except Import: except ImportError:
print("pyzmq is required") print("pyzmq is required")
sys.exit(1) sys.exit(1)
@ -46,7 +47,7 @@ class CacheModule(BaseCacheModule):
# This is the local tower zmq connection # This is the local tower zmq connection
self._tower_connection = C.CACHE_PLUGIN_CONNECTION self._tower_connection = C.CACHE_PLUGIN_CONNECTION
self.date_key = datetime.datetime.utcnow() self.date_key = time.mktime(datetime.datetime.utcnow().timetuple())
try: try:
self.context = zmq.Context() self.context = zmq.Context()
self.socket = self.context.socket(zmq.REQ) self.socket = self.context.socket(zmq.REQ)