Skip to content

Commit

Permalink
Merge pull request #681 from akeneo/release/104.3.5
Browse files Browse the repository at this point in the history
Fix undefined method
  • Loading branch information
magentix committed Mar 4, 2024
2 parents 51c4842 + 7f89163 commit 98902f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -478,3 +478,6 @@

### Version 104.3.4 :
* PGTO-419: Add possibility to use InnoDB as temporary table format

### Version 104.3.5 :
* Fix undefined method
2 changes: 1 addition & 1 deletion Job/Product.php
Original file line number Diff line number Diff line change
Expand Up @@ -4483,7 +4483,7 @@ protected function getModelCompletenessFilter(string $scope)
public function getFamiliesToImport(): array
{
if (!$this->akeneoClient) {
$this->akeneoClient = $this->getAkeneoClient();
$this->akeneoClient = $this->jobExecutor->getAkeneoClient();
if (!$this->akeneoClient) {
return [];
}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"nyholm/psr7": "^1.5"
},
"type": "magento2-module",
"version": "104.3.4",
"version": "104.3.5",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down

0 comments on commit 98902f7

Please sign in to comment.