Skip to content

Commit

Permalink
fix(ingest) Azure AD: support nested groups (#4367)
Browse files Browse the repository at this point in the history
  • Loading branch information
cccs-eric committed Mar 11, 2022
1 parent 14bcd84 commit 1ddf934
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ def create(cls, config_dict, ctx):
def __init__(self, config: AzureADConfig, ctx: PipelineContext):
super().__init__(ctx)
self.config = config
self.report = AzureADSourceReport(filtered_tracking=self.config.filtered_tracking)
self.report = AzureADSourceReport(
filtered_tracking=self.config.filtered_tracking
)
self.token_data = {
"grant_type": "client_credentials",
"client_id": self.config.client_id,
Expand Down

0 comments on commit 1ddf934

Please sign in to comment.