This commit is contained in:
2021-07-17 02:16:49 +08:00
parent 878b167d95
commit 51c3637ed2
18 changed files with 912 additions and 420 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ class ServerTask
} catch (\Throwable $exception) {
$data = [$exception->getMessage()];
} finally {
$server->finish(serialize($data));
$server->finish($data);
}
}
@@ -48,7 +48,7 @@ class ServerTask
} catch (\Throwable $exception) {
$data = [$exception->getMessage()];
} finally {
$server->finish(serialize($data));
$server->finish($data);
}
}