Skip to content

Commit 4b5251d

Browse files
authored
Merge pull request #230 from Sambruk/bugfix/205
When using the --rebuild-cache feature, a failure to GET objects will now terminate the client
2 parents eee4e4b + 0e253e5 commit 4b5251d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
- Contents of the cache file can now be printed in JSON format (#54)
66
- New functionality for blacklisting users (#223)
77
- 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)
811

912
## v2.18 (2024-11-19)
1013
#### Features

src/main.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@ int main(int argc, char *argv[]) {
442442
all_scim_objects = scim_actions.get_all_objects_from_scim_server();
443443
} catch (const std::runtime_error& e) {
444444
std::cerr << "Failed to get objects from SCIM server (" << e.what() << ")" << std::endl;
445+
return EXIT_FAILURE;
445446
}
446447
}
447448

0 commit comments

Comments
 (0)