CC-3755: Found Exception in apache's error log
-Return error code so that python services automatically retry later.
This commit is contained in:
parent
b4cd429204
commit
22c5da1629
1 changed files with 7 additions and 1 deletions
|
@ -61,7 +61,13 @@ class Application_Model_Preference
|
||||||
." VALUES ($id, '$key', $value)";
|
." VALUES ($id, '$key', $value)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $con->exec($sql);
|
try {
|
||||||
|
$con->exec($sql);
|
||||||
|
} catch (Exception $e){
|
||||||
|
Logging::log("Could not connect to database.");
|
||||||
|
header('HTTP/1.0 503 Service Unavailable');
|
||||||
|
exit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function GetValue($key, $isUserValue = false){
|
public static function GetValue($key, $isUserValue = false){
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue