Skip to content

Commit

Permalink
enable by default
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Aug 3, 2024
1 parent 1fb9363 commit 47dad0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/layouts/shortcodes/generated/core_configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tbody>
<tr>
<td><h5>async-file-write</h5></td>
<td style="word-wrap: break-word;">false</td>
<td style="word-wrap: break-word;">true</td>
<td>Boolean</td>
<td>Whether to enable asynchronous IO writing when writing files.</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,7 @@ public class CoreOptions implements Serializable {
public static final ConfigOption<Boolean> ASYNC_FILE_WRITE =
key("async-file-write")
.booleanType()
.defaultValue(false)
.defaultValue(true)
.withDescription(
"Whether to enable asynchronous IO writing when writing files.");

Expand Down

0 comments on commit 47dad0f

Please sign in to comment.