diff options
author | 2018-05-16 10:20:30 +0800 | |
---|---|---|
committer | 2018-05-16 10:20:30 +0800 | |
commit | 8e08c9dc1f6303827a07294e4792d3d49fbbac3c (patch) | |
tree | 2d33c69f562d0c1510ba90b9095519b4715edecf /windriver/titanium_cloud/vesagent/vespublish.py | |
parent | be067e5c7c253ad4509aa173d4fc5782209fe288 (diff) |
Fix bugs for GET API and tasks
Change-Id: If1748109359b9180aac46e14d3e4261def171460
Issue-ID: Issue-ID: MULTICLOUD-232
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'windriver/titanium_cloud/vesagent/vespublish.py')
-rw-r--r-- | windriver/titanium_cloud/vesagent/vespublish.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windriver/titanium_cloud/vesagent/vespublish.py b/windriver/titanium_cloud/vesagent/vespublish.py index df77e30b..ab0155c2 100644 --- a/windriver/titanium_cloud/vesagent/vespublish.py +++ b/windriver/titanium_cloud/vesagent/vespublish.py @@ -29,7 +29,7 @@ def publishAnyEventToVES(ves_subscription, event): if endpoint: try: - logger.info("publish event to VES: %s", ) + logger.info("publish event to VES: %s", endpoint) headers = {'Content-Type': 'application/json'} request = urllib2.Request(url=endpoint, headers=headers, data=json.dumps(event)) time.sleep(1) |