bit more progress

This commit is contained in:
tsmethurst 2021-07-21 19:00:45 +02:00
commit 8e0d32d3e1
9 changed files with 241 additions and 80 deletions

View file

@ -122,7 +122,7 @@ var Start cliactions.GTSAction = func(ctx context.Context, c *config.Config, log
return fmt.Errorf("error starting processor: %s", err)
}
idp, err := oidc.NewIDP(c)
idp, err := oidc.NewIDP(c, log)
if err != nil {
return fmt.Errorf("error creating oidc idp: %s", err)
}

View file

@ -67,7 +67,7 @@ var Start cliactions.GTSAction = func(ctx context.Context, _ *config.Config, log
return fmt.Errorf("error starting processor: %s", err)
}
idp, err := oidc.NewIDP(c)
idp, err := oidc.NewIDP(c, log)
if err != nil {
return fmt.Errorf("error creating oidc idp: %s", err)
}