OAuth: Fix for wrong user token updated on OAuth refresh in DS proxy (#17541)

(cherry picked from commit 151fe240fc)
This commit is contained in:
Maxim Ivanov
2019-06-17 12:07:51 +01:00
committed by gotjosh
parent 22a991ff66
commit c533ec7dea
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -216,8 +216,8 @@ func UpdateAuthInfo(cmd *m.UpdateAuthInfoCommand) error {
UserId: cmd.UserId,
AuthModule: cmd.AuthModule,
}
_, err := sess.Update(authUser, cond)
upd, err := sess.Update(authUser, cond)
sqlog.Debug("Updated user_auth", "user_id", cmd.UserId, "auth_module", cmd.AuthModule, "rows", upd)
return err
})
}