Skip to content

Commit 0a5ffca

Browse files
committed
Improved message in rejection buckets
1 parent 52a0754 commit 0a5ffca

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/CustomerExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function extract(): iterable
7575
],
7676
);
7777
yield new RejectionResultBucket(
78-
'It seems that there are errors in the network',
78+
'There are some network difficulties. We could not properly connect to the Magento API. There is nothing we could no to fix this currently. Please contact the Magento administrator.',
7979
$exception,
8080
);
8181
} catch (\Exception $exception) {

src/InvoiceExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function extract(): iterable
7575
]
7676
);
7777
yield new RejectionResultBucket(
78-
'It seems that there are errors in the network',
78+
'There are some network difficulties. We could not properly connect to the Magento API. There is nothing we could no to fix this currently. Please contact the Magento administrator.',
7979
$exception,
8080
);
8181
} catch (\Exception $exception) {

src/OrderExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function extract(): iterable
7575
]
7676
);
7777
yield new RejectionResultBucket(
78-
'It seems that there are errors in the network',
78+
'There are some network difficulties. We could not properly connect to the Magento API. There is nothing we could no to fix this currently. Please contact the Magento administrator.',
7979
$exception,
8080
);
8181
} catch (\Exception $exception) {

src/ProductExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function extract(): iterable
7575
]
7676
);
7777
yield new RejectionResultBucket(
78-
'It seems that there are errors in the network',
78+
'There are some network difficulties. We could not properly connect to the Magento API. There is nothing we could no to fix this currently. Please contact the Magento administrator.',
7979
$exception,
8080
);
8181
} catch (\Exception $exception) {

0 commit comments

Comments
 (0)