You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An unhandled exception occured while attemping to modify the default connection for this server.
On the Daemon:
02:35:57.541Z INFO pterodactyl.daemon: New configiguration has changes to the server's build settings. Server has been queued for rebuild on next boot. (server=94545fd1-ae41-43c5-8842-3f5e30465691)
(also, typo there, configiguration)
In the changeBuild() function of the ServerRepository we are calling
$server->save();
DB::commit();
after we call the $client->request() method which negates the point of error handling there. We should be trying $server->save(), then calling the request, and then calling DB::commit(); once both of those succeed.
The text was updated successfully, but these errors were encountered:
On the Panel:
On the Daemon:
(also, typo there,
configiguration
)In the
changeBuild()
function of theServerRepository
we are callingafter we call the
$client->request()
method which negates the point of error handling there. We should be trying$server->save()
, then calling the request, and then callingDB::commit();
once both of those succeed.The text was updated successfully, but these errors were encountered: