fix(init): improve error handling for deployment and template pulling processes
This commit is contained in:
@@ -68,23 +68,43 @@ class Init extends Command
|
|||||||
|
|
||||||
if (isCloud()) {
|
if (isCloud()) {
|
||||||
try {
|
try {
|
||||||
$this->cleanupUnnecessaryDynamicProxyConfiguration();
|
$this->cleanupInProgressApplicationDeployments();
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
echo "Could not cleanup inprogress deployments: {$e->getMessage()}\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
$this->pullTemplatesFromCDN();
|
$this->pullTemplatesFromCDN();
|
||||||
$this->pullChangelogFromGitHub();
|
|
||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
echo "Could not pull templates from CDN: {$e->getMessage()}\n";
|
echo "Could not pull templates from CDN: {$e->getMessage()}\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
$this->pullChangelogFromGitHub();
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
echo "Could not changelogs from github: {$e->getMessage()}\n";
|
||||||
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$this->cleanupInProgressApplicationDeployments();
|
$this->cleanupInProgressApplicationDeployments();
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
echo "Could not cleanup inprogress deployments: {$e->getMessage()}\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
$this->pullTemplatesFromCDN();
|
$this->pullTemplatesFromCDN();
|
||||||
$this->pullChangelogFromGitHub();
|
|
||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
echo "Could not pull templates from CDN: {$e->getMessage()}\n";
|
echo "Could not pull templates from CDN: {$e->getMessage()}\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
$this->pullChangelogFromGitHub();
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
echo "Could not changelogs from github: {$e->getMessage()}\n";
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
$localhost = $this->servers->where('id', 0)->first();
|
$localhost = $this->servers->where('id', 0)->first();
|
||||||
$localhost->setupDynamicProxyConfiguration();
|
$localhost->setupDynamicProxyConfiguration();
|
||||||
|
Reference in New Issue
Block a user