Skip to content

Commit

Permalink
fixed max_wal_size for desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
le0pard committed Mar 23, 2018
1 parent f3ecf22 commit 2f1f123
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ title: PgTune
<!-- cpu begin -->
<div class="row">
<div class="large-12 columns">
<label for="pgtHarddriveValue">Number of CPUs
<label for="pgtCPUValue">Number of CPUs
<span class="right">
<span data-tooltip class="has-tip" title="Number of CPUs, which PostgreSQL can use">what is this?</span>
</span>
Expand Down
2 changes: 1 addition & 1 deletion source/javascripts/pgtune.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class Pgtune
web: (2048 * @constSize['MB'] / @constSize['KB']),
oltp: (4096 * @constSize['MB'] / @constSize['KB']),
dw: (8192 * @constSize['MB'] / @constSize['KB']),
desktop: (100 * @constSize['MB'] / @constSize['KB']),
desktop: (1024 * @constSize['MB'] / @constSize['KB']),
mixed: (2048 * @constSize['MB'] / @constSize['KB'])
}[@dbType]
# checkpoint_completion_target
Expand Down

0 comments on commit 2f1f123

Please sign in to comment.