mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
(fix): remove swallowed exception around tracking call
This commit is contained in:
@@ -636,7 +636,6 @@ class Install extends Action
|
||||
|
||||
// Signal completion before tracking so the SSE stream
|
||||
// finishes and the frontend can redirect immediately.
|
||||
// Tracking is best-effort and must never block the user.
|
||||
if ($onComplete) {
|
||||
try {
|
||||
$onComplete();
|
||||
@@ -644,10 +643,7 @@ class Install extends Action
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
$this->trackSelfHostedInstall($input, $isUpgrade, $version, $account);
|
||||
} catch (\Throwable) {
|
||||
}
|
||||
$this->trackSelfHostedInstall($input, $isUpgrade, $version, $account);
|
||||
|
||||
if ($isCLI) {
|
||||
Console::success('Appwrite installed successfully');
|
||||
|
||||
Reference in New Issue
Block a user