This commit is contained in:
2021-05-18 14:12:08 +08:00
parent f065560c68
commit d91bc28aec
+3 -1
View File
@@ -249,7 +249,9 @@ class ServerInotify extends Process
*/ */
public function trigger_reload() public function trigger_reload()
{ {
exec(PHP_BINARY . ' snowflake runtime:builder'); exec(PHP_BINARY . ' snowflake runtime:builder', $output);
var_dump(implode(PHP_EOL, $output));
Snowflake::reload(); Snowflake::reload();
} }