diff options
author | Evan Prodromou <evan@status.net> | 2010-01-10 13:54:26 -0800 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-10 13:54:26 -0800 |
commit | 8cf1ef862d9021c0c1015b7a5cccb8e26409057a (patch) | |
tree | 4ef5e91a1efe9042e9182f4a366c453665bc2fc7 | |
parent | f396701b6466749c09ce16b1e7f2f96c10b05cdd (diff) |
catch exceptions from snapshot
-rw-r--r-- | lib/snapshot.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/snapshot.php b/lib/snapshot.php index 2a10c6b93..a16087ac0 100644 --- a/lib/snapshot.php +++ b/lib/snapshot.php @@ -173,8 +173,12 @@ class Snapshot // XXX: Use OICU2 and OAuth to make authorized requests $reporturl = common_config('snapshot', 'reporturl'); - $request = HTTPClient::start(); - $request->post($reporturl, null, $this->stats); + try { + $request = HTTPClient::start(); + $request->post($reporturl, null, $this->stats); + } catch (Exception $e) { + common_log(LOG_WARNING, "Error in snapshot: " . $e->getMessage()); + } } /** |