Replies: 2 comments 2 replies
-
@danathala that has been fixed in testing framework some time ago https://github.com/magento/magento2-functional-testing-framework/blob/develop/CHANGELOG.md#321 Try updating the module: |
Beta Was this translation helpful? Give feedback.
2 replies
-
echo "Waiting for connection to Elasticsearch..." |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Fatal error: Uncaught Error: Call to undefined function xdebug_disable() in /var/www/html/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/_bootstrap.php:81
tried to remove this Line - xdebug_disable but nothing works. The issue happened after I ran bin/update
after bin/update got the above error. Running php version 7.4
I tired to add this fix but nothing works
vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/_bootstrap.php
From :-
if (!(bool)$debugMode && extension_loaded('xdebug')) {
xdebug_disable();
}
To :-
if (!(bool)$debugMode && extension_loaded('xdebug')) {
if (function_exists('xdebug_disable')) {
xdebug_disable();
}
}
Beta Was this translation helpful? Give feedback.
All reactions