Skip to content

Commit

Permalink
Merge pull request #72 from CodistoConnect/dd-revert-nonedb-sync
Browse files Browse the repository at this point in the history
updates to remove the nonedb from sync model
  • Loading branch information
jschiller committed Nov 24, 2020
2 parents 432f080 + a875b78 commit f14f200
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Model/Sync.php
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public function templateRead($templateDb)
$update->bindParam(3, $lastModified);
$update->execute();

$countQuery = $noneDb->query('SELECT changes()');
$countQuery = $db->query('SELECT changes()');
$updateCount = (int)$countQuery->fetchColumn();
$countQuery->closeCursor();

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name" : "codisto/codisto-connect",
"description" : "Codisto LINQ Magento 2 Extension",
"type" : "magento2-module",
"version" : "1.91.39",
"version" : "1.91.40",
"license" : [
"OSL-3.0"
],
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Codisto_Connect" schema_version="0" active="true" setup_version="1.91.39">
<module name="Codisto_Connect" schema_version="0" active="true" setup_version="1.91.40">
</module>
</config>

0 comments on commit f14f200

Please sign in to comment.