File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 5
5
- Contents of the cache file can now be printed in JSON format (#54 )
6
6
- New functionality for blacklisting users (#223 )
7
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 )
8
11
9
12
## v2.18 (2024-11-19)
10
13
#### Features
Original file line number Diff line number Diff line change @@ -442,6 +442,7 @@ int main(int argc, char *argv[]) {
442
442
all_scim_objects = scim_actions.get_all_objects_from_scim_server ();
443
443
} catch (const std::runtime_error& e) {
444
444
std::cerr << " Failed to get objects from SCIM server (" << e.what () << " )" << std::endl;
445
+ return EXIT_FAILURE;
445
446
}
446
447
}
447
448
You can’t perform that action at this time.
0 commit comments