diff options
Diffstat (limited to 'windriver/titanium_cloud/vesagent/vesagent_ctrl.py')
-rw-r--r-- | windriver/titanium_cloud/vesagent/vesagent_ctrl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/windriver/titanium_cloud/vesagent/vesagent_ctrl.py b/windriver/titanium_cloud/vesagent/vesagent_ctrl.py index fbdd93f8..54b770bf 100644 --- a/windriver/titanium_cloud/vesagent/vesagent_ctrl.py +++ b/windriver/titanium_cloud/vesagent/vesagent_ctrl.py @@ -23,7 +23,7 @@ from rest_framework.views import APIView from django.conf import settings from common.msapi import extsys from titanium_cloud.vesagent.tasks import scheduleBacklogs -from titanium_cloud.vesagent.event_domain.fault_vm import buildBacklog_fault_vm +from titanium_cloud.vesagent.event_domain import fault_vm from django.core.cache import cache @@ -393,7 +393,7 @@ class VesAgentCtrl(APIView): try: if backlog_input["domain"] == "fault" and backlog_input["type"] == "vm": - return buildBacklog_fault_vm(vimid, backlog_input) + return fault_vm.buildBacklog_fault_vm(vimid, backlog_input) else: self._logger.warn("return with failure: unsupported backlog domain:%s, type:%s" % (backlog_input["domain"], backlog_input["type"] == "vm")) |