Created
March 31, 2010 19:32
-
-
Save davedash/350765 to your computer and use it in GitHub Desktop.
a.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/apps/search/client.py b/apps/search/client.py | |
index 2cb0813..7f38415 100644 | |
--- a/apps/search/client.py | |
+++ b/apps/search/client.py | |
@@ -1,4 +1,6 @@ | |
import re | |
+import socket | |
+import logging | |
from django.conf import settings | |
from django.utils import translation | |
@@ -13,6 +15,8 @@ from .utils import convert_version, crc32 | |
m_dot_n_re = re.compile(r'^\d+\.\d+$') | |
SEARCH_ENGINE_APP = 99 | |
+log = logging.getLogger('z.sphinx') | |
+ | |
def get_category_id(category, application): | |
""" | |
@@ -222,7 +226,12 @@ class Client(object): | |
# * Num apps filter | |
# * Logging | |
- result = sc.Query(term) | |
+ try: | |
+ result = sc.Query(term) | |
+ except socket.timeout: | |
+ log.error("Query has timed out.") | |
+ raise SearchError("Query has timed out.") | |
+ except Exception, e: | |
+ log.error("Sphinx threw an unknown exception.") | |
+ raise SearchError("Sphinx threw an unknown exception.") | |
+ | |
self.total_found = result['total_found'] if result else 0 | |
if sc.GetLastError(): |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment