We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4130a6 commit 7ec5fbdCopy full SHA for 7ec5fbd
tests/FunctionalConnectorTest.php
@@ -77,6 +77,9 @@ public function testConnectTwiceWithoutHappyEyeBallsOnlySendsSingleDnsQueryDueTo
77
*/
78
public function connectionToRemoteTCP4n6ServerShouldResultInOurIP()
79
{
80
+ // max_nesting_level was set to 100 for PHP Versions < 5.4 which resulted in failing test for legacy PHP
81
+ ini_set('xdebug.max_nesting_level', 256);
82
+
83
$loop = Factory::create();
84
85
$connector = new Connector($loop, array('happy_eyeballs' => true));
0 commit comments