Skip to content

Commit

Permalink
fix: no space accepted around = when assigning variables (#4)
Browse files Browse the repository at this point in the history
Co-authored-by: Mikael Larsson <[email protected]>
  • Loading branch information
mlromramse and Mikael Larsson authored Dec 20, 2023
1 parent 31e60b9 commit 7df3524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgtune.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ set_maintenance_work_mem() {
local mem_limit=$(( 2 * $GB / $KB ))
if [ "$maintenance_work_mem" -gt "$mem_limit" ]
then
maintenance_work_mem = $mem_limit
maintenance_work_mem=$mem_limit
fi
}

Expand Down

0 comments on commit 7df3524

Please sign in to comment.