From 5321385e35f878ff812d72f2320091d5df0eb913 Mon Sep 17 00:00:00 2001 From: jullang Date: Fri, 1 May 2026 23:22:13 +0200 Subject: [PATCH] config/README.md: mention string requirement for [repository.options] Clarified that all values in the table must be strings, including boolean values. --- config/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/README.md b/config/README.md index d8aafd17a..2a601dec1 100644 --- a/config/README.md +++ b/config/README.md @@ -158,6 +158,8 @@ Moreover, for opendal parameters (which need to be in lower snake case), you can use upper snake case and prefix with "OPENDAL_" as env variable, e.g. `application_key = "my-key"` becomes `OPENDAL_APPLICATION_KEY=my-key`. +Note that all values under this table must be strings, regardless of their logical type. For example `use-password = true` needs to be `use-password = "true"`. + | Attribute | Description | Default Value | Example Value | | ------------------- | ------------------------------------------------------------------ | ------------- | ------------------------------ | | post-create-command | Command to execute after creating a snapshot in the local backend. | Not set | "par2create -qq -n1 -r5 %file" |