server: track reinstall failures differently from initial install failures (#4531)

This commit is contained in:
Lance Pioch 2022-11-21 15:53:54 -05:00 committed by GitHub
parent 039ad4abf0
commit a4f6870518
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View file

@ -115,6 +115,7 @@ class Server extends Model
public const STATUS_INSTALLING = 'installing';
public const STATUS_INSTALL_FAILED = 'install_failed';
public const STATUS_REINSTALL_FAILED = 'reinstall_failed';
public const STATUS_SUSPENDED = 'suspended';
public const STATUS_RESTORING_BACKUP = 'restoring_backup';