[F3] GetAdminUser now has a ctx argument

This commit is contained in:
Earl Warren 2023-07-03 10:10:10 +02:00
parent a24bc0b85e
commit 37357a92af
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
2 changed files with 3 additions and 3 deletions

View file

@ -85,7 +85,7 @@ func getAuthenticationSource(ctx context.Context, authenticationSource string) (
}
func RunF3(stdCtx context.Context, ctx *cli.Context) error {
doer, err := user_model.GetAdminUser()
doer, err := user_model.GetAdminUser(stdCtx)
if err != nil {
return err
}

View file

@ -77,7 +77,7 @@ func TestF3(t *testing.T) {
//
// Step 2: mirror the fixture into Forgejo
//
doer, err := user_model.GetAdminUser()
doer, err := user_model.GetAdminUser(context.Background())
assert.NoError(t, err)
forgejoLocal := util.ForgejoForgeRoot(gof3.AllFeatures, doer, 0)
options := f3_common.NewMirrorOptionsRecurse()
@ -233,7 +233,7 @@ func TestF3UserMapping(t *testing.T) {
}
defer createUser(context.Background(), t, gitlabUser)()
doer, err := user_model.GetAdminUser()
doer, err := user_model.GetAdminUser(context.Background())
assert.NoError(t, err)
forgejoLocal := util.ForgejoForgeRoot(gof3.AllFeatures, doer, gitlab.ID)
options := f3_common.NewMirrorOptionsRecurse()