Revert change to node allocation selection query
This commit is contained in:
parent
4dfc7a0053
commit
1740b8dfb5
1 changed files with 1 additions and 2 deletions
|
@ -104,8 +104,7 @@ class NodeRepository extends EloquentRepository implements NodeRepositoryInterfa
|
||||||
|
|
||||||
$instance->setRelation(
|
$instance->setRelation(
|
||||||
'allocations',
|
'allocations',
|
||||||
$instance->allocations()->orderBy('ip', 'asc')->orderBy('port', 'asc')
|
$instance->allocations()->orderBy('ip', 'asc')->orderBy('port', 'asc')->with('server')->paginate(50)
|
||||||
->with('server')->paginate(2)
|
|
||||||
);
|
);
|
||||||
|
|
||||||
return $instance;
|
return $instance;
|
||||||
|
|
Loading…
Reference in a new issue