nickva commented on PR #4287:
URL: https://github.com/apache/couchdb/pull/4287#issuecomment-1336335490
Updated and added docs for it.
When adding docs a typo (`[jwt_key]` should be `[jwt_keys]`) so fixed that
along the way as well.
In addition manually tested that it's possible to set and get the value via
the `_config/` API:
```
% curl -XPUT -H'Content-Type:application/json'
$DB/_node/_local/_config/s1/k1 -d '"v1"'
% curl -XPUT -H'Content-Type:application/json'
$DB/_node/_local/_config/s1/k=1 -d '"v1"'
% curl -XPUT -H'Content-Type:application/json'
$DB/_node/_local/_config/s1/k=== -d '"v1"'
% curl -s $DB/_node/_local/_config/s1 | jq '.'
{
"k1": "v1",
"k=1": "v1",
"k===": "v1"
}
% cat dev/lib/node1/etc/local.ini
...
[s1]
k1 = v1
k=1 = v1
k=== = v1
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]