We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eee4e4b + 0e253e5 commit 4b5251dCopy full SHA for 4b5251d
CHANGELOG.md
@@ -5,6 +5,9 @@
5
- Contents of the cache file can now be printed in JSON format (#54)
6
- New functionality for blacklisting users (#223)
7
- Space for the cache file is now pre-allocated before SCIM operations start (#197)
8
+
9
+#### Bugfixes
10
+ - When using the --rebuild-cache feature, a failure to GET objects will now terminate the client (#205)
11
12
## v2.18 (2024-11-19)
13
#### Features
src/main.cpp
@@ -442,6 +442,7 @@ int main(int argc, char *argv[]) {
442
all_scim_objects = scim_actions.get_all_objects_from_scim_server();
443
} catch (const std::runtime_error& e) {
444
std::cerr << "Failed to get objects from SCIM server (" << e.what() << ")" << std::endl;
445
+ return EXIT_FAILURE;
446
}
447
448
0 commit comments