Skip to content

Commit bd29156

Browse files
authored
Merge branch 'magento-commerce:develop' into ACQE-2580
2 parents 12f22eb + 0cd8a72 commit bd29156

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Magento Functional Testing Framework Changelog
22
================================================
3+
4+
4.3.1
5+
---------
6+
### Fixes
7+
* Fixed cannot bind closure to scope of internal class Exception.
8+
* Fixed broken Mftf doctor command.
9+
310
4.3.0
411
---------
512
### Enhancements

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/magento2-functional-testing-framework",
33
"description": "Magento2 Functional Testing Framework",
44
"type": "library",
5-
"version": "4.3.0",
5+
"version": "4.3.1",
66
"license": "AGPL-3.0",
77
"keywords": ["magento", "automation", "functional", "testing"],
88
"config": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Magento/FunctionalTestingFramework/Module/MagentoWebDriver.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,6 +1033,10 @@ private function executeCronjobs($cronGroups, $timeout, $arguments): string
10331033
{
10341034
$cronGroups = array_filter($cronGroups);
10351035

1036+
if (isset($cronGroups[0]) && !isset($cronGroups[1])) {
1037+
$arguments .= ' --bootstrap=standaloneProcessStarted=1';
1038+
}
1039+
10361040
$waitFor = $this->getCronWait($cronGroups);
10371041

10381042
if ($waitFor) {

0 commit comments

Comments
 (0)