forked from kanidm/kanidm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Orca is happy, everyone is happy * added model selection option for Orca and properly included opt.rs inside the file tree instead of using `include!` macro * added variable login delay to both read and write models! * Clippy and William are happier this way * fixed toml syntax for member count and removed old person_count_by_group inside ProfileBuilder * added strong typing for group names, in the future this should help adding CLI support * added the `latency_measurer` model and improved the ActorModel trait * Fixed lots of bugs and made clippy happier * updated all models to use random backoff time for the login transition
- Loading branch information
Showing
18 changed files
with
997 additions
and
118 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
control_uri = "https://localhost:8443" | ||
admin_password = "" | ||
idm_admin_password = "" | ||
seed = -1236045086759770365 | ||
control_uri = "https://localhost:8443" | ||
extra_uris = [] | ||
warmup_time = 10 | ||
test_time = 180 | ||
group_count = 5 | ||
idm_admin_password = "" | ||
model = "writer" | ||
person_count = 500 | ||
seed = -1236045086759770365 | ||
test_time = 60 | ||
thread_count = 20 | ||
warmup_time = 10 | ||
|
||
[group.role_people_self_mail_write] | ||
member_count = 500 | ||
[group.role_people_self_set_password] | ||
member_count = 0 | ||
[group.role_people_pii_reader] | ||
member_count = 0 | ||
[group.role_people_self_read_profile] | ||
member_count = 0 | ||
[group.role_people_self_read_member_of] | ||
member_count = 0 | ||
[group.role_people_group_admin] | ||
member_count = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.