Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2018-08-02 21:17:00 +0300
committerStan Hu <stanhu@gmail.com>2018-08-02 21:18:31 +0300
commit1436423a490fe9f4c1ee1ccb8ecaa6240eed2906 (patch)
tree96aeebc6a85639996b106282663de41c41a7966f /app/services/users
parent93c7b6c51a49a1939a876f2510a69e59827ac816 (diff)
Fix failing 500 errors when deploy tokens are used to clone
A DeployToken responds to `:username`, but it returns the username for the token, not a User object. Don't attempt to log user activity in this case. Closes gitlab-org/gitlab-ee#7080
Diffstat (limited to 'app/services/users')
-rw-r--r--app/services/users/activity_service.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/services/users/activity_service.rb b/app/services/users/activity_service.rb
index 822df6c646a..db03ba8756f 100644
--- a/app/services/users/activity_service.rb
+++ b/app/services/users/activity_service.rb
@@ -11,6 +11,7 @@ module Users
author.user
end
+ @user = nil unless @user.is_a?(User)
@activity = activity
end