chore: Update server check job middleware to use server ID instead of UUID
This commit is contained in:
parent
577927a20b
commit
5d476e3924
1 changed files with 2 additions and 2 deletions
|
|
@ -47,12 +47,12 @@ public function __construct(public Server $server) {}
|
|||
|
||||
public function middleware(): array
|
||||
{
|
||||
return [(new WithoutOverlapping($this->server->uuid))];
|
||||
return [(new WithoutOverlapping($this->server->id))];
|
||||
}
|
||||
|
||||
public function uniqueId(): int
|
||||
{
|
||||
return $this->server->uuid;
|
||||
return $this->server->id;
|
||||
}
|
||||
|
||||
public function handle()
|
||||
|
|
|
|||
Loading…
Reference in a new issue