Skip to content

Commit 91c9cbb

Browse files
committed
[pterodactyl#1500] Correctly require disk_overallocate
1 parent 50c5ab9 commit 91c9cbb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
66
## v0.7.13 (Derelict Dermodactylus)
77
### Fixed
88
* Fixes a bug with the location update API endpoint throwing an error due to an unexected response value.
9+
* Fixes bug where node creation API endpoint was not correctly requiring the `disk_overallocate` key.
910

1011
### Changed
1112
* `allocation_limit` for servers now defaults to a null value, and is not required in PATCH/POST requests when adding

app/Http/Requests/Api/Application/Nodes/StoreNodeRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function rules(array $rules = null): array
3636
'memory',
3737
'memory_overallocate',
3838
'disk',
39-
'disk_overallocation',
39+
'disk_overallocate',
4040
'upload_size',
4141
'daemonListen',
4242
'daemonSFTP',

0 commit comments

Comments
 (0)