diff options
author | Bin Yang <bin.yang@windriver.com> | 2018-05-16 10:20:30 +0800 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2018-05-16 10:20:30 +0800 |
commit | 8e08c9dc1f6303827a07294e4792d3d49fbbac3c (patch) | |
tree | 2d33c69f562d0c1510ba90b9095519b4715edecf /windriver/titanium_cloud/vesagent/tasks.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/tasks.py')
-rw-r--r-- | windriver/titanium_cloud/vesagent/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windriver/titanium_cloud/vesagent/tasks.py b/windriver/titanium_cloud/vesagent/tasks.py index 35ccfcaf..ac760ece 100644 --- a/windriver/titanium_cloud/vesagent/tasks.py +++ b/windriver/titanium_cloud/vesagent/tasks.py @@ -30,7 +30,7 @@ logger = logging.getLogger(__name__) @app.task(bind=True) def scheduleBacklogs(self, vimid): # make sure only one task runs here - logger.info("schedule with vimid:%" % (vimid)) + # cannot get vimid ? logger.info("schedule with vimid:%" % (vimid)) logger.debug("scheduleBacklogs starts") backlog_count, next_time_slot = processBacklogs() |