Binbin
d309b9b235
Make configs dir/dbfilename/cluster-config-file reject empty string ( #636 )
...
Until now, these configuration items allowed typing empty strings,
but empty strings behave strangely.
Empty dir will fail in chdir with No such file or directory:
```
./src/valkey-server --dir ""
*** FATAL CONFIG FILE ERROR (Version 255.255.255) ***
Reading the configuration file, at line 2
>>> 'dir ""'
No such file or directory
```
Empty dbfilename will cause shutdown to fail since it will
always fail in rdb save:
```
./src/valkey-server --dbfilename ""
* User requested shutdown...
* Saving the final RDB snapshot before exiting.
# Error moving temp DB file temp-19530.rdb on the final destination (in server root dir /xxx/xxx/valkey): No such file or directory
# Error trying to save the DB, can't exit.
# Errors trying to shut down the server. Check the logs for more information.
```
Empty cluster-config-file will fail in clusterLockConfig:
```
./src/valkey-server --cluster-enabled yes --cluster-config-file ""
Can't open in order to acquire a lock: No such file or directory
```
With this patch, now we will just reject it in config set like:
```
*** FATAL CONFIG FILE ERROR (Version 255.255.255) ***
Reading the configuration file, at line 2
>>> 'xxx ""'
xxx can't be empty
```
Signed-off-by: Binbin <binloveplay1314@qq.com>
2024-06-14 01:47:20 +02:00
..
2024-06-13 06:09:01 +02:00
2024-06-07 14:21:33 -07:00
2024-06-03 12:22:06 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-04-10 08:59:45 +02:00
2024-06-12 12:52:18 +02:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-12 12:52:18 +02:00
2024-05-08 20:58:53 +02:00
2024-05-22 23:24:12 -07:00
2024-05-28 09:27:51 -07:00
2023-03-14 20:26:21 +02:00
2024-05-28 21:49:50 -07:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2024-04-05 16:59:55 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-10 12:30:57 -07:00
2024-06-14 00:58:03 +02:00
2024-06-07 14:21:33 -07:00
2024-06-07 20:32:27 -07:00
2024-05-22 23:24:12 -07:00
2024-06-13 06:09:01 +02:00
2024-05-22 23:24:12 -07:00
2024-06-14 01:47:20 +02:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-04-09 10:24:03 +02:00
2015-07-26 15:17:18 +02:00
2024-05-02 20:00:04 -07:00
2024-05-02 20:00:04 -07:00
2024-05-08 12:17:32 -07:00
2024-04-30 19:32:01 -07:00
2024-04-30 19:32:01 -07:00
2024-04-30 19:32:01 -07:00
2024-06-07 14:21:33 -07:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-10 12:30:57 -07:00
2024-06-03 12:22:06 -07:00
2024-05-12 16:58:50 -07:00
2024-05-12 16:58:50 -07:00
2024-06-12 12:52:18 +02:00
2024-06-07 14:21:33 -07:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2023-09-28 09:21:23 +03:00
2024-06-07 01:40:55 +02:00
2024-06-03 12:22:06 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2015-07-26 15:17:18 +02:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2024-05-08 12:38:50 -07:00
2024-06-10 12:30:57 -07:00
2024-06-10 12:30:57 -07:00
2024-06-07 20:32:27 -07:00
2024-05-22 23:24:12 -07:00
2024-05-28 09:27:51 -07:00
2024-05-22 23:24:12 -07:00
2024-06-12 12:52:18 +02:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2020-05-05 23:35:08 -04:00
2021-11-16 13:12:25 +02:00
2021-11-16 13:12:25 +02:00
2021-11-16 13:12:25 +02:00
2021-11-16 13:12:25 +02:00
2024-06-09 15:09:08 -07:00
2024-05-22 23:24:12 -07:00
2024-04-05 21:15:57 -07:00
2024-06-09 11:49:05 -07:00
2024-05-22 23:24:12 -07:00
2023-05-02 17:31:32 -07:00
2020-12-23 15:52:07 +02:00
2020-12-23 15:52:07 +02:00
2024-05-22 23:24:12 -07:00
2024-06-12 12:52:18 +02:00
2024-06-12 12:52:18 +02:00
2024-06-12 12:52:18 +02:00
2024-04-09 10:24:03 +02:00
2024-04-09 10:24:03 +02:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-04-03 18:45:23 -07:00
2017-03-27 16:37:22 +02:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-07 20:32:27 -07:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-12 12:52:18 +02:00
2024-06-12 12:52:18 +02:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-07 14:21:33 -07:00
2024-06-07 01:40:55 +02:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2024-06-12 12:52:18 +02:00
2024-05-22 23:24:12 -07:00
2024-06-02 20:55:54 -07:00
2024-06-12 12:52:18 +02:00
2024-06-12 12:52:18 +02:00
2024-06-09 11:49:05 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2020-10-25 14:14:05 +02:00
2021-02-23 12:57:45 +02:00
2024-05-09 19:44:40 -07:00
2024-05-09 19:44:40 -07:00
2021-11-11 13:51:33 +02:00
2021-07-10 10:04:54 -05:00
2023-10-02 18:58:44 -07:00
2024-05-22 23:24:12 -07:00
2024-05-09 14:29:18 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2014-07-02 16:31:22 +02:00
2024-06-07 14:21:33 -07:00
2024-05-06 00:09:01 -07:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2022-05-22 17:10:31 +03:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2024-06-03 12:22:06 -07:00
2024-05-22 23:24:12 -07:00
2024-05-28 09:27:51 -07:00
2024-05-22 23:24:12 -07:00
2024-06-07 14:21:33 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-12 12:52:18 +02:00
2024-05-27 23:03:34 +02:00
2020-12-06 14:54:34 +02:00
2024-06-12 12:52:18 +02:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-06-12 12:52:18 +02:00
2024-06-07 14:21:33 -07:00
2024-04-17 14:38:21 +02:00
2024-06-12 12:52:18 +02:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-22 23:24:12 -07:00
2024-05-28 09:27:51 -07:00
2024-05-22 23:24:12 -07:00