Skip to content

Commit a3b5445

Browse files
committed
Fix bug when changes to post-receive worker was not dumped properly
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
1 parent 67eb0c4 commit a3b5445

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v2.0.1
2+
- Send post-receive changes to redis as a string instead of array
3+
14
v2.0.0
25
- Works with GitLab v7.3+
36
- Replace raise with abort when checking path to prevent path exposure

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

lib/gitlab_post_receive.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class GitlabPostReceive
77
def initialize(repo_path, actor, changes)
88
@config = GitlabConfig.new
99
@repo_path, @actor = repo_path.strip, actor
10-
@changes = changes.lines
10+
@changes = changes
1111
end
1212

1313
def exec

0 commit comments

Comments
 (0)