|
@@ -1,18 +1,17 @@
|
|
|
#!/usr/bin/env python3
|
|
|
# encoding:utf-8
|
|
|
-import json
|
|
|
+import concurrent.futures
|
|
|
import queue
|
|
|
+import random
|
|
|
import threading
|
|
|
-import concurrent.futures
|
|
|
-import traceback
|
|
|
|
|
|
import mmh3
|
|
|
-import random
|
|
|
+
|
|
|
import src.core.callcenter.esl.utils.esl_event_util as EslEventUtil
|
|
|
from src.core.callcenter.agent import AgentEventService
|
|
|
from src.core.callcenter.cache import Cache
|
|
|
from src.core.callcenter.enumeration import CallType
|
|
|
-from src.core.callcenter.esl.constant.event_names import CUSTOM, DETECTED_TONE
|
|
|
+from src.core.callcenter.esl.constant.event_names import DETECTED_TONE
|
|
|
|
|
|
|
|
|
class Callback(object):
|
|
@@ -42,7 +41,7 @@ class Callback(object):
|
|
|
else:
|
|
|
self.choose_thread_pool_executor(event).submit(self.agent_event_service.agent_event_channel, event, call_info, device_info)
|
|
|
except:
|
|
|
- traceback.print_exc()
|
|
|
+ pass
|
|
|
|
|
|
|
|
|
def stop(self):
|