Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RANGER-5078: Set ranger.usersync.ldap.referral=follow as default config #530

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ SYNC_PAGED_RESULTS_ENABLED=
# default value: 500
SYNC_PAGED_RESULTS_SIZE=
#LDAP context referral could be ignore or follow
SYNC_LDAP_REFERRAL =ignore
SYNC_LDAP_REFERRAL=follow

# if you want to enable or disable jvm metrics for usersync process
# valid values: true, false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public class UserGroupSyncConfig {
private static final String DEFAULT_GROUP_CLOUDID_ATTRIBUTE_DATATYPE = "byte[]";
private static final String DEFAULT_OTHER_GROUP_ATTRIBUTES = "displayname,";
private static final String DEFAULT_UGSYNC_GROUPNAME_CASE_CONVERSION_VALUE = UGSYNC_NONE_CASE_CONVERSION_VALUE;
private static final String DEFAULT_LGSYNC_REFERRAL = "ignore";
private static final String DEFAULT_LGSYNC_REFERRAL = "follow";
private static final int DEFAULT_LGSYNC_GROUP_HIERARCHY_LEVELS = 0;
private static final int DEFAULT_LGSYNC_PAGED_RESULTS_SIZE = 500;
private static final boolean DEFAULT_LGSYNC_LDAP_DELTASYNC_ENABLED = false;
Expand Down
2 changes: 1 addition & 1 deletion unixauthservice/scripts/install.properties
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ SYNC_PAGED_RESULTS_ENABLED=
# default value: 500
SYNC_PAGED_RESULTS_SIZE=
#LDAP context referral could be ignore or follow
SYNC_LDAP_REFERRAL =ignore
SYNC_LDAP_REFERRAL=follow

# if you want to enable or disable jvm metrics for usersync process
# valid values: true, false
Expand Down