From e7b952ac84e8cb4276a69fd65d9b02b20f5712de Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Wed, 22 Feb 2017 16:30:44 -0700 Subject: [PATCH] Display error message for activity processing --- api/v3/Job.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v3/Job.php b/api/v3/Job.php index 381ce17665..0b33d159d9 100644 --- a/api/v3/Job.php +++ b/api/v3/Job.php @@ -390,7 +390,7 @@ function civicrm_api3_job_fetch_activities($params) { } catch (Exception $e) { $lock->release(); - return civicrm_api3_create_error('Process Activities failed'); + return civicrm_api3_create_error($e->getMessage()); } } -- 2.25.1