fix
This commit is contained in:
@@ -11,13 +11,8 @@ class ForceUpgrade extends Component
|
||||
public function upgrade()
|
||||
{
|
||||
try {
|
||||
$server_name = 'localhost';
|
||||
if (config('app.env') === 'local') {
|
||||
$server_name = 'testing-local-docker-container';
|
||||
}
|
||||
$server = Server::where('name', $server_name)->firstOrFail();
|
||||
$this->emit('updateInitiated');
|
||||
dispatch(new InstanceAutoUpdateJob(force: true, server: $server));
|
||||
dispatch(new InstanceAutoUpdateJob(force: true));
|
||||
} catch (\Exception $e) {
|
||||
return general_error_handler($e, $this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user