Skip to content
This repository has been archived by the owner on Apr 30, 2023. It is now read-only.

Correct reference to FBEHelper in BatchAPI Exception Handler #2

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function generateProductRequestData($accessToken = null)
$exceptions++;
// Don't overload the logs, log the first 3 exceptions
if ($exceptions <= 3) {
$this->_fbeHelper->logException($e);
$this->fbeHelper->logException($e);
}
// If it looks like a systemic failure : stop feed generation
if ($exceptions > 100) {
Expand Down