Skip to content

Commit 37bbfd1

Browse files
committed
ACP2E-694: [Magento Cloud] REST API intermittently over writes the results of shipping results
1 parent d4fbdbc commit 37bbfd1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Sales/Model/RefundOrder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public function execute(
135135
) {
136136
return $this->orderMutex->execute(
137137
(int) $orderId,
138-
\Closure::fromCallable([$this, 'createRefund']),// phpstan:ignore
138+
\Closure::fromCallable([$this, 'createRefund']),
139139
[
140140
$orderId,
141141
$items,

app/code/Magento/Sales/Model/ShipOrder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public function execute(
151151
) {
152152
return $this->orderMutex->execute(
153153
(int)$orderId,
154-
\Closure::fromCallable([$this, 'createShipment']),// phpstan:ignore
154+
\Closure::fromCallable([$this, 'createShipment']),
155155
[
156156
$orderId,
157157
$items,

0 commit comments

Comments
 (0)