Skip to content

Commit

Permalink
mxqi: policy: Reduce memory limit to 200G
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Jun 6, 2024
1 parent e80959e commit f25149f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mxqi/mxqi
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ sub parse_time_with_policy {
sub parse_size_with_memory_policy {
my ($in) = @_;
my $mbytes = parse_size($in);
if ($mbytes > 600*1024) {
die "mxqi: invalid memory size \"$in\": maximum allowed memory for mxqi is 600G\n"
if ($mbytes > 200*1024) {
die "mxqi: invalid memory size \"$in\": maximum allowed memory for mxqi is 200G\n"
}
if ($mbytes < 10*1024) {
die "mxqi: invalid memory size \"$in\": minimum allowed memory for mxqi is 10G\n"
Expand Down

0 comments on commit f25149f

Please sign in to comment.