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

Commit

Permalink
Correct reference to FBEHelper in BatchAPI Exception Handler (#2)
Browse files Browse the repository at this point in the history
Summary:
This corrects an "Undefined Property" error in the exception handler.

Pull Request resolved: #2

Reviewed By: zlik

Differential Revision: D25455026

Pulled By: xiangminxufsu

fbshipit-source-id: cb3d3f76
  • Loading branch information
danbtl authored and facebook-github-bot committed Dec 11, 2020
1 parent 791716e commit cf16d61
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit cf16d61

Please sign in to comment.