I run this code on localhost (mac os): ``` $loop = \React\EventLoop\Factory::create(); Discovery::lookup($loop)->then(function (array $list) { print_r($list); }); $loop->run(); ``` but nothing is printed. What can be wrong?