mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-09 23:12:06 -03:30
fix: updating export option text (#42621)
closes: #42011 Signed-off-by: Steve Hawkins <shawkins@redhat.com>
This commit is contained in:
parent
bb7e5ab7b2
commit
c7ae7185e6
@ -21,7 +21,7 @@ public class ExportOptions {
|
||||
|
||||
public static final Option<String> FILE = new OptionBuilder<>("file", String.class)
|
||||
.category(OptionCategory.EXPORT)
|
||||
.description("Set the path to a file that will be created with the exported data. To export more than 500 users, export to a directory with different files instead.")
|
||||
.description("Set the path to a file that will be created with the exported data. To export more than 50000 users, export to a directory with different files instead.")
|
||||
.buildTime(false)
|
||||
.build();
|
||||
|
||||
@ -40,7 +40,7 @@ public class ExportOptions {
|
||||
public static final Option<Integer> USERS_PER_FILE = new OptionBuilder<>("users-per-file", Integer.class)
|
||||
.category(OptionCategory.EXPORT)
|
||||
.defaultValue(50)
|
||||
.description("Set the number of users per file. It is used only if 'users' is set to 'different_files'. Increasing this number leads to exponentially increasing export times.")
|
||||
.description("Set the number of users per file. It is used only if 'users' is set to 'different_files'.")
|
||||
.buildTime(false)
|
||||
.build();
|
||||
|
||||
|
||||
@ -264,15 +264,14 @@ Export:
|
||||
|
||||
--dir <dir> Set the path to a directory where files will be created with the exported data.
|
||||
--file <file> Set the path to a file that will be created with the exported data. To export
|
||||
more than 500 users, export to a directory with different files instead.
|
||||
more than 50000 users, export to a directory with different files instead.
|
||||
--realm <realm> Set the name of the realm to export. If not set, all realms are going to be
|
||||
exported.
|
||||
--users <strategy> Set how users should be exported. Possible values are: skip, realm_file,
|
||||
same_file, different_files. Default: different_files.
|
||||
--users-per-file <number>
|
||||
Set the number of users per file. It is used only if 'users' is set to
|
||||
'different_files'. Increasing this number leads to exponentially increasing
|
||||
export times. Default: 50.
|
||||
'different_files'. Default: 50.
|
||||
|
||||
Bootstrap Admin:
|
||||
|
||||
|
||||
@ -447,15 +447,14 @@ Export:
|
||||
|
||||
--dir <dir> Set the path to a directory where files will be created with the exported data.
|
||||
--file <file> Set the path to a file that will be created with the exported data. To export
|
||||
more than 500 users, export to a directory with different files instead.
|
||||
more than 50000 users, export to a directory with different files instead.
|
||||
--realm <realm> Set the name of the realm to export. If not set, all realms are going to be
|
||||
exported.
|
||||
--users <strategy> Set how users should be exported. Possible values are: skip, realm_file,
|
||||
same_file, different_files. Default: different_files.
|
||||
--users-per-file <number>
|
||||
Set the number of users per file. It is used only if 'users' is set to
|
||||
'different_files'. Increasing this number leads to exponentially increasing
|
||||
export times. Default: 50.
|
||||
'different_files'. Default: 50.
|
||||
|
||||
Bootstrap Admin:
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user