LibConfig+ConfigServer: Make remove_key() synchronous

Previously, when removing keys, the config utility terminated its
connection before changes could be synced.
This commit is contained in:
thankyouverycool 2022-09-23 09:36:47 -04:00 committed by Ali Mohammad Pur
commit 6f394d9ee2
Notes: sideshowbarker 2024-07-17 06:31:36 +09:00
4 changed files with 4 additions and 4 deletions

View file

@ -14,5 +14,5 @@ endpoint ConfigServer
write_string_value(String domain, String group, String key, String value) => ()
write_i32_value(String domain, String group, String key, i32 value) => ()
write_bool_value(String domain, String group, String key, bool value) => ()
remove_key(String domain, String group, String key) =|
remove_key_entry(String domain, String group, String key) => ()
}