server: fix build modification not being persisted

This commit is contained in:
Matthew Penner 2021-09-12 15:27:02 -06:00
parent dbb061d6f3
commit 1880b83944
No known key found for this signature in database
GPG key ID: 030E4AB751DC756F

View file

@ -56,8 +56,6 @@ class BuildModificationService
*/
public function handle(Server $server, array $data)
{
$this->connection->beginTransaction();
/** @var \Pterodactyl\Models\Server $server */
$server = $this->connection->transaction(function() use ($server, $data) {
$this->processAllocations($server, $data);
@ -87,7 +85,7 @@ class BuildModificationService
// Because Wings always fetches an updated configuration from the Panel when booting
// a server this type of exception can be safely "ignored" and just written to the logs.
// Ideally this request succeedes so we can apply resource modifications on the fly, but
// Ideally this request succeeds, so we can apply resource modifications on the fly, but
// if it fails we can just continue on as normal.
if (!empty($updateData['build'])) {
try {