overlay 1.1.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ subscriber.rb
@@ -1,3 +1,3 @@
1
1
  module Overlay
2
- VERSION = "1.1.0"
2
+ VERSION = "2.0.0"
3
3
  end
@@ -0,0 +1,145 @@
1
+ require 'spec_helper'
2
+
3
+ # Test our configuration objects
4
+ describe Overlay::GithubRepo do
5
+
6
+ let(:repo_config) do
7
+ Overlay::GithubRepo.new('org', 'repo', 'auth', 'test', '/')
8
+ end
9
+
10
+ it "should allow basic creation" do
11
+ expect {
12
+ test = Overlay::GithubRepo.new('org', 'repo', 'auth', 'test', '/')
13
+ }.to_not raise_error
14
+ end
15
+
16
+ it 'should throw error for missing org' do
17
+ expect {
18
+ test = Overlay::GithubRepo.new('', 'repo', 'auth', 'test', '/')
19
+ }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: org")
20
+
21
+ expect {
22
+ test = Overlay::GithubRepo.new(nil, 'repo', 'auth', 'test', '/')
23
+ }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: org")
24
+ end
25
+
26
+ it 'should throw error for missing repo' do
27
+ expect {
28
+ test = Overlay::GithubRepo.new('org', '', 'auth', 'test', '/')
29
+ }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: repo")
30
+
31
+ expect {
32
+ test = Overlay::GithubRepo.new('org', nil, 'auth', 'test', '/')
33
+ }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: repo")
34
+ end
35
+
36
+ it 'should throw error for missing auth' do
37
+ expect {
38
+ test = Overlay::GithubRepo.new('org', 'repo', '', 'test', '/')
39
+ }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: auth")
40
+
41
+ expect {
42
+ test = Overlay::GithubRepo.new('org', 'repo', nil, 'test', '/')
43
+ }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: auth")
44
+ end
45
+
46
+ it 'should throw error for missing source root_source_path' do
47
+ expect {
48
+ test = Overlay::GithubRepo.new('org', 'repo', 'auth', '', '/')
49
+ }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: root_source_path")
50
+
51
+ expect {
52
+ test = Overlay::GithubRepo.new('org', 'repo', 'auth', nil, '/')
53
+ }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: root_source_path")
54
+ end
55
+
56
+ describe 'OverlayPublisher configuration' do
57
+
58
+ it 'should validate successfully for correct publisher params' do
59
+ repo_config.use_publisher = true
60
+ repo_config.redis_server = 'localhost'
61
+ repo_config.redis_port = 4567
62
+ repo_config.registration_server = 'http://localhost:4567'
63
+
64
+ expect { repo_config.validate }.to_not raise_error
65
+ end
66
+
67
+ it 'should validate redis_server' do
68
+ repo_config.use_publisher = true
69
+ repo_config.redis_port = 4567
70
+ repo_config.registration_server = 'http://localhost:4567'
71
+
72
+ expect { repo_config.validate }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: redis_server")
73
+ end
74
+
75
+ it 'should validate redis_port' do
76
+ repo_config.use_publisher = true
77
+ repo_config.redis_server = 'localhost'
78
+ repo_config.registration_server = 'http://localhost:4567'
79
+
80
+ expect { repo_config.validate }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: redis_port")
81
+ end
82
+
83
+ it 'should validate registration_server' do
84
+ repo_config.use_publisher = true
85
+ repo_config.redis_server = 'localhost'
86
+ repo_config.redis_port = 4567
87
+
88
+ expect { repo_config.validate }.to raise_error(Overlay::RequiredParameterError, "Overlay GithubRepo missing required paramater: registration_server")
89
+ end
90
+ end
91
+
92
+ describe 'GithubRepo api initialization' do
93
+
94
+ it 'should initialize the API with correct settings' do
95
+ github_api = repo_config.github_api
96
+
97
+ expect(github_api.current_options[:org]) .to eq('org')
98
+ expect(github_api.current_options[:repo]) .to eq('repo')
99
+ expect(github_api.current_options[:login]) .to eq('auth')
100
+ end
101
+
102
+ it 'should reinitialize api when endpoint is changed' do
103
+ repo_config.endpoint = "http://api.test.com"
104
+ expect(repo_config.github_api.current_options[:endpoint]).to eq('http://api.test.com')
105
+ end
106
+
107
+ it 'should reinitialize api when site is changed' do
108
+ repo_config.site = "http://www.test.com"
109
+ expect(repo_config.github_api.current_options[:site]).to eq('http://www.test.com')
110
+ end
111
+ end
112
+
113
+ describe 'GithubRepo read only properties' do
114
+
115
+ it 'should not allow me to reset repo' do
116
+ expect { repo_config.repo = 'repo2'}.to raise_error
117
+ end
118
+
119
+ it 'should not allow me to reset org' do
120
+ expect { repo_config.org = 'org2'}.to raise_error
121
+ end
122
+
123
+ it 'should not allow me to reset auth' do
124
+ expect { repo_config.auth = 'auth2'}.to raise_error
125
+ end
126
+ end
127
+
128
+ describe 'GithubRepo post_hook operation' do
129
+ it 'should require a block' do
130
+ expect{ repo_config.after_process_hook }.to raise_error(ArgumentError)
131
+ end
132
+
133
+ it 'should run the code provided when calling post_hook' do
134
+ hook_ran = false
135
+
136
+ repo_config.after_process_hook do
137
+ hook_ran = true
138
+ end
139
+
140
+ repo_config.post_hook
141
+
142
+ expect(hook_ran).to eq(true)
143
+ end
144
+ end
145
+ end
@@ -3,17 +3,23 @@ require 'spec_helper'
3
3
  module Overlay
4
4
  describe GithubController do
5
5
  before :each do
6
+ Overlay.configuration.reset if Overlay.configuration
7
+
6
8
  Overlay.configure do |config|
7
- config.repositories << Overlay::GithubRepo.new('test', 'test', 'master', 'test', 'test')
9
+ config.repositories << Overlay::GithubRepo.new(
10
+ 'test',
11
+ 'test',
12
+ 'test_user:test_pass',
13
+ 'spec',
14
+ 'spec'
15
+ )
8
16
  end
9
17
  end
10
18
 
11
19
  describe "POST 'update'" do
12
20
  it "returns http success" do
13
- Overlay::Github.stub(:overlay_repo) { true }
14
- Overlay::Github.should_receive(:overlay_repo).once
21
+ expect(Overlay::Github.instance).to receive(:process_hook).once.and_return
15
22
  post 'update', {:use_route => :overlay, :ref => "refs/heads/master", :repository => {:name => 'test'}}
16
- response.should be_success
17
23
  end
18
24
  end
19
25
  end
@@ -1,349 +1,383 @@
1
1
  Processing by Overlay::GithubController#update as HTML
2
- Rendered inline template (1.2ms)
3
- Completed 200 OK in 7ms (Views: 6.5ms)
2
+ Completed 200 OK in 3ms (Views: 3.1ms)
4
3
  Processing by Overlay::GithubController#update as HTML
5
- Rendered inline template (0.6ms)
6
- Completed 200 OK in 4ms (Views: 3.3ms)
7
- Processing by Overlay::GithubController#update as HTML
8
- Rendered inline template (1.1ms)
9
- Completed 200 OK in 7ms (Views: 6.2ms)
10
- Processing by Overlay::GithubController#update as HTML
11
- Rendered inline template (0.6ms)
12
- Completed 200 OK in 4ms (Views: 3.3ms)
4
+ Rendered text template (0.0ms)
5
+ Completed 200 OK in 4ms (Views: 3.4ms)
13
6
  Processing by Overlay::GithubController#update as HTML
14
- Rendered inline template (0.6ms)
15
- Completed 200 OK in 4ms (Views: 3.3ms)
7
+ Rendered text template (0.0ms)
8
+ Completed 200 OK in 3ms (Views: 3.2ms)
16
9
  Processing by Overlay::GithubController#update as HTML
17
- Rendered inline template (0.7ms)
18
- Completed 200 OK in 5ms (Views: 3.8ms)
10
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
11
+ Completed 500 Internal Server Error in 0ms
12
+ Start processing repo with config #<struct Overlay::GithubRepo endpoint="saarinen", site="overlay", org="master", repo="spec", auth="spec", root_source_path=nil, root_dest_path=nil>
19
13
  Processing by Overlay::GithubController#update as HTML
20
- Rendered inline template (0.6ms)
21
- Completed 200 OK in 4ms (Views: 3.3ms)
14
+ Completed 200 OK in 3ms (Views: 3.1ms)
22
15
  Processing by Overlay::GithubController#update as HTML
23
- Rendered inline template (1.1ms)
24
- Completed 200 OK in 8ms (Views: 6.6ms)
16
+ Completed 500 Internal Server Error in 0ms
25
17
  Processing by Overlay::GithubController#update as HTML
26
- Rendered inline template (0.6ms)
27
- Completed 200 OK in 4ms (Views: 3.4ms)
18
+ Rendered text template (0.0ms)
19
+ Completed 200 OK in 3ms (Views: 3.2ms)
28
20
  Processing by Overlay::GithubController#update as HTML
29
- Completed 200 OK in 1ms (Views: 0.3ms)
21
+ Completed 200 OK in 4ms (Views: 3.2ms)
30
22
  Processing by Overlay::GithubController#update as HTML
31
- Rendered inline template (0.6ms)
32
- Completed 200 OK in 4ms (Views: 3.5ms)
23
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
24
+ Rendered text template (0.0ms)
25
+ Completed 500 Internal Server Error in 3ms
33
26
  Processing by Overlay::GithubController#update as HTML
34
- Completed 200 OK in 1ms (Views: 0.3ms)
27
+ Completed 500 Internal Server Error in 0ms
35
28
  Processing by Overlay::GithubController#update as HTML
36
- Rendered inline template (0.6ms)
37
- Completed 200 OK in 4ms (Views: 3.4ms)
29
+ Rendered text template (0.0ms)
30
+ Completed 200 OK in 4ms (Views: 3.2ms)
38
31
  Processing by Overlay::GithubController#update as HTML
39
- Completed 200 OK in 1ms (Views: 0.3ms)
32
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
33
+ Completed 200 OK in 0ms (Views: 0.1ms)
40
34
  Processing by Overlay::GithubController#update as HTML
41
- Rendered inline template (0.6ms)
42
- Completed 200 OK in 4ms (Views: 3.4ms)
35
+ Rendered text template (0.0ms)
36
+ Completed 200 OK in 3ms (Views: 3.2ms)
43
37
  Processing by Overlay::GithubController#update as HTML
44
- Completed 200 OK in 1ms (Views: 0.3ms)
38
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
39
+ Completed 200 OK in 0ms (Views: 0.1ms)
40
+ Start processing repo with config #<Overlay::GithubRepo:0x007fd480692bf0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
45
41
  Processing by Overlay::GithubController#update as HTML
46
- Rendered inline template (0.7ms)
47
- Completed 200 OK in 4ms (Views: 3.4ms)
42
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
43
+ Rendered text template (0.0ms)
44
+ Completed 200 OK in 4ms (Views: 3.3ms)
48
45
  Processing by Overlay::GithubController#update as HTML
49
- Completed 200 OK in 1ms (Views: 0.3ms)
46
+ Completed 200 OK in 0ms (Views: 0.1ms)
47
+ Start processing repo with config #<Overlay::GithubRepo:0x007fd9fc204be8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
50
48
  Processing by Overlay::GithubController#update as HTML
51
- Rendered inline template (0.7ms)
52
- Completed 200 OK in 5ms (Views: 4.3ms)
49
+ Rendered text template (0.0ms)
50
+ Completed 200 OK in 3ms (Views: 3.2ms)
53
51
  Processing by Overlay::GithubController#update as HTML
54
- Completed 200 OK in 1ms (Views: 0.4ms)
52
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
53
+ Enqueueing GithubJob for repo: test and branch: master
54
+ Completed 200 OK in 0ms (Views: 0.1ms)
55
+ Start processing repo with config #<Overlay::GithubRepo:0x007fe9d7bd8f30 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
55
56
  Processing by Overlay::GithubController#update as HTML
56
- Rendered inline template (0.6ms)
57
+ Rendered text template (0.0ms)
57
58
  Completed 200 OK in 4ms (Views: 3.4ms)
58
59
  Processing by Overlay::GithubController#update as HTML
59
- Completed 200 OK in 1ms (Views: 0.3ms)
60
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
61
+ Enqueueing GithubJob for repo: test and branch: master
62
+ Completed 200 OK in 0ms (Views: 0.1ms)
63
+ Start processing repo with config #<Overlay::GithubRepo:0x007f8f660c9278 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
64
+ Start processing repo with config #<Overlay::GithubRepo:0x007f7f9c5f3bb0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
65
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f7f9c5f3bb0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
60
66
  Processing by Overlay::GithubController#update as HTML
61
- Rendered inline template (0.6ms)
62
- Completed 200 OK in 4ms (Views: 3.5ms)
67
+ Rendered text template (0.0ms)
68
+ Completed 200 OK in 4ms (Views: 3.4ms)
63
69
  Processing by Overlay::GithubController#update as HTML
64
- Completed 200 OK in 1ms (Views: 0.3ms)
70
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
71
+ Enqueueing GithubJob for repo: test and branch: master
72
+ Completed 200 OK in 0ms (Views: 0.1ms)
65
73
  Processing by Overlay::GithubController#update as HTML
66
- Rendered inline template (0.6ms)
67
- Completed 200 OK in 4ms (Views: 3.5ms)
74
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
75
+ Rendered text template (0.0ms)
76
+ Enqueueing GithubJob for repo: test and branch: master
77
+ Completed 200 OK in 3ms (Views: 3.1ms)
68
78
  Processing by Overlay::GithubController#update as HTML
69
- Completed 200 OK in 1ms (Views: 0.3ms)
79
+ Completed 200 OK in 0ms (Views: 0.1ms)
80
+ Start processing repo with config #<Overlay::GithubRepo:0x007fcffff83ca8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
81
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fcffff83ca8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
70
82
  Processing by Overlay::GithubController#update as HTML
71
- Rendered inline template (0.7ms)
72
- Completed 200 OK in 5ms (Views: 4.3ms)
83
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
84
+ Rendered text template (0.0ms)
85
+ Enqueueing GithubJob for repo: test and branch: master
86
+ Completed 200 OK in 4ms (Views: 3.3ms)
73
87
  Processing by Overlay::GithubController#update as HTML
74
- Completed 200 OK in 1ms (Views: 0.4ms)
88
+ Completed 200 OK in 0ms (Views: 0.2ms)
89
+ Start processing repo with config #<Overlay::GithubRepo:0x007ff69782f920 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
90
+ Finished processing repo with config #<Overlay::GithubRepo:0x007ff69782f920 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
75
91
  Processing by Overlay::GithubController#update as HTML
76
- Rendered inline template (0.7ms)
77
- Completed 200 OK in 4ms (Views: 3.5ms)
92
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
93
+ Rendered text template (0.0ms)
94
+ Enqueueing GithubJob for repo: test and branch: master
95
+ Completed 200 OK in 4ms (Views: 3.6ms)
78
96
  Processing by Overlay::GithubController#update as HTML
79
- Completed 200 OK in 1ms (Views: 0.4ms)
97
+ Completed 200 OK in 0ms (Views: 0.2ms)
98
+ Start processing repo with config #<Overlay::GithubRepo:0x007f87676aeaa0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
99
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f87676aeaa0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
80
100
  Processing by Overlay::GithubController#update as HTML
81
- Rendered inline template (0.6ms)
82
- Completed 200 OK in 4ms (Views: 3.4ms)
101
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
102
+ Rendered text template (0.0ms)
103
+ Enqueueing GithubJob for repo: test and branch: master
104
+ Completed 200 OK in 4ms (Views: 3.1ms)
105
+ Start processing repo with config #<Overlay::GithubRepo:0x007fec10582f88 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
106
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fec10582f88 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
83
107
  Processing by Overlay::GithubController#update as HTML
84
- Completed 200 OK in 1ms (Views: 0.3ms)
108
+ Completed 200 OK in 0ms (Views: 0.2ms)
109
+ Start processing repo with config #<Overlay::GithubRepo:0x007ff12dc69e10 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
110
+ Finished processing repo with config #<Overlay::GithubRepo:0x007ff12dc69e10 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
85
111
  Processing by Overlay::GithubController#update as HTML
86
- Rendered inline template (0.9ms)
87
- Completed 200 OK in 4ms (Views: 3.7ms)
112
+ Rendered text template (0.0ms)
113
+ Completed 200 OK in 3ms (Views: 3.1ms)
88
114
  Processing by Overlay::GithubController#update as HTML
89
- Completed 200 OK in 1ms (Views: 0.3ms)
115
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
116
+ Enqueueing GithubJob for repo: test and branch: master
117
+ Completed 200 OK in 0ms (Views: 0.2ms)
90
118
  Processing by Overlay::GithubController#update as HTML
91
- Rendered inline template (0.6ms)
119
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
120
+ Rendered text template (0.0ms)
121
+ Enqueueing GithubJob for repo: test and branch: master
92
122
  Completed 200 OK in 4ms (Views: 3.4ms)
123
+ Start processing repo with config #<Overlay::GithubRepo:0x007fa6388d0258 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
124
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fa6388d0258 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
93
125
  Processing by Overlay::GithubController#update as HTML
94
- Completed 200 OK in 1ms (Views: 0.3ms)
126
+ Completed 200 OK in 0ms (Views: 0.2ms)
95
127
  Processing by Overlay::GithubController#update as HTML
96
- Rendered inline template (0.6ms)
97
- Completed 200 OK in 4ms (Views: 3.5ms)
128
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
129
+ Rendered text template (0.0ms)
130
+ Enqueueing GithubJob for repo: test and branch: master
131
+ Completed 200 OK in 4ms (Views: 3.2ms)
98
132
  Processing by Overlay::GithubController#update as HTML
99
- Completed 200 OK in 1ms (Views: 0.3ms)
133
+ Completed 200 OK in 0ms (Views: 0.1ms)
134
+ Start processing repo with config #<Overlay::GithubRepo:0x007f9505b6dea0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
135
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f9505b6dea0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
136
+ Start processing repo with config #<Overlay::GithubRepo:0x007ff72f4795e0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
137
+ Finished processing repo with config #<Overlay::GithubRepo:0x007ff72f4795e0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
100
138
  Processing by Overlay::GithubController#update as HTML
101
- Rendered inline template (0.6ms)
139
+ Rendered text template (0.0ms)
102
140
  Completed 200 OK in 4ms (Views: 3.4ms)
103
141
  Processing by Overlay::GithubController#update as HTML
104
- Completed 200 OK in 1ms (Views: 0.3ms)
142
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
143
+ Enqueueing GithubJob for repo: test and branch: master
144
+ Completed 200 OK in 0ms (Views: 0.1ms)
145
+ Start processing repo with config #<Overlay::GithubRepo:0x007f82bd988798 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
146
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f82bd988798 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
105
147
  Processing by Overlay::GithubController#update as HTML
106
- Rendered inline template (0.7ms)
148
+ Rendered text template (0.0ms)
107
149
  Completed 200 OK in 4ms (Views: 3.5ms)
108
150
  Processing by Overlay::GithubController#update as HTML
109
- Completed 200 OK in 1ms (Views: 0.3ms)
151
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
152
+ Enqueueing GithubJob for repo: test and branch: master
153
+ Completed 200 OK in 0ms (Views: 0.2ms)
154
+ Start processing repo with config #<Overlay::GithubRepo:0x007f9e8ffd9370 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
155
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f9e8ffd9370 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
110
156
  Processing by Overlay::GithubController#update as HTML
111
- Rendered inline template (0.6ms)
112
- Completed 200 OK in 4ms (Views: 3.4ms)
157
+ Rendered text template (0.0ms)
158
+ Completed 200 OK in 4ms (Views: 3.2ms)
113
159
  Processing by Overlay::GithubController#update as HTML
114
- Completed 200 OK in 1ms (Views: 0.3ms)
160
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
161
+ Enqueueing GithubJob for repo: test and branch: master
162
+ Enqueueing GithubJob for repo: test and branch: master
163
+ Completed 200 OK in 0ms (Views: 0.1ms)
164
+ Processing by Overlay::GithubController#update as HTML
165
+ Rendered text template (0.0ms)
166
+ Completed 200 OK in 3ms (Views: 3.3ms)
167
+ Processing by Overlay::GithubController#update as HTML
168
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
169
+ Enqueueing GithubJob for repo: test and branch: master
170
+ Completed 200 OK in 0ms (Views: 0.1ms)
171
+ Start processing repo with config #<Overlay::GithubRepo:0x007ff59fc39578 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
172
+ Finished processing repo with config #<Overlay::GithubRepo:0x007ff59fc39578 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
173
+ Start processing repo with config #<Overlay::GithubRepo:0x007f96cfea22f8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
174
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f96cfea22f8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
115
175
  Processing by Overlay::GithubController#update as HTML
116
- Rendered inline template (0.7ms)
117
- Completed 200 OK in 5ms (Views: 4.3ms)
176
+ Rendered text template (0.0ms)
177
+ Completed 200 OK in 4ms (Views: 4.0ms)
118
178
  Processing by Overlay::GithubController#update as HTML
119
- Completed 200 OK in 1ms (Views: 0.4ms)
179
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
180
+ Enqueueing GithubJob for repo: test and branch: master
181
+ Completed 200 OK in 27ms (Views: 0.3ms)
120
182
  Processing by Overlay::GithubController#update as HTML
121
- Rendered inline template (0.7ms)
183
+ Rendered text template (0.0ms)
122
184
  Completed 200 OK in 4ms (Views: 3.4ms)
123
185
  Processing by Overlay::GithubController#update as HTML
124
- Completed 200 OK in 1ms (Views: 0.4ms)
186
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
187
+ Enqueueing GithubJob for repo: test and branch: master
188
+ Completed 200 OK in 0ms (Views: 0.1ms)
189
+ Start processing repo with config #<Overlay::GithubRepo:0x007fe48fce86c0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
190
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fe48fce86c0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
191
+ Start processing repo with config #<Overlay::GithubRepo:0x007fbc1d532c90 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
192
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fbc1d532c90 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
125
193
  Processing by Overlay::GithubController#update as HTML
126
- Rendered inline template (0.8ms)
127
- Completed 200 OK in 5ms (Views: 3.9ms)
194
+ Rendered text template (0.0ms)
195
+ Completed 200 OK in 3ms (Views: 3.2ms)
128
196
  Processing by Overlay::GithubController#update as HTML
129
- Completed 200 OK in 1ms (Views: 0.5ms)
197
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
198
+ Enqueueing GithubJob for repo: test and branch: master
199
+ Completed 200 OK in 0ms (Views: 0.2ms)
130
200
  Processing by Overlay::GithubController#update as HTML
131
- Rendered inline template (0.7ms)
132
- Completed 200 OK in 4ms (Views: 3.7ms)
201
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
202
+ Rendered text template (0.0ms)
203
+ Enqueueing GithubJob for repo: test and branch: master
204
+ Completed 200 OK in 4ms (Views: 3.2ms)
133
205
  Processing by Overlay::GithubController#update as HTML
134
- Completed 200 OK in 1ms (Views: 0.5ms)
206
+ Completed 200 OK in 0ms (Views: 0.1ms)
207
+ Start processing repo with config #<Overlay::GithubRepo:0x007fc839ddb0b8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
208
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fc839ddb0b8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
135
209
  Processing by Overlay::GithubController#update as HTML
136
- Rendered inline template (0.7ms)
137
- Completed 200 OK in 5ms (Views: 3.8ms)
210
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
211
+ Rendered text template (0.0ms)
212
+ Enqueueing GithubJob for repo: test and branch: master
213
+ Completed 200 OK in 4ms (Views: 3.5ms)
138
214
  Processing by Overlay::GithubController#update as HTML
139
- Completed 200 OK in 1ms (Views: 0.5ms)
215
+ Completed 200 OK in 0ms (Views: 0.2ms)
216
+ Start processing repo with config #<Overlay::GithubRepo:0x007fde12001a48 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
217
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fde12001a48 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
140
218
  Processing by Overlay::GithubController#update as HTML
141
- Rendered inline template (1.1ms)
142
- Completed 200 OK in 7ms (Views: 6.3ms)
219
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
220
+ Rendered text template (0.0ms)
221
+ Enqueueing GithubJob for repo: test and branch: master
222
+ Completed 200 OK in 3ms (Views: 3.0ms)
143
223
  Processing by Overlay::GithubController#update as HTML
144
- Completed 200 OK in 1ms (Views: 0.4ms)
224
+ Completed 200 OK in 0ms (Views: 0.1ms)
225
+ Start processing repo with config #<Overlay::GithubRepo:0x007fbcd31a7ad8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
226
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fbcd31a7ad8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
227
+ Start processing repo with config #<Overlay::GithubRepo:0x007fe2b6c68180 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
228
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fe2b6c68180 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
145
229
  Processing by Overlay::GithubController#update as HTML
146
- Rendered inline template (0.6ms)
230
+ Rendered text template (0.0ms)
147
231
  Completed 200 OK in 4ms (Views: 3.4ms)
148
232
  Processing by Overlay::GithubController#update as HTML
149
- Completed 200 OK in 1ms (Views: 0.3ms)
233
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
234
+ Enqueueing GithubJob for repo: test and branch: master
235
+ Completed 200 OK in 0ms (Views: 0.1ms)
150
236
  Processing by Overlay::GithubController#update as HTML
151
- Rendered inline template (0.6ms)
152
- Completed 200 OK in 4ms (Views: 3.5ms)
237
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
238
+ Rendered text template (0.0ms)
239
+ Enqueueing GithubJob for repo: test and branch: master
240
+ Completed 200 OK in 4ms (Views: 3.3ms)
153
241
  Processing by Overlay::GithubController#update as HTML
154
- Completed 200 OK in 1ms (Views: 0.3ms)
242
+ Completed 200 OK in 0ms (Views: 0.1ms)
243
+ Start processing repo with config #<Overlay::GithubRepo:0x007fbc26c62fc0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
244
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fbc26c62fc0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
245
+ Start processing repo with config #<Overlay::GithubRepo:0x007fad163b9f00 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
246
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fad163b9f00 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
155
247
  Processing by Overlay::GithubController#update as HTML
156
- Rendered inline template (1.0ms)
157
- Completed 200 OK in 7ms (Views: 6.0ms)
248
+ Rendered text template (0.0ms)
249
+ Completed 200 OK in 31ms (Views: 30.8ms)
158
250
  Processing by Overlay::GithubController#update as HTML
159
- Completed 200 OK in 1ms (Views: 0.4ms)
251
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
252
+ Enqueueing GithubJob for repo: test and branch: master
253
+ Completed 200 OK in 0ms (Views: 0.2ms)
160
254
  Processing by Overlay::GithubController#update as HTML
161
- Rendered inline template (0.6ms)
162
- Completed 200 OK in 4ms (Views: 3.4ms)
255
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
256
+ Rendered text template (0.0ms)
257
+ Enqueueing GithubJob for repo: test and branch: master
258
+ Completed 200 OK in 4ms (Views: 3.3ms)
163
259
  Processing by Overlay::GithubController#update as HTML
164
- Completed 200 OK in 1ms (Views: 0.5ms)
260
+ Completed 200 OK in 0ms (Views: 0.1ms)
261
+ Start processing repo with config #<Overlay::GithubRepo:0x007f88e868cfe0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
262
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f88e868cfe0 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
165
263
  Processing by Overlay::GithubController#update as HTML
166
- Rendered inline template (0.6ms)
167
- Completed 200 OK in 4ms (Views: 3.4ms)
264
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
265
+ Rendered text template (0.0ms)
266
+ Enqueueing GithubJob for repo: test and branch: master
267
+ Completed 200 OK in 4ms (Views: 3.7ms)
268
+ Start processing repo with config #<Overlay::GithubRepo:0x007f87bfcb8cb8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
269
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f87bfcb8cb8 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
168
270
  Processing by Overlay::GithubController#update as HTML
169
- Completed 200 OK in 1ms (Views: 0.3ms)
271
+ Completed 200 OK in 0ms (Views: 0.2ms)
170
272
  Processing by Overlay::GithubController#update as HTML
171
- Rendered inline template (0.8ms)
172
- Completed 200 OK in 5ms (Views: 4.6ms)
273
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
274
+ Rendered text template (0.0ms)
275
+ Enqueueing GithubJob for repo: test and branch: master
276
+ Completed 200 OK in 4ms (Views: 3.3ms)
173
277
  Processing by Overlay::GithubController#update as HTML
174
- Completed 200 OK in 1ms (Views: 0.4ms)
175
- Shutdown completed cleanly
278
+ Completed 200 OK in 0ms (Views: 0.2ms)
279
+ Start processing repo with config #<Overlay::GithubRepo:0x007fc04575bd38 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
280
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fc04575bd38 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
176
281
  Processing by Overlay::GithubController#update as HTML
177
- Rendered inline template (0.8ms)
178
- Completed 200 OK in 4ms (Views: 3.8ms)
282
+ Rendered text template (0.0ms)
283
+ Completed 200 OK in 3ms (Views: 3.2ms)
179
284
  Processing by Overlay::GithubController#update as HTML
180
- Completed 200 OK in 1ms (Views: 0.3ms)
181
- Terminating 3 actors...
182
- Shutdown completed cleanly
285
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
286
+ Enqueueing GithubJob for repo: test and branch: master
287
+ Completed 200 OK in 0ms (Views: 0.1ms)
288
+ Start processing repo with config #<Overlay::GithubRepo:0x007ff98e447520 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
289
+ Finished processing repo with config #<Overlay::GithubRepo:0x007ff98e447520 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
183
290
  Processing by Overlay::GithubController#update as HTML
291
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
184
292
  Rendered text template (0.0ms)
185
- Completed 200 OK in 4ms (Views: 3.9ms)
293
+ Enqueueing GithubJob for repo: test and branch: master
294
+ Completed 200 OK in 4ms (Views: 3.5ms)
186
295
  Processing by Overlay::GithubController#update as HTML
187
296
  Completed 200 OK in 0ms (Views: 0.2ms)
188
- Terminating 3 actors...
189
- Shutdown completed cleanly
190
- Processing by Overlay::GithubController#update as HTML
191
- Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
192
- Rendered text template (0.0ms)
193
- Overlay::GithubJob crashed!
194
- Github::Error::NotFound: GET https://api.github.com/repos/test/test/contents/test?ref=master: 404 Not Found
195
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/response/raise_error.rb:14:in `on_complete'
196
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:9:in `block in call'
197
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:63:in `on_complete'
198
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:8:in `call'
199
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:8:in `call'
200
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:8:in `call'
201
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/request/url_encoded.rb:14:in `call'
202
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/request/multipart.rb:13:in `call'
203
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/request/jsonize.rb:18:in `call'
204
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/connection.rb:247:in `run_request'
205
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/connection.rb:100:in `get'
206
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/request.rb:44:in `request'
207
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/request.rb:12:in `get_request'
208
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/repos/contents.rb:47:in `get'
209
- /Users/ssaarinen/dev/overlay/lib/overlay/github.rb:84:in `overlay_directory'
210
- /Users/ssaarinen/dev/overlay/lib/overlay/github.rb:64:in `overlay_repo'
211
- /Users/ssaarinen/dev/overlay/lib/overlay/github.rb:132:in `perform'
212
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:25:in `public_send'
213
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:25:in `dispatch'
214
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:67:in `dispatch'
215
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/actor.rb:326:in `block in handle_message'
216
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/tasks.rb:42:in `block in initialize'
217
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/tasks/task_fiber.rb:11:in `block in create'
218
- (celluloid):0:in `remote procedure call'
219
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:95:in `value'
220
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/proxies/sync_proxy.rb:28:in `method_missing'
221
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/legacy.rb:14:in `method_missing'
222
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/proxies/actor_proxy.rb:25:in `_send_'
223
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/pool_manager.rb:41:in `_send_'
224
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/pool_manager.rb:122:in `method_missing'
225
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:25:in `public_send'
226
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:25:in `dispatch'
227
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:67:in `dispatch'
228
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/actor.rb:326:in `block in handle_message'
229
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/tasks.rb:42:in `block in initialize'
230
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/tasks/task_fiber.rb:11:in `block in create'
231
- Completed 500 Internal Server Error in 546ms
232
- Processing by Overlay::GithubController#update as HTML
233
- Completed 200 OK in 0ms (Views: 0.2ms)
234
- Terminating 3 actors...
235
- Shutdown completed cleanly
236
- Processing by Overlay::GithubController#update as HTML
237
- Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
238
- Rendered text template (0.0ms)
239
- Overlay::GithubJob crashed!
240
- Github::Error::NotFound: GET https://api.github.com/repos/test/test/contents/test?ref=master: 404 Not Found
241
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/response/raise_error.rb:14:in `on_complete'
242
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:9:in `block in call'
243
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:63:in `on_complete'
244
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:8:in `call'
245
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:8:in `call'
246
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/response.rb:8:in `call'
247
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/request/url_encoded.rb:14:in `call'
248
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/request/multipart.rb:13:in `call'
249
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/request/jsonize.rb:18:in `call'
250
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/connection.rb:247:in `run_request'
251
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/faraday-0.8.7/lib/faraday/connection.rb:100:in `get'
252
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/request.rb:44:in `request'
253
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/request.rb:12:in `get_request'
254
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.10.2/lib/github_api/repos/contents.rb:47:in `get'
255
- /Users/ssaarinen/dev/overlay/lib/overlay/github.rb:84:in `overlay_directory'
256
- /Users/ssaarinen/dev/overlay/lib/overlay/github.rb:64:in `overlay_repo'
257
- /Users/ssaarinen/dev/overlay/lib/overlay/github.rb:132:in `perform'
258
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:25:in `public_send'
259
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:25:in `dispatch'
260
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:67:in `dispatch'
261
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/actor.rb:326:in `block in handle_message'
262
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/tasks.rb:42:in `block in initialize'
263
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/tasks/task_fiber.rb:11:in `block in create'
264
- (celluloid):0:in `remote procedure call'
265
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:95:in `value'
266
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/proxies/sync_proxy.rb:28:in `method_missing'
267
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/legacy.rb:14:in `method_missing'
268
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/proxies/actor_proxy.rb:25:in `_send_'
269
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/pool_manager.rb:41:in `_send_'
270
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/pool_manager.rb:122:in `method_missing'
271
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:25:in `public_send'
272
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:25:in `dispatch'
273
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/calls.rb:67:in `dispatch'
274
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/actor.rb:326:in `block in handle_message'
275
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/tasks.rb:42:in `block in initialize'
276
- /Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/celluloid-0.14.1/lib/celluloid/tasks/task_fiber.rb:11:in `block in create'
277
- Completed 500 Internal Server Error in 490ms
278
- Processing by Overlay::GithubController#update as HTML
279
- Completed 200 OK in 0ms (Views: 0.2ms)
280
- Terminating 3 actors...
281
- Shutdown completed cleanly
282
- Processing by Overlay::GithubController#update as HTML
283
- Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
284
- Rendered text template (0.0ms)
285
- Completed 200 OK in 26ms (Views: 3.2ms)
286
- Processing by Overlay::GithubController#update as HTML
287
- Completed 200 OK in 0ms (Views: 0.2ms)
288
- Terminating 3 actors...
289
- Shutdown completed cleanly
297
+ Start processing repo with config #<Overlay::GithubRepo:0x007f89f74de198 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @use_publisher=true, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567", @branch="master", @github_repo=#<Github::Repos:0x007f89f74dd658 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
298
+ Start processing repo with config #<Overlay::GithubRepo:0x007f89f751a300 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
299
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f89f751a300 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec">
290
300
  Processing by Overlay::GithubController#update as HTML
291
301
  Rendered text template (0.0ms)
292
- Completed 200 OK in 4ms (Views: 3.2ms)
302
+ Completed 200 OK in 4ms (Views: 4.1ms)
293
303
  Processing by Overlay::GithubController#update as HTML
294
304
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
295
- Completed 200 OK in 1ms (Views: 0.2ms)
296
- Terminating 3 actors...
297
- Shutdown completed cleanly
305
+ Enqueueing GithubJob for repo: test and branch: master
306
+ Completed 200 OK in 0ms (Views: 0.2ms)
307
+ Start processing repo with config #<Overlay::GithubRepo:0x007f8ff7d29248 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
308
+ Finished processing repo with config #<Overlay::GithubRepo:0x007f8ff7d29248 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
298
309
  Processing by Overlay::GithubController#update as HTML
310
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
299
311
  Rendered text template (0.0ms)
300
- Received update post for repo: and ref:
301
- Completed 200 OK in 40ms (Views: 39.2ms)
312
+ Enqueueing GithubJob for repo: test and branch: master
313
+ Completed 200 OK in 4ms (Views: 3.3ms)
302
314
  Processing by Overlay::GithubController#update as HTML
303
- Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
304
- Received update post for repo: {"name"=>"test"} and ref: refs/heads/master
305
- Processing config for repo: test and branch: master
306
- Processing overlay for repo: test and branch: master
307
- SuckerPunch processing job for test
308
- Completed 200 OK in 1ms (Views: 0.2ms)
309
- SuckerPunch processing job for overlay
310
- SuckerPunch processing job for overlay
311
- SuckerPunch processing job for overlay
312
- SuckerPunch processing job for overlay
313
- Terminating 6 actors...
314
- Shutdown completed cleanly
315
- Shutdown completed cleanly
315
+ Completed 200 OK in 0ms (Views: 0.1ms)
316
+ Start processing repo with config #<Overlay::GithubRepo:0x007fb1e8aa9b90 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
317
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fb1e8aa9b90 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
316
318
  Processing by Overlay::GithubController#update as HTML
317
319
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
318
320
  Rendered text template (0.0ms)
319
321
  Enqueueing GithubJob for repo: test and branch: master
320
- SuckerPunch processing job for test
321
- Completed 200 OK in 9ms (Views: 6.0ms)
322
+ Completed 200 OK in 4ms (Views: 3.3ms)
323
+ Start processing repo with config #<Overlay::GithubRepo:0x007fe410303d50 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
324
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fe410303d50 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
322
325
  Processing by Overlay::GithubController#update as HTML
323
- Completed 200 OK in 0ms (Views: 0.2ms)
324
- SuckerPunch processing job for overlay
325
- SuckerPunch processing job for overlay
326
- SuckerPunch processing job for overlay
327
- SuckerPunch processing job for overlay
328
- Terminating 3 actors...
329
- Shutdown completed cleanly
326
+ Completed 200 OK in 1ms (Views: 0.5ms)
327
+ Start processing repo with config #<Overlay::GithubRepo:0x007fd30772c608 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
328
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fd30772c608 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
329
+ Processing by Overlay::GithubController#update as HTML
330
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
331
+ Rendered text template (0.1ms)
332
+ Enqueueing GithubJob for repo: test and branch: master
333
+ Completed 200 OK in 5ms (Views: 3.9ms)
334
+ Processing by Overlay::GithubController#update as HTML
335
+ Completed 200 OK in 1ms (Views: 0.6ms)
330
336
  Processing by Overlay::GithubController#update as HTML
331
337
  Rendered text template (0.0ms)
332
- Completed 200 OK in 5ms (Views: 4.4ms)
338
+ Completed 200 OK in 4ms (Views: 3.7ms)
339
+ Start processing repo with config #<Overlay::GithubRepo:0x007fce67329848 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
340
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fce67329848 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
333
341
  Processing by Overlay::GithubController#update as HTML
334
342
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
335
343
  Enqueueing GithubJob for repo: test and branch: master
336
344
  Completed 200 OK in 0ms (Views: 0.2ms)
337
345
  Processing by Overlay::GithubController#update as HTML
346
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
338
347
  Rendered text template (0.0ms)
339
- Completed 200 OK in 4ms (Views: 3.4ms)
348
+ Enqueueing GithubJob for repo: test and branch: master
349
+ Completed 200 OK in 4ms (Views: 3.3ms)
350
+ Processing by Overlay::GithubController#update as HTML
351
+ Completed 200 OK in 0ms (Views: 0.1ms)
352
+ Start processing repo with config #<Overlay::GithubRepo:0x007fb907bd2a78 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
353
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fb907bd2a78 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
354
+ Start processing repo with config #<Overlay::GithubRepo:0x007fb907b31b28 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567", @github_repo=#<Github::Repos:0x007fb907b3bee8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
340
355
  Processing by Overlay::GithubController#update as HTML
341
356
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
357
+ Rendered text template (0.0ms)
358
+ Enqueueing GithubJob for repo: test and branch: master
359
+ Completed 200 OK in 4ms (Views: 3.9ms)
360
+ Processing by Overlay::GithubController#update as HTML
361
+ Completed 200 OK in 0ms (Views: 0.2ms)
362
+ Start processing repo with config #<Overlay::GithubRepo:0x007fc33e9b14d8 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007fc33e9bb9b0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
363
+ Start processing repo with config #<Overlay::GithubRepo:0x007fc33ea60640 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
364
+ Finished processing repo with config #<Overlay::GithubRepo:0x007fc33ea60640 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
365
+ Processing by Overlay::GithubController#update as HTML
366
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
367
+ Rendered text template (0.0ms)
342
368
  Enqueueing GithubJob for repo: test and branch: master
369
+ Completed 200 OK in 4ms (Views: 3.4ms)
370
+ Processing by Overlay::GithubController#update as HTML
343
371
  Completed 200 OK in 0ms (Views: 0.1ms)
372
+ Start processing repo with config #<Overlay::GithubRepo:0x007ff9eead9540 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
373
+ Finished processing repo with config #<Overlay::GithubRepo:0x007ff9eead9540 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
374
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007f830e9ebe78 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
375
+ Overlay finished processing repo with config #<Overlay::GithubRepo:0x007f830e9ebe78 @endpoint="https://api.github.com", @site="http://github.com", @org="test", @repo="nil", @auth="test_user:test_password", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=false>
376
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
377
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007f830b4711d0 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567", @github_repo=#<Github::Repos:0x007f830b4705f0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
344
378
  Processing by Overlay::GithubController#update as HTML
345
379
  Rendered text template (0.0ms)
346
- Completed 200 OK in 4ms (Views: 4.1ms)
380
+ Completed 200 OK in 9ms (Views: 8.6ms)
347
381
  Processing by Overlay::GithubController#update as HTML
348
382
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
349
383
  Enqueueing GithubJob for repo: test and branch: master
@@ -352,36 +386,1277 @@ Processing by Overlay::GithubController#update as HTML
352
386
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
353
387
  Rendered text template (0.0ms)
354
388
  Enqueueing GithubJob for repo: test and branch: master
355
- Completed 200 OK in 4ms (Views: 4.1ms)
389
+ Completed 200 OK in 31ms (Views: 30.3ms)
356
390
  Processing by Overlay::GithubController#update as HTML
357
391
  Completed 200 OK in 0ms (Views: 0.1ms)
392
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
393
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007fa009a43070 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007fa009a4ade8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
394
+ Processing by Overlay::GithubController#update as HTML
395
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
396
+ Rendered text template (0.0ms)
397
+ Enqueueing GithubJob for repo: test and branch: master
398
+ Completed 500 Internal Server Error in 31ms
399
+ Processing by Overlay::GithubController#update as HTML
400
+ Completed 200 OK in 0ms (Views: 0.2ms)
358
401
  Processing by Overlay::GithubController#update as HTML
359
402
  Rendered text template (0.0ms)
360
- Completed 200 OK in 4ms (Views: 4.2ms)
403
+ Completed 200 OK in 4ms (Views: 3.4ms)
361
404
  Processing by Overlay::GithubController#update as HTML
362
405
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
363
406
  Enqueueing GithubJob for repo: test and branch: master
364
- Completed 200 OK in 0ms (Views: 0.2ms)
407
+ Completed 500 Internal Server Error in 0ms
365
408
  Processing by Overlay::GithubController#update as HTML
366
409
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
367
410
  Rendered text template (0.0ms)
368
411
  Enqueueing GithubJob for repo: test and branch: master
369
- Completed 200 OK in 5ms (Views: 4.3ms)
412
+ Completed 500 Internal Server Error in 31ms
370
413
  Processing by Overlay::GithubController#update as HTML
371
414
  Completed 200 OK in 0ms (Views: 0.2ms)
415
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
416
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007fba88171598 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007fba88179b80 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
372
417
  Processing by Overlay::GithubController#update as HTML
373
418
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
374
419
  Rendered text template (0.0ms)
375
- Enqueueing GithubJob for repo: test and branch: master
376
- Completed 200 OK in 5ms (Views: 4.3ms)
420
+ Completed 500 Internal Server Error in 31ms
421
+ Processing by Overlay::GithubController#update as HTML
422
+ Completed 200 OK in 0ms (Views: 0.2ms)
423
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
424
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007fa6beb19628 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007fa6beb219e0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
425
+ Processing by Overlay::GithubController#update as HTML
426
+ Completed 200 OK in 31ms (Views: 30.2ms)
427
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
428
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007f809084a180 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007f809085b598 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
429
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
430
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007fb850eb12d8 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567", @github_repo=#<Github::Repos:0x007fb850eb0798 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
431
+ Processing by Overlay::GithubController#update as HTML
432
+ Rendered text template (0.0ms)
433
+ Completed 200 OK in 6ms (Views: 5.0ms)
434
+ Processing by Overlay::GithubController#update as HTML
435
+ Rendered text template (0.0ms)
436
+ Completed 200 OK in 31ms (Views: 30.7ms)
437
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
438
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007fa0e3cf13a0 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007fa0e3cf8510 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
439
+ Processing by Overlay::GithubController#update as HTML
440
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
441
+ Rendered text template (0.0ms)
442
+ Completed 500 Internal Server Error in 34ms
443
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
444
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007f87019681a8 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007f87019709c0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
445
+ Processing by Overlay::GithubController#update as HTML
446
+ Completed 200 OK in 1ms (Views: 0.6ms)
447
+ Processing by Overlay::GithubController#update as HTML
448
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
449
+ Rendered text template (0.0ms)
450
+ Completed 500 Internal Server Error in 32ms
377
451
  Processing by Overlay::GithubController#update as HTML
378
452
  Completed 200 OK in 0ms (Views: 0.2ms)
453
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
454
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007faf86082ba8 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007faf8608b0a0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
379
455
  Processing by Overlay::GithubController#update as HTML
380
456
  Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
381
457
  Rendered text template (0.0ms)
382
- Enqueueing GithubJob for repo: test and branch: master
383
- Completed 200 OK in 6ms (Views: 5.3ms)
384
- Start processing repo with config #<struct Overlay::GithubRepo user="saarinen", repo="overlay", branch="master", root_source_path="spec", root_dest_path="spec">
385
- Finished processing repo with config #<struct Overlay::GithubRepo user="saarinen", repo="overlay", branch="master", root_source_path="spec", root_dest_path="spec">
458
+ Completed 500 Internal Server Error in 31ms
459
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
460
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007f8fa4f731f0 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007f8fa4f79640 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
461
+ Processing by Overlay::GithubController#update as HTML
462
+ Completed 200 OK in 1ms (Views: 0.5ms)
463
+ Processing by Overlay::GithubController#update as HTML
464
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
465
+ Rendered text template (0.0ms)
466
+ Completed 500 Internal Server Error in 31ms
467
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
468
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007faf978a2d40 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007faf978ab3f0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
469
+ Processing by Overlay::GithubController#update as HTML
470
+ Completed 200 OK in 1ms (Views: 0.5ms)
471
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
472
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007fb9e4c280f8 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567", @github_repo=#<Github::Repos:0x007fb9e4c7f3f8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
473
+ Processing by Overlay::GithubController#update as HTML
474
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
475
+ Rendered text template (0.1ms)
476
+ Completed 200 OK in 9ms (Views: 8.0ms)
477
+ Processing by Overlay::GithubController#update as HTML
478
+ Completed 200 OK in 1ms (Views: 0.3ms)
479
+ Processing by Overlay::GithubController#update as HTML
480
+ Rendered text template (0.0ms)
481
+ Completed 200 OK in 31ms (Views: 30.4ms)
482
+ Processing by Overlay::GithubController#update as HTML
483
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
484
+ Completed 200 OK in 0ms (Views: 0.2ms)
485
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
486
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007fcfdd9501c8 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007fcfdd959de0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
487
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
488
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffebc286870 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567", @github_repo=#<Github::Repos:0x007ffebc285d30 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
489
+ Processing by Overlay::GithubController#update as HTML
490
+ Rendered text template (0.0ms)
491
+ Completed 200 OK in 6ms (Views: 5.2ms)
492
+ Processing by Overlay::GithubController#update as HTML
493
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
494
+ Completed 200 OK in 0ms (Views: 0.2ms)
495
+ Processing by Overlay::GithubController#update as HTML
496
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
497
+ Rendered text template (0.0ms)
498
+ Completed 200 OK in 35ms (Views: 34.5ms)
499
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
500
+ Overlay started processing repo with config #<Overlay::GithubRepo:0x007f8d16a40150 @endpoint="https://api.github.com", @site="http://github.com", @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @branch="master", @use_publisher=true, @github_repo=#<Github::Repos:0x007f8d16a6b9e0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"http://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.2", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>"test_user", :password=>"test_pass", :basic_auth=>"test_user:test_pass", :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="http://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.2", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>, @redis_server="localhost", @redis_port=6379, @registration_address="http://localhost:4567">
501
+ Processing by Overlay::GithubController#update as HTML
502
+ Completed 200 OK in 1ms (Views: 0.5ms)
503
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
504
+ Processing by Overlay::GithubController#update as HTML
505
+ Rendered text template (0.1ms)
506
+ Completed 200 OK in 6ms (Views: 5.3ms)
507
+ Processing by Overlay::GithubController#update as HTML
508
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
509
+ Completed 200 OK in 0ms (Views: 0.2ms)
510
+ Processing by Overlay::GithubController#update as HTML
511
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
512
+ Rendered text template (0.1ms)
513
+ Completed 200 OK in 37ms (Views: 36.5ms)
514
+ Processing by Overlay::GithubController#update as HTML
515
+ Completed 200 OK in 0ms (Views: 0.2ms)
516
+ Processing by Overlay::GithubController#update as HTML
517
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
518
+ Rendered text template (0.0ms)
519
+ Completed 200 OK in 32ms (Views: 31.2ms)
520
+ Processing by Overlay::GithubController#update as HTML
521
+ Completed 200 OK in 0ms (Views: 0.2ms)
522
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
523
+ Processing by Overlay::GithubController#update as HTML
524
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
525
+ Rendered text template (0.0ms)
526
+ Completed 200 OK in 31ms (Views: 30.8ms)
527
+ Processing by Overlay::GithubController#update as HTML
528
+ Completed 200 OK in 0ms (Views: 0.2ms)
529
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
530
+ Processing by Overlay::GithubController#update as HTML
531
+ Rendered text template (0.0ms)
532
+ Completed 200 OK in 4ms (Views: 4.0ms)
533
+ Processing by Overlay::GithubController#update as HTML
534
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
535
+ Completed 200 OK in 0ms (Views: 0.2ms)
536
+ Processing by Overlay::GithubController#update as HTML
537
+ Rendered text template (0.0ms)
538
+ Completed 200 OK in 30ms (Views: 3.3ms)
539
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
540
+ Processing by Overlay::GithubController#update as HTML
541
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
542
+ Completed 200 OK in 2ms (Views: 0.8ms)
543
+ Processing by Overlay::GithubController#update as HTML
544
+ Completed 200 OK in 4ms (Views: 3.3ms)
545
+ Processing by Overlay::GithubController#update as HTML
546
+ Rendered text template (0.0ms)
547
+ Completed 200 OK in 4ms (Views: 3.3ms)
548
+ Processing by Overlay::GithubController#update as HTML
549
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
550
+ Rendered text template (0.0ms)
551
+ Completed 200 OK in 31ms (Views: 3.4ms)
552
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
553
+ Processing by Overlay::GithubController#update as HTML
554
+ Completed 200 OK in 1ms (Views: 0.8ms)
555
+ Processing by Overlay::GithubController#update as HTML
556
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
557
+ Rendered text template (0.0ms)
558
+ Completed 200 OK in 34ms (Views: 4.5ms)
559
+ Processing by Overlay::GithubController#update as HTML
560
+ Completed 200 OK in 0ms (Views: 0.2ms)
561
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
562
+ Processing by Overlay::GithubController#update as HTML
563
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
564
+ Rendered text template (0.0ms)
565
+ Completed 200 OK in 4ms (Views: 3.4ms)
566
+ Processing by Overlay::GithubController#update as HTML
567
+ Completed 200 OK in 0ms (Views: 0.1ms)
568
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
569
+ Processing by Overlay::GithubController#update as HTML
570
+ Rendered text template (0.0ms)
571
+ Completed 200 OK in 4ms (Views: 3.5ms)
572
+ Processing by Overlay::GithubController#update as HTML
573
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
574
+ Completed 200 OK in 0ms (Views: 0.1ms)
575
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
576
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
577
+ Processing by Overlay::GithubController#update as HTML
578
+ Rendered text template (0.0ms)
579
+ Completed 200 OK in 12ms (Views: 10.5ms)
580
+ Processing by Overlay::GithubController#update as HTML
581
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
582
+ Completed 200 OK in 1ms (Views: 0.5ms)
583
+ Processing by Overlay::GithubController#update as HTML
584
+ Rendered text template (0.0ms)
585
+ Completed 200 OK in 7ms (Views: 5.8ms)
586
+ Processing by Overlay::GithubController#update as HTML
587
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
588
+ Completed 200 OK in 1ms (Views: 0.3ms)
589
+ Processing by Overlay::GithubController#update as HTML
590
+ Rendered text template (0.0ms)
591
+ Completed 200 OK in 3ms (Views: 3.2ms)
592
+ Processing by Overlay::GithubController#update as HTML
593
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
594
+ Completed 200 OK in 1ms (Views: 0.5ms)
595
+ Processing by Overlay::GithubController#update as HTML
596
+ Rendered text template (0.0ms)
597
+ Completed 200 OK in 3ms (Views: 3.2ms)
598
+ Processing by Overlay::GithubController#update as HTML
599
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
600
+ Completed 200 OK in 0ms (Views: 0.1ms)
601
+ Processing by Overlay::GithubController#update as HTML
602
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
603
+ Rendered text template (0.0ms)
604
+ Completed 200 OK in 4ms (Views: 3.5ms)
605
+ Processing by Overlay::GithubController#update as HTML
606
+ Completed 200 OK in 0ms (Views: 0.2ms)
607
+ Processing by Overlay::GithubController#update as HTML
608
+ Rendered text template (0.0ms)
609
+ Completed 200 OK in 3ms (Views: 3.2ms)
610
+ Processing by Overlay::GithubController#update as HTML
611
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
612
+ Completed 200 OK in 0ms (Views: 0.2ms)
613
+ Processing by Overlay::GithubController#update as HTML
614
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
615
+ Rendered text template (0.0ms)
616
+ Completed 200 OK in 4ms (Views: 3.2ms)
617
+ Processing by Overlay::GithubController#update as HTML
618
+ Completed 200 OK in 0ms (Views: 0.1ms)
619
+ Processing by Overlay::GithubController#update as HTML
620
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
621
+ Rendered text template (0.0ms)
622
+ Completed 200 OK in 4ms (Views: 3.4ms)
623
+ Processing by Overlay::GithubController#update as HTML
624
+ Completed 200 OK in 0ms (Views: 0.1ms)
625
+ Processing by Overlay::GithubController#update as HTML
626
+ Rendered text template (0.0ms)
627
+ Completed 200 OK in 4ms (Views: 3.4ms)
628
+ Processing by Overlay::GithubController#update as HTML
629
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
630
+ Completed 200 OK in 0ms (Views: 0.2ms)
631
+ Processing by Overlay::GithubController#update as HTML
632
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
633
+ Rendered text template (0.0ms)
634
+ Completed 200 OK in 4ms (Views: 3.6ms)
635
+ Processing by Overlay::GithubController#update as HTML
636
+ Completed 200 OK in 0ms (Views: 0.2ms)
637
+ Processing by Overlay::GithubController#update as HTML
638
+ Rendered text template (0.0ms)
639
+ Completed 200 OK in 4ms (Views: 3.3ms)
640
+ Processing by Overlay::GithubController#update as HTML
641
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
642
+ Completed 200 OK in 0ms (Views: 0.2ms)
643
+ Processing by Overlay::GithubController#update as HTML
644
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
645
+ Rendered text template (0.0ms)
646
+ Completed 200 OK in 4ms (Views: 3.4ms)
647
+ Processing by Overlay::GithubController#update as HTML
648
+ Completed 200 OK in 0ms (Views: 0.2ms)
649
+ Processing by Overlay::GithubController#update as HTML
650
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
651
+ Rendered text template (0.0ms)
652
+ Completed 200 OK in 4ms (Views: 3.4ms)
653
+ Processing by Overlay::GithubController#update as HTML
654
+ Completed 200 OK in 0ms (Views: 0.2ms)
655
+ Overlay register webhook for repo: org => test_org, repo => test_repo
656
+ Processing by Overlay::GithubController#update as HTML
657
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
658
+ Rendered text template (0.0ms)
659
+ Completed 200 OK in 4ms (Views: 3.3ms)
660
+ Processing by Overlay::GithubController#update as HTML
661
+ Completed 200 OK in 0ms (Views: 0.1ms)
662
+ Overlay register webhook for repo: org => test_org, repo => test_repo
663
+ Processing by Overlay::GithubController#update as HTML
664
+ Rendered text template (0.1ms)
665
+ Completed 200 OK in 5ms (Views: 4.1ms)
666
+ Processing by Overlay::GithubController#update as HTML
667
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
668
+ Completed 200 OK in 1ms (Views: 0.5ms)
669
+ Processing by Overlay::GithubController#update as HTML
670
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
671
+ Rendered text template (0.0ms)
672
+ Completed 200 OK in 3ms (Views: 3.1ms)
673
+ Processing by Overlay::GithubController#update as HTML
674
+ Completed 200 OK in 0ms (Views: 0.1ms)
675
+ Overlay register webhook for repo: org => test_org, repo => test_repo
676
+ Processing by Overlay::GithubController#update as HTML
677
+ Rendered text template (0.0ms)
678
+ Completed 200 OK in 4ms (Views: 3.3ms)
679
+ Processing by Overlay::GithubController#update as HTML
680
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
681
+ Completed 200 OK in 0ms (Views: 0.2ms)
682
+ Overlay register webhook for repo: org => test_org, repo => test_repo
683
+ Overlay register webhook for repo: org => test_org, repo => test_repo
684
+ Processing by Overlay::GithubController#update as HTML
685
+ Rendered text template (0.0ms)
686
+ Completed 200 OK in 3ms (Views: 3.2ms)
687
+ Processing by Overlay::GithubController#update as HTML
688
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
689
+ Completed 200 OK in 0ms (Views: 0.1ms)
690
+ Processing by Overlay::GithubController#update as HTML
691
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
692
+ Rendered text template (0.0ms)
693
+ Completed 200 OK in 4ms (Views: 3.2ms)
694
+ Overlay register webhook for repo: org => test_org, repo => test_repo
695
+ Processing by Overlay::GithubController#update as HTML
696
+ Completed 200 OK in 0ms (Views: 0.2ms)
697
+ Overlay register webhook for repo: org => test_org, repo => test_repo
698
+ Processing by Overlay::GithubController#update as HTML
699
+ Rendered text template (0.0ms)
700
+ Completed 200 OK in 3ms (Views: 3.2ms)
701
+ Processing by Overlay::GithubController#update as HTML
702
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
703
+ Completed 200 OK in 0ms (Views: 0.1ms)
704
+ Processing by Overlay::GithubController#update as HTML
705
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
706
+ Rendered text template (0.0ms)
707
+ Completed 200 OK in 3ms (Views: 3.1ms)
708
+ Processing by Overlay::GithubController#update as HTML
709
+ Completed 200 OK in 0ms (Views: 0.2ms)
710
+ Overlay register webhook for repo: org => test_org, repo => test_repo
711
+ Processing by Overlay::GithubController#update as HTML
712
+ Rendered text template (0.0ms)
713
+ Completed 200 OK in 3ms (Views: 3.1ms)
714
+ Processing by Overlay::GithubController#update as HTML
715
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
716
+ Completed 200 OK in 0ms (Views: 0.2ms)
717
+ Processing by Overlay::GithubController#update as HTML
718
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
719
+ Rendered text template (0.0ms)
720
+ Completed 200 OK in 4ms (Views: 3.2ms)
721
+ Overlay register webhook for repo: org => test_org, repo => test_repo
722
+ Processing by Overlay::GithubController#update as HTML
723
+ Completed 200 OK in 0ms (Views: 0.2ms)
724
+ Overlay register webhook for repo: org => test_org, repo => test_repo
725
+ Processing by Overlay::GithubController#update as HTML
726
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
727
+ Rendered text template (0.0ms)
728
+ Completed 200 OK in 4ms (Views: 3.2ms)
729
+ Processing by Overlay::GithubController#update as HTML
730
+ Completed 200 OK in 0ms (Views: 0.1ms)
731
+ Overlay register webhook for repo: org => test_org, repo => test_repo
732
+ Processing by Overlay::GithubController#update as HTML
733
+ Rendered text template (0.0ms)
734
+ Completed 200 OK in 4ms (Views: 3.3ms)
735
+ Processing by Overlay::GithubController#update as HTML
736
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
737
+ Completed 200 OK in 0ms (Views: 0.1ms)
738
+ Processing by Overlay::GithubController#update as HTML
739
+ Rendered text template (0.0ms)
740
+ Completed 200 OK in 3ms (Views: 3.1ms)
741
+ Processing by Overlay::GithubController#update as HTML
742
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
743
+ Completed 200 OK in 0ms (Views: 0.1ms)
744
+ Overlay register webhook for repo: org => test_org, repo => test_repo
745
+ Processing by Overlay::GithubController#update as HTML
746
+ Rendered text template (0.0ms)
747
+ Completed 200 OK in 3ms (Views: 3.1ms)
748
+ Processing by Overlay::GithubController#update as HTML
749
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
750
+ Completed 200 OK in 0ms (Views: 0.1ms)
751
+ Overlay register webhook for repo: org => test_org, repo => test_repo
752
+ Processing by Overlay::GithubController#update as HTML
753
+ Rendered text template (0.0ms)
754
+ Completed 200 OK in 3ms (Views: 3.2ms)
755
+ Processing by Overlay::GithubController#update as HTML
756
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
757
+ Completed 200 OK in 0ms (Views: 0.2ms)
758
+ Processing by Overlay::GithubController#update as HTML
759
+ Rendered text template (0.0ms)
760
+ Completed 200 OK in 4ms (Views: 3.3ms)
761
+ Processing by Overlay::GithubController#update as HTML
762
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
763
+ Completed 200 OK in 0ms (Views: 0.1ms)
764
+ Overlay register webhook for repo: org => test_org, repo => test_repo
765
+ Processing by Overlay::GithubController#update as HTML
766
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
767
+ Rendered text template (0.0ms)
768
+ Completed 200 OK in 4ms (Views: 3.3ms)
769
+ Overlay register webhook for repo: org => test_org, repo => test_repo
770
+ Processing by Overlay::GithubController#update as HTML
771
+ Completed 200 OK in 0ms (Views: 0.2ms)
772
+ Processing by Overlay::GithubController#update as HTML
773
+ Rendered text template (0.0ms)
774
+ Completed 200 OK in 3ms (Views: 3.1ms)
775
+ Overlay register webhook for repo: org => test_org, repo => test_repo
776
+ Processing by Overlay::GithubController#update as HTML
777
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
778
+ Completed 200 OK in 0ms (Views: 0.2ms)
779
+ Overlay register webhook for repo: org => test_org, repo => test_repo
780
+ Processing by Overlay::GithubController#update as HTML
781
+ Rendered text template (0.0ms)
782
+ Completed 200 OK in 4ms (Views: 3.6ms)
783
+ Processing by Overlay::GithubController#update as HTML
784
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
785
+ Completed 200 OK in 0ms (Views: 0.2ms)
786
+ Processing by Overlay::GithubController#update as HTML
787
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
788
+ Rendered text template (0.0ms)
789
+ Completed 200 OK in 4ms (Views: 3.5ms)
790
+ Processing by Overlay::GithubController#update as HTML
791
+ Completed 200 OK in 0ms (Views: 0.2ms)
792
+ Overlay register webhook for repo: org => test_org, repo => test_repo
793
+ Processing by Overlay::GithubController#update as HTML
794
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
795
+ Rendered text template (0.0ms)
796
+ Completed 200 OK in 4ms (Views: 3.4ms)
797
+ Overlay register webhook for repo: org => test_org, repo => test_repo
798
+ Processing by Overlay::GithubController#update as HTML
799
+ Completed 200 OK in 0ms (Views: 0.2ms)
800
+ Processing by Overlay::GithubController#update as HTML
801
+ Rendered text template (0.0ms)
802
+ Completed 200 OK in 3ms (Views: 3.1ms)
803
+ Processing by Overlay::GithubController#update as HTML
804
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
805
+ Completed 200 OK in 0ms (Views: 0.1ms)
806
+ Overlay register webhook for repo: org => test_org, repo => test_repo
807
+ Processing by Overlay::GithubController#update as HTML
808
+ Rendered text template (0.0ms)
809
+ Completed 200 OK in 4ms (Views: 3.3ms)
810
+ Overlay register webhook for repo: org => test_org, repo => test_repo
811
+ Processing by Overlay::GithubController#update as HTML
812
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
813
+ Completed 200 OK in 0ms (Views: 0.2ms)
814
+ Processing by Overlay::GithubController#update as HTML
815
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
816
+ Rendered text template (0.0ms)
817
+ Completed 200 OK in 3ms (Views: 3.1ms)
818
+ Processing by Overlay::GithubController#update as HTML
819
+ Completed 200 OK in 0ms (Views: 0.2ms)
820
+ Processing by Overlay::GithubController#update as HTML
821
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
822
+ Rendered text template (0.0ms)
823
+ Completed 200 OK in 4ms (Views: 3.4ms)
824
+ Processing by Overlay::GithubController#update as HTML
825
+ Completed 200 OK in 0ms (Views: 0.2ms)
826
+ Overlay register webhook for repo: org => test_org, repo => test_repo
827
+ Processing by Overlay::GithubController#update as HTML
828
+ Rendered text template (0.0ms)
829
+ Completed 200 OK in 3ms (Views: 3.1ms)
830
+ Processing by Overlay::GithubController#update as HTML
831
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
832
+ Completed 200 OK in 0ms (Views: 0.1ms)
833
+ Overlay register webhook for repo: org => test_org, repo => test_repo
834
+ Processing by Overlay::GithubController#update as HTML
835
+ Rendered text template (0.0ms)
836
+ Completed 200 OK in 3ms (Views: 3.2ms)
837
+ Processing by Overlay::GithubController#update as HTML
838
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
839
+ Completed 200 OK in 0ms (Views: 0.1ms)
840
+ Overlay register webhook for repo: org => test_org, repo => test_repo
841
+ Processing by Overlay::GithubController#update as HTML
842
+ Rendered text template (0.0ms)
843
+ Completed 200 OK in 4ms (Views: 3.5ms)
844
+ Processing by Overlay::GithubController#update as HTML
845
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
846
+ Completed 200 OK in 0ms (Views: 0.2ms)
847
+ Overlay register webhook for repo: org => test_org, repo => test_repo
848
+ Processing by Overlay::GithubController#update as HTML
849
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
850
+ Rendered text template (0.0ms)
851
+ Completed 200 OK in 3ms (Views: 3.1ms)
852
+ Overlay register webhook for repo: org => test_org, repo => test_repo
853
+ Processing by Overlay::GithubController#update as HTML
854
+ Completed 200 OK in 0ms (Views: 0.2ms)
855
+ Processing by Overlay::GithubController#update as HTML
856
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
857
+ Rendered text template (0.0ms)
858
+ Completed 200 OK in 4ms (Views: 3.1ms)
859
+ Processing by Overlay::GithubController#update as HTML
860
+ Completed 200 OK in 0ms (Views: 0.1ms)
861
+ Overlay register webhook for repo: org => test_org, repo => test_repo
862
+ Overlay register webhook for repo: org => test_org, repo => test_repo
863
+ Processing by Overlay::GithubController#update as HTML
864
+ Rendered text template (0.0ms)
865
+ Completed 200 OK in 3ms (Views: 3.2ms)
866
+ Processing by Overlay::GithubController#update as HTML
867
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
868
+ Completed 200 OK in 0ms (Views: 0.1ms)
869
+ Processing by Overlay::GithubController#update as HTML
870
+ Rendered text template (0.0ms)
871
+ Completed 200 OK in 3ms (Views: 3.1ms)
872
+ Processing by Overlay::GithubController#update as HTML
873
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
874
+ Completed 200 OK in 0ms (Views: 0.2ms)
875
+ Overlay register webhook for repo: org => test_org, repo => test_repo
876
+ Overlay register webhook for repo: org => test_org, repo => test_repo
877
+ Overlay register webhook for repo: org => test_org, repo => test_repo
878
+ Processing by Overlay::GithubController#update as HTML
879
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
880
+ Rendered text template (0.0ms)
881
+ Completed 200 OK in 6ms (Views: 5.3ms)
882
+ Processing by Overlay::GithubController#update as HTML
883
+ Completed 200 OK in 0ms (Views: 0.2ms)
884
+ Processing by Overlay::GithubController#update as HTML
885
+ Rendered text template (0.0ms)
886
+ Completed 200 OK in 4ms (Views: 3.3ms)
887
+ Processing by Overlay::GithubController#update as HTML
888
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
889
+ Completed 200 OK in 0ms (Views: 0.2ms)
890
+ Overlay register webhook for repo: org => test_org, repo => test_repo
891
+ Overlay register webhook for repo: org => test_org, repo => test_repo
892
+ Processing by Overlay::GithubController#update as HTML
893
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
894
+ Rendered text template (0.0ms)
895
+ Completed 200 OK in 4ms (Views: 3.2ms)
896
+ Processing by Overlay::GithubController#update as HTML
897
+ Completed 200 OK in 0ms (Views: 0.1ms)
898
+ Overlay register webhook for repo: org => test_org, repo => test_repo
899
+ Overlay register webhook for repo: org => test_org, repo => test_repo
900
+ Overlay register webhook for repo: org => test_org, repo => test_repo
901
+ Overlay register webhook for repo: org => test_org, repo => test_repo
902
+ Processing by Overlay::GithubController#update as HTML
903
+ Rendered text template (0.0ms)
904
+ Completed 200 OK in 4ms (Views: 3.5ms)
905
+ Processing by Overlay::GithubController#update as HTML
906
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
907
+ Completed 200 OK in 0ms (Views: 0.2ms)
908
+ Overlay register webhook for repo: org => test_org, repo => test_repo
909
+ Overlay register webhook for repo: org => test_org, repo => test_repo
910
+ Processing by Overlay::GithubController#update as HTML
911
+ Rendered text template (0.0ms)
912
+ Completed 200 OK in 3ms (Views: 3.2ms)
913
+ Processing by Overlay::GithubController#update as HTML
914
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
915
+ Completed 200 OK in 0ms (Views: 0.2ms)
916
+ Overlay register webhook for repo: org => test_org, repo => test_repo
917
+ Overlay register webhook for repo: org => test_org, repo => test_repo
918
+ Processing by Overlay::GithubController#update as HTML
919
+ Rendered text template (0.0ms)
920
+ Completed 200 OK in 4ms (Views: 3.4ms)
921
+ Processing by Overlay::GithubController#update as HTML
922
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
923
+ Completed 200 OK in 0ms (Views: 0.2ms)
924
+ Processing by Overlay::GithubController#update as HTML
925
+ Rendered text template (0.0ms)
926
+ Completed 200 OK in 3ms (Views: 3.2ms)
927
+ Processing by Overlay::GithubController#update as HTML
928
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
929
+ Completed 200 OK in 0ms (Views: 0.2ms)
930
+ Overlay register webhook for repo: org => test_org, repo => test_repo
931
+ Overlay register webhook for repo: org => test_org, repo => test_repo
932
+ Processing by Overlay::GithubController#update as HTML
933
+ Rendered text template (0.0ms)
934
+ Completed 200 OK in 3ms (Views: 3.2ms)
935
+ Overlay register webhook for repo: org => test_org, repo => test_repo
936
+ Overlay register webhook for repo: org => test_org, repo => test_repo
937
+ Processing by Overlay::GithubController#update as HTML
938
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
939
+ Completed 200 OK in 0ms (Views: 0.2ms)
940
+ Overlay register webhook for repo: org => test_org, repo => test_repo
941
+ Overlay register webhook for repo: org => test_org, repo => test_repo
942
+ Processing by Overlay::GithubController#update as HTML
943
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
944
+ Rendered text template (0.0ms)
945
+ Completed 200 OK in 4ms (Views: 3.2ms)
946
+ Processing by Overlay::GithubController#update as HTML
947
+ Completed 200 OK in 0ms (Views: 0.1ms)
948
+ Overlay register webhook for repo: org => test_org, repo => test_repo
949
+ Overlay register webhook for repo: org => test_org, repo => test_repo
950
+ Processing by Overlay::GithubController#update as HTML
951
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
952
+ Rendered text template (0.0ms)
953
+ Completed 200 OK in 4ms (Views: 3.5ms)
954
+ Processing by Overlay::GithubController#update as HTML
955
+ Completed 200 OK in 0ms (Views: 0.2ms)
956
+ Overlay register webhook for repo: org => test_org, repo => test_repo
957
+ Overlay register webhook for repo: org => test_org, repo => test_repo
958
+ Processing by Overlay::GithubController#update as HTML
959
+ Rendered text template (0.0ms)
960
+ Completed 200 OK in 4ms (Views: 3.2ms)
961
+ Processing by Overlay::GithubController#update as HTML
962
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
963
+ Completed 200 OK in 0ms (Views: 0.2ms)
964
+ Processing by Overlay::GithubController#update as HTML
965
+ Rendered text template (0.0ms)
966
+ Completed 200 OK in 3ms (Views: 3.1ms)
967
+ Processing by Overlay::GithubController#update as HTML
968
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
969
+ Completed 200 OK in 0ms (Views: 0.2ms)
970
+ Overlay register webhook for repo: org => test_org, repo => test_repo
971
+ Overlay register webhook for repo: org => test_org, repo => test_repo
972
+ Overlay register webhook for repo: org => test_org, repo => test_repo
973
+ Overlay register webhook for repo: org => test_org, repo => test_repo
974
+ Processing by Overlay::GithubController#update as HTML
975
+ Rendered text template (0.0ms)
976
+ Completed 200 OK in 4ms (Views: 3.6ms)
977
+ Processing by Overlay::GithubController#update as HTML
978
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
979
+ Completed 200 OK in 0ms (Views: 0.2ms)
980
+ Processing by Overlay::GithubController#update as HTML
981
+ Rendered text template (0.0ms)
982
+ Completed 200 OK in 3ms (Views: 3.0ms)
983
+ Processing by Overlay::GithubController#update as HTML
984
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
985
+ Completed 200 OK in 0ms (Views: 0.2ms)
986
+ Overlay register webhook for repo: org => test_org, repo => test_repo
987
+ Overlay register webhook for repo: org => test_org, repo => test_repo
988
+ Processing by Overlay::GithubController#update as HTML
989
+ Rendered text template (0.0ms)
990
+ Completed 200 OK in 3ms (Views: 3.2ms)
991
+ Processing by Overlay::GithubController#update as HTML
992
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
993
+ Completed 200 OK in 0ms (Views: 0.1ms)
994
+ Overlay register webhook for repo: org => test_org, repo => test_repo
995
+ Overlay register webhook for repo: org => test_org, repo => test_repo
996
+ Overlay register webhook for repo: org => test_org, repo => test_repo
997
+ Overlay register webhook for repo: org => test_org, repo => test_repo
998
+ Processing by Overlay::GithubController#update as HTML
999
+ Rendered text template (0.0ms)
1000
+ Completed 200 OK in 4ms (Views: 3.3ms)
1001
+ Processing by Overlay::GithubController#update as HTML
1002
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1003
+ Completed 200 OK in 0ms (Views: 0.1ms)
1004
+ Processing by Overlay::GithubController#update as HTML
1005
+ Rendered text template (0.0ms)
1006
+ Completed 200 OK in 3ms (Views: 3.2ms)
1007
+ Processing by Overlay::GithubController#update as HTML
1008
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1009
+ Completed 200 OK in 0ms (Views: 0.2ms)
1010
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1011
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1012
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1013
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1014
+ Processing by Overlay::GithubController#update as HTML
1015
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1016
+ Rendered text template (0.0ms)
1017
+ Completed 200 OK in 4ms (Views: 3.6ms)
1018
+ Processing by Overlay::GithubController#update as HTML
1019
+ Completed 200 OK in 0ms (Views: 0.2ms)
1020
+ Processing by Overlay::GithubController#update as HTML
1021
+ Rendered text template (0.0ms)
1022
+ Completed 200 OK in 3ms (Views: 3.1ms)
1023
+ Processing by Overlay::GithubController#update as HTML
1024
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1025
+ Completed 200 OK in 0ms (Views: 0.1ms)
1026
+ Processing by Overlay::GithubController#update as HTML
1027
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1028
+ Rendered text template (0.0ms)
1029
+ Completed 200 OK in 4ms (Views: 3.4ms)
1030
+ Processing by Overlay::GithubController#update as HTML
1031
+ Completed 200 OK in 0ms (Views: 0.2ms)
1032
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1033
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1034
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1035
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1036
+ Processing by Overlay::GithubController#update as HTML
1037
+ Rendered text template (0.0ms)
1038
+ Completed 200 OK in 4ms (Views: 3.5ms)
1039
+ Processing by Overlay::GithubController#update as HTML
1040
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1041
+ Completed 200 OK in 0ms (Views: 0.2ms)
1042
+ Processing by Overlay::GithubController#update as HTML
1043
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1044
+ Rendered text template (0.0ms)
1045
+ Completed 200 OK in 3ms (Views: 3.1ms)
1046
+ Processing by Overlay::GithubController#update as HTML
1047
+ Completed 200 OK in 0ms (Views: 0.1ms)
1048
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1049
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1050
+ Processing by Overlay::GithubController#update as HTML
1051
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1052
+ Rendered text template (0.0ms)
1053
+ Completed 200 OK in 4ms (Views: 3.2ms)
1054
+ Processing by Overlay::GithubController#update as HTML
1055
+ Completed 200 OK in 0ms (Views: 0.1ms)
1056
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1057
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1058
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1059
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1060
+ Processing by Overlay::GithubController#update as HTML
1061
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1062
+ Rendered text template (0.0ms)
1063
+ Completed 200 OK in 4ms (Views: 3.5ms)
1064
+ Processing by Overlay::GithubController#update as HTML
1065
+ Completed 200 OK in 0ms (Views: 0.2ms)
1066
+ Processing by Overlay::GithubController#update as HTML
1067
+ Rendered text template (0.0ms)
1068
+ Completed 200 OK in 3ms (Views: 3.1ms)
1069
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1070
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1071
+ Processing by Overlay::GithubController#update as HTML
1072
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1073
+ Completed 200 OK in 0ms (Views: 0.2ms)
1074
+ Processing by Overlay::GithubController#update as HTML
1075
+ Rendered text template (0.0ms)
1076
+ Completed 200 OK in 4ms (Views: 3.3ms)
1077
+ Processing by Overlay::GithubController#update as HTML
1078
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1079
+ Completed 200 OK in 0ms (Views: 0.2ms)
1080
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1081
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1082
+ Processing by Overlay::GithubController#update as HTML
1083
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1084
+ Rendered text template (0.0ms)
1085
+ Completed 200 OK in 4ms (Views: 3.7ms)
1086
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1087
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1088
+ Processing by Overlay::GithubController#update as HTML
1089
+ Completed 200 OK in 0ms (Views: 0.2ms)
1090
+ Processing by Overlay::GithubController#update as HTML
1091
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1092
+ Rendered text template (0.0ms)
1093
+ Completed 200 OK in 4ms (Views: 3.2ms)
1094
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1095
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1096
+ Processing by Overlay::GithubController#update as HTML
1097
+ Completed 200 OK in 0ms (Views: 0.2ms)
1098
+ Processing by Overlay::GithubController#update as HTML
1099
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1100
+ Rendered text template (0.0ms)
1101
+ Completed 200 OK in 3ms (Views: 3.1ms)
1102
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1103
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1104
+ Processing by Overlay::GithubController#update as HTML
1105
+ Completed 200 OK in 0ms (Views: 0.2ms)
1106
+ Processing by Overlay::GithubController#update as HTML
1107
+ Rendered text template (0.0ms)
1108
+ Completed 200 OK in 3ms (Views: 3.0ms)
1109
+ Processing by Overlay::GithubController#update as HTML
1110
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1111
+ Completed 200 OK in 0ms (Views: 0.1ms)
1112
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1113
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1114
+ Processing by Overlay::GithubController#update as HTML
1115
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1116
+ Rendered text template (0.0ms)
1117
+ Completed 200 OK in 3ms (Views: 3.1ms)
1118
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1119
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1120
+ Processing by Overlay::GithubController#update as HTML
1121
+ Completed 200 OK in 0ms (Views: 0.2ms)
1122
+ Processing by Overlay::GithubController#update as HTML
1123
+ Rendered text template (0.0ms)
1124
+ Completed 200 OK in 3ms (Views: 3.1ms)
1125
+ Processing by Overlay::GithubController#update as HTML
1126
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1127
+ Completed 200 OK in 0ms (Views: 0.2ms)
1128
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1129
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1130
+ Processing by Overlay::GithubController#update as HTML
1131
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1132
+ Rendered text template (0.0ms)
1133
+ Completed 200 OK in 3ms (Views: 3.0ms)
1134
+ Processing by Overlay::GithubController#update as HTML
1135
+ Completed 200 OK in 0ms (Views: 0.1ms)
1136
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1137
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1138
+ Processing by Overlay::GithubController#update as HTML
1139
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1140
+ Rendered text template (0.0ms)
1141
+ Completed 200 OK in 4ms (Views: 3.9ms)
1142
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1143
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1144
+ Processing by Overlay::GithubController#update as HTML
1145
+ Completed 200 OK in 0ms (Views: 0.2ms)
1146
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1147
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1148
+ Processing by Overlay::GithubController#update as HTML
1149
+ Rendered text template (0.0ms)
1150
+ Completed 200 OK in 4ms (Views: 3.5ms)
1151
+ Processing by Overlay::GithubController#update as HTML
1152
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1153
+ Completed 200 OK in 0ms (Views: 0.2ms)
1154
+ Processing by Overlay::GithubController#update as HTML
1155
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1156
+ Rendered text template (0.0ms)
1157
+ Completed 200 OK in 4ms (Views: 3.2ms)
1158
+ Processing by Overlay::GithubController#update as HTML
1159
+ Completed 200 OK in 0ms (Views: 0.1ms)
1160
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1161
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1162
+ Processing by Overlay::GithubController#update as HTML
1163
+ Rendered text template (0.0ms)
1164
+ Completed 200 OK in 4ms (Views: 3.3ms)
1165
+ Processing by Overlay::GithubController#update as HTML
1166
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1167
+ Completed 200 OK in 0ms (Views: 0.1ms)
1168
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1169
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1170
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1171
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1172
+ Processing by Overlay::GithubController#update as HTML
1173
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1174
+ Rendered text template (0.0ms)
1175
+ Completed 200 OK in 4ms (Views: 3.2ms)
1176
+ Processing by Overlay::GithubController#update as HTML
1177
+ Completed 200 OK in 0ms (Views: 0.1ms)
1178
+ Processing by Overlay::GithubController#update as HTML
1179
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1180
+ Rendered text template (0.0ms)
1181
+ Completed 200 OK in 3ms (Views: 3.1ms)
1182
+ Processing by Overlay::GithubController#update as HTML
1183
+ Completed 200 OK in 0ms (Views: 0.2ms)
1184
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1185
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1186
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1187
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1188
+ Processing by Overlay::GithubController#update as HTML
1189
+ Rendered text template (0.0ms)
1190
+ Completed 200 OK in 4ms (Views: 3.3ms)
1191
+ Processing by Overlay::GithubController#update as HTML
1192
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1193
+ Completed 200 OK in 0ms (Views: 0.1ms)
1194
+ Processing by Overlay::GithubController#update as HTML
1195
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1196
+ Rendered text template (0.0ms)
1197
+ Completed 200 OK in 3ms (Views: 3.1ms)
1198
+ Processing by Overlay::GithubController#update as HTML
1199
+ Completed 200 OK in 0ms (Views: 0.1ms)
1200
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1201
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1202
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1203
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1204
+ Processing by Overlay::GithubController#update as HTML
1205
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1206
+ Rendered text template (0.0ms)
1207
+ Completed 200 OK in 4ms (Views: 3.3ms)
1208
+ Processing by Overlay::GithubController#update as HTML
1209
+ Completed 200 OK in 0ms (Views: 0.1ms)
1210
+ Processing by Overlay::GithubController#update as HTML
1211
+ Rendered text template (0.0ms)
1212
+ Completed 200 OK in 4ms (Views: 3.3ms)
1213
+ Processing by Overlay::GithubController#update as HTML
1214
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1215
+ Completed 200 OK in 0ms (Views: 0.2ms)
1216
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1217
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1218
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1219
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1220
+ Processing by Overlay::GithubController#update as HTML
1221
+ Rendered text template (0.0ms)
1222
+ Completed 200 OK in 3ms (Views: 3.1ms)
1223
+ Processing by Overlay::GithubController#update as HTML
1224
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1225
+ Completed 200 OK in 0ms (Views: 0.1ms)
1226
+ Processing by Overlay::GithubController#update as HTML
1227
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1228
+ Rendered text template (0.0ms)
1229
+ Completed 200 OK in 5ms (Views: 4.1ms)
1230
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1231
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1232
+ Processing by Overlay::GithubController#update as HTML
1233
+ Completed 200 OK in 0ms (Views: 0.2ms)
1234
+ Processing by Overlay::GithubController#update as HTML
1235
+ Rendered text template (0.0ms)
1236
+ Completed 200 OK in 3ms (Views: 3.2ms)
1237
+ Processing by Overlay::GithubController#update as HTML
1238
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1239
+ Completed 200 OK in 0ms (Views: 0.1ms)
1240
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1241
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1242
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1243
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1244
+ Processing by Overlay::GithubController#update as HTML
1245
+ Rendered text template (0.0ms)
1246
+ Completed 200 OK in 4ms (Views: 3.5ms)
1247
+ Processing by Overlay::GithubController#update as HTML
1248
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1249
+ Completed 200 OK in 0ms (Views: 0.2ms)
1250
+ Processing by Overlay::GithubController#update as HTML
1251
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1252
+ Rendered text template (0.0ms)
1253
+ Completed 200 OK in 3ms (Views: 3.0ms)
1254
+ Processing by Overlay::GithubController#update as HTML
1255
+ Completed 200 OK in 0ms (Views: 0.1ms)
1256
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1257
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1258
+ Processing by Overlay::GithubController#update as HTML
1259
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1260
+ Rendered text template (0.0ms)
1261
+ Completed 200 OK in 4ms (Views: 3.2ms)
1262
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1263
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1264
+ Processing by Overlay::GithubController#update as HTML
1265
+ Completed 200 OK in 0ms (Views: 0.2ms)
1266
+ Processing by Overlay::GithubController#update as HTML
1267
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1268
+ Rendered text template (0.0ms)
1269
+ Completed 200 OK in 4ms (Views: 3.2ms)
1270
+ Processing by Overlay::GithubController#update as HTML
1271
+ Completed 200 OK in 0ms (Views: 0.2ms)
1272
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1273
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1274
+ Processing by Overlay::GithubController#update as HTML
1275
+ Rendered text template (0.0ms)
1276
+ Completed 200 OK in 3ms (Views: 3.1ms)
1277
+ Processing by Overlay::GithubController#update as HTML
1278
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1279
+ Completed 200 OK in 0ms (Views: 0.1ms)
1280
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1281
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1282
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1283
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1284
+ Processing by Overlay::GithubController#update as HTML
1285
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1286
+ Rendered text template (0.0ms)
1287
+ Completed 200 OK in 4ms (Views: 3.4ms)
1288
+ Processing by Overlay::GithubController#update as HTML
1289
+ Completed 200 OK in 0ms (Views: 0.1ms)
1290
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1291
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1292
+ Processing by Overlay::GithubController#update as HTML
1293
+ Rendered text template (0.0ms)
1294
+ Completed 200 OK in 4ms (Views: 3.5ms)
1295
+ Processing by Overlay::GithubController#update as HTML
1296
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1297
+ Completed 200 OK in 0ms (Views: 0.2ms)
1298
+ Processing by Overlay::GithubController#update as HTML
1299
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1300
+ Rendered text template (0.0ms)
1301
+ Completed 200 OK in 3ms (Views: 3.1ms)
1302
+ Processing by Overlay::GithubController#update as HTML
1303
+ Completed 200 OK in 0ms (Views: 0.1ms)
1304
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1305
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1306
+ Processing by Overlay::GithubController#update as HTML
1307
+ Rendered text template (0.0ms)
1308
+ Completed 200 OK in 4ms (Views: 3.6ms)
1309
+ Processing by Overlay::GithubController#update as HTML
1310
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1311
+ Completed 200 OK in 0ms (Views: 0.2ms)
1312
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1313
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1314
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1315
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1316
+ Processing by Overlay::GithubController#update as HTML
1317
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1318
+ Rendered text template (0.0ms)
1319
+ Completed 200 OK in 5ms (Views: 4.9ms)
1320
+ Processing by Overlay::GithubController#update as HTML
1321
+ Completed 200 OK in 0ms (Views: 0.2ms)
1322
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1323
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1324
+ Processing by Overlay::GithubController#update as HTML
1325
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1326
+ Rendered text template (0.0ms)
1327
+ Completed 200 OK in 4ms (Views: 3.4ms)
1328
+ Processing by Overlay::GithubController#update as HTML
1329
+ Completed 200 OK in 0ms (Views: 0.2ms)
1330
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1331
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1332
+ Processing by Overlay::GithubController#update as HTML
1333
+ Rendered text template (0.0ms)
1334
+ Completed 200 OK in 3ms (Views: 3.2ms)
1335
+ Processing by Overlay::GithubController#update as HTML
1336
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1337
+ Completed 200 OK in 0ms (Views: 0.1ms)
1338
+ Processing by Overlay::GithubController#update as HTML
1339
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1340
+ Rendered text template (0.0ms)
1341
+ Completed 200 OK in 4ms (Views: 3.2ms)
1342
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1343
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1344
+ Processing by Overlay::GithubController#update as HTML
1345
+ Completed 200 OK in 0ms (Views: 0.2ms)
1346
+ Processing by Overlay::GithubController#update as HTML
1347
+ Rendered text template (0.0ms)
1348
+ Completed 200 OK in 3ms (Views: 3.2ms)
1349
+ Processing by Overlay::GithubController#update as HTML
1350
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1351
+ Completed 200 OK in 0ms (Views: 0.1ms)
1352
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1353
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1354
+ Processing by Overlay::GithubController#update as HTML
1355
+ Rendered text template (0.0ms)
1356
+ Completed 200 OK in 3ms (Views: 3.2ms)
1357
+ Processing by Overlay::GithubController#update as HTML
1358
+ Rendered text template (0.0ms)
1359
+ Completed 200 OK in 3ms (Views: 3.2ms)
1360
+ Processing by Overlay::GithubController#update as HTML
1361
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1362
+ Completed 200 OK in 0ms (Views: 0.1ms)
1363
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1364
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1365
+ Processing by Overlay::GithubController#update as HTML
1366
+ Rendered text template (0.0ms)
1367
+ Completed 200 OK in 3ms (Views: 3.2ms)
1368
+ Processing by Overlay::GithubController#update as HTML
1369
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1370
+ Completed 200 OK in 0ms (Views: 0.1ms)
1371
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1372
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1373
+ Processing by Overlay::GithubController#update as HTML
1374
+ Rendered text template (0.0ms)
1375
+ Completed 200 OK in 4ms (Views: 3.5ms)
1376
+ Processing by Overlay::GithubController#update as HTML
1377
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1378
+ Completed 200 OK in 0ms (Views: 0.2ms)
1379
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1380
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1381
+ Processing by Overlay::GithubController#update as HTML
1382
+ Rendered text template (0.0ms)
1383
+ Completed 200 OK in 5ms (Views: 4.2ms)
1384
+ Processing by Overlay::GithubController#update as HTML
1385
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1386
+ Completed 200 OK in 0ms (Views: 0.2ms)
1387
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1388
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1389
+ Processing by Overlay::GithubController#update as HTML
1390
+ Rendered text template (0.0ms)
1391
+ Completed 200 OK in 3ms (Views: 3.2ms)
1392
+ Processing by Overlay::GithubController#update as HTML
1393
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1394
+ Completed 200 OK in 0ms (Views: 0.1ms)
1395
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1396
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1397
+ Processing by Overlay::GithubController#update as HTML
1398
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1399
+ Rendered text template (0.0ms)
1400
+ Completed 200 OK in 3ms (Views: 3.0ms)
1401
+ Processing by Overlay::GithubController#update as HTML
1402
+ Completed 200 OK in 0ms (Views: 0.1ms)
1403
+ Overlay subscribing to redis channel: overlay_publisher_test_org_test_repo
1404
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1405
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1406
+ Processing by Overlay::GithubController#update as HTML
1407
+ Rendered text template (0.0ms)
1408
+ Completed 200 OK in 4ms (Views: 3.3ms)
1409
+ Processing by Overlay::GithubController#update as HTML
1410
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1411
+ Completed 200 OK in 1ms (Views: 0.2ms)
1412
+ Overlay subscribing to redis channel: test_key
1413
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1414
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1415
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1416
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1417
+ Overlay subscribing to redis channel: test_key
1418
+ Processing by Overlay::GithubController#update as HTML
1419
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1420
+ Rendered text template (0.0ms)
1421
+ Completed 200 OK in 4ms (Views: 3.4ms)
1422
+ Processing by Overlay::GithubController#update as HTML
1423
+ Completed 200 OK in 0ms (Views: 0.1ms)
1424
+ Overlay subscribing to redis channel: test_key
1425
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1426
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1427
+ Processing by Overlay::GithubController#update as HTML
1428
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1429
+ Rendered text template (0.0ms)
1430
+ Completed 200 OK in 4ms (Views: 3.3ms)
1431
+ Processing by Overlay::GithubController#update as HTML
1432
+ Completed 200 OK in 0ms (Views: 0.2ms)
1433
+ Processing by Overlay::GithubController#update as HTML
1434
+ Rendered text template (0.0ms)
1435
+ Completed 200 OK in 3ms (Views: 3.2ms)
1436
+ Processing by Overlay::GithubController#update as HTML
1437
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1438
+ Completed 200 OK in 0ms (Views: 0.1ms)
1439
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1440
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1441
+ Overlay subscribing to redis channel: test_key
1442
+ Processing by Overlay::GithubController#update as HTML
1443
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1444
+ Rendered text template (0.0ms)
1445
+ Completed 200 OK in 4ms (Views: 3.2ms)
1446
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1447
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1448
+ Overlay subscribing to redis channel: test_key
1449
+ Processing by Overlay::GithubController#update as HTML
1450
+ Completed 200 OK in 0ms (Views: 0.2ms)
1451
+ Processing by Overlay::GithubController#update as HTML
1452
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1453
+ Rendered text template (0.0ms)
1454
+ Completed 200 OK in 3ms (Views: 3.1ms)
1455
+ Processing by Overlay::GithubController#update as HTML
1456
+ Completed 200 OK in 0ms (Views: 0.1ms)
1457
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1458
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1459
+ Overlay subscribing to redis channel: test_key
1460
+ Overlay found added file in hook: lib/test/test.rb
1461
+ Overlay found added file in hook: lib/test/test.rb
1462
+ Overlay subscribing to redis channel: test_key
1463
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1464
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1465
+ Processing by Overlay::GithubController#update as HTML
1466
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1467
+ Rendered text template (0.0ms)
1468
+ Completed 200 OK in 4ms (Views: 3.6ms)
1469
+ Processing by Overlay::GithubController#update as HTML
1470
+ Completed 200 OK in 0ms (Views: 0.2ms)
1471
+ Processing by Overlay::GithubController#update as HTML
1472
+ Rendered text template (0.0ms)
1473
+ Completed 200 OK in 4ms (Views: 3.4ms)
1474
+ Processing by Overlay::GithubController#update as HTML
1475
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1476
+ Completed 200 OK in 0ms (Views: 0.1ms)
1477
+ Overlay subscribing to redis channel: test_key
1478
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1479
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1480
+ Overlay found added file in hook: lib/test/test.rb
1481
+ Overlay found modified file in hook: lib/test/test.rb
1482
+ Overlay found deleted file in hook: lib/test/test.rb
1483
+ Processing by Overlay::GithubController#update as HTML
1484
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1485
+ Rendered text template (0.0ms)
1486
+ Completed 200 OK in 4ms (Views: 3.2ms)
1487
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1488
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1489
+ Overlay subscribing to redis channel: test_key
1490
+ Overlay found added file in hook: lib/test/test.rb
1491
+ Overlay found modified file in hook: lib/test/test.rb
1492
+ Overlay found deleted file in hook: lib/test/test.rb
1493
+ Processing by Overlay::GithubController#update as HTML
1494
+ Completed 200 OK in 0ms (Views: 0.2ms)
1495
+ Overlay subscribing to redis channel: test_key
1496
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1497
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1498
+ Overlay found added file in hook: lib/test/test.rb
1499
+ Overlay found modified file in hook: lib/test/test.rb
1500
+ Overlay found deleted file in hook: lib/test/test.rb
1501
+ Overlay found added file in hook: lib/test/test.rb
1502
+ Overlay found modified file in hook: lib/test/test.rb
1503
+ Overlay found deleted file in hook: lib/test/test.rb
1504
+ Processing by Overlay::GithubController#update as HTML
1505
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1506
+ Rendered text template (0.0ms)
1507
+ Completed 200 OK in 3ms (Views: 3.1ms)
1508
+ Processing by Overlay::GithubController#update as HTML
1509
+ Completed 200 OK in 0ms (Views: 0.1ms)
1510
+ Processing by Overlay::GithubController#update as HTML
1511
+ Rendered text template (0.0ms)
1512
+ Completed 200 OK in 5ms (Views: 4.5ms)
1513
+ Overlay subscribing to redis channel: test_key
1514
+ Overlay found added file in hook: lib/test/test.rb
1515
+ Overlay found modified file in hook: lib/test/test.rb
1516
+ Overlay found deleted file in hook: lib/test/test.rb
1517
+ Overlay found added file in hook: lib/test/test.rb
1518
+ Overlay found modified file in hook: lib/test/test.rb
1519
+ Overlay found deleted file in hook: lib/test/test.rb
1520
+ Overlay found added file in hook: lib/test/test.rb
1521
+ Overlay found modified file in hook: lib/test/test.rb
1522
+ Overlay found deleted file in hook: lib/test/test.rb
1523
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1524
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1525
+ Processing by Overlay::GithubController#update as HTML
1526
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1527
+ Completed 200 OK in 1ms (Views: 0.3ms)
1528
+ Overlay found added file in hook: lib/test/test.rb
1529
+ Overlay found modified file in hook: lib/test/test.rb
1530
+ Overlay found deleted file in hook: lib/test/test.rb
1531
+ Overlay found added file in hook: lib/test/test.rb
1532
+ Overlay found modified file in hook: lib/test/test.rb
1533
+ Overlay found deleted file in hook: lib/test/test.rb
1534
+ Overlay found added file in hook: lib/test/test.rb
1535
+ Overlay found modified file in hook: lib/test/test.rb
1536
+ Overlay found deleted file in hook: lib/test/test.rb
1537
+ Overlay subscribing to redis channel: test_key
1538
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1539
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1540
+ Processing by Overlay::GithubController#update as HTML
1541
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1542
+ Rendered text template (0.0ms)
1543
+ Completed 200 OK in 4ms (Views: 3.3ms)
1544
+ Processing by Overlay::GithubController#update as HTML
1545
+ Completed 200 OK in 0ms (Views: 0.1ms)
1546
+ Processing by Overlay::GithubController#update as HTML
1547
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1548
+ Rendered text template (0.0ms)
1549
+ Completed 200 OK in 4ms (Views: 3.3ms)
1550
+ Processing by Overlay::GithubController#update as HTML
1551
+ Completed 200 OK in 0ms (Views: 0.2ms)
1552
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1553
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1554
+ Overlay subscribing to redis channel: test_key
1555
+ Overlay found added file in hook: lib/test/test.rb
1556
+ Overlay found modified file in hook: lib/test/test.rb
1557
+ Overlay found deleted file in hook: lib/test/test.rb
1558
+ Overlay found added file in hook: lib/test/test.rb
1559
+ Overlay found modified file in hook: lib/test/test.rb
1560
+ Overlay found deleted file in hook: lib/test/test.rb
1561
+ Overlay found added file in hook: lib/test/test.rb
1562
+ Overlay found modified file in hook: lib/test/test.rb
1563
+ Overlay found deleted file in hook: lib/test/test.rb
1564
+ Processing by Overlay::GithubController#update as HTML
1565
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1566
+ Rendered text template (0.0ms)
1567
+ Completed 200 OK in 3ms (Views: 3.1ms)
1568
+ Processing by Overlay::GithubController#update as HTML
1569
+ Completed 200 OK in 0ms (Views: 0.1ms)
1570
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1571
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1572
+ Overlay found added file in hook: lib/test/test.rb
1573
+ Overlay found modified file in hook: lib/test/test.rb
1574
+ Overlay found deleted file in hook: lib/test/test.rb
1575
+ Overlay found added file in hook: lib/test/test.rb
1576
+ Overlay found modified file in hook: lib/test/test.rb
1577
+ Overlay found deleted file in hook: lib/test/test.rb
1578
+ Overlay found added file in hook: lib/test/test.rb
1579
+ Overlay found modified file in hook: lib/test/test.rb
1580
+ Overlay found deleted file in hook: lib/test/test.rb
1581
+ Overlay subscribing to redis channel: test_key
1582
+ Overlay found added file in hook: lib/test/test.rb
1583
+ Overlay found modified file in hook: lib/test/test.rb
1584
+ Overlay found deleted file in hook: lib/test/test.rb
1585
+ Overlay found added file in hook: lib/test/test.rb
1586
+ Overlay found modified file in hook: lib/test/test.rb
1587
+ Overlay found deleted file in hook: lib/test/test.rb
1588
+ Overlay found added file in hook: lib/test/test.rb
1589
+ Overlay found modified file in hook: lib/test/test.rb
1590
+ Overlay found deleted file in hook: lib/test/test.rb
1591
+ Overlay subscribing to redis channel: test_key
1592
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1593
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1594
+ Processing by Overlay::GithubController#update as HTML
1595
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1596
+ Rendered text template (0.0ms)
1597
+ Completed 200 OK in 4ms (Views: 3.4ms)
1598
+ Processing by Overlay::GithubController#update as HTML
1599
+ Completed 200 OK in 0ms (Views: 0.2ms)
1600
+ Processing by Overlay::GithubController#update as HTML
1601
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1602
+ Rendered text template (0.0ms)
1603
+ Completed 200 OK in 3ms (Views: 3.1ms)
1604
+ Processing by Overlay::GithubController#update as HTML
1605
+ Completed 200 OK in 0ms (Views: 0.1ms)
1606
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1607
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1608
+ Overlay subscribing to redis channel: test_key
1609
+ Overlay found added file in hook: lib/test/test.rb
1610
+ Overlay found modified file in hook: lib/test/test.rb
1611
+ Overlay found deleted file in hook: lib/test/test.rb
1612
+ Overlay found added file in hook: lib/test/test.rb
1613
+ Overlay found modified file in hook: lib/test/test.rb
1614
+ Overlay found deleted file in hook: lib/test/test.rb
1615
+ Overlay found added file in hook: lib/test/test.rb
1616
+ Overlay found modified file in hook: lib/test/test.rb
1617
+ Overlay found deleted file in hook: lib/test/test.rb
1618
+ Overlay found added file in hook: lib/test/test.rb
1619
+ Overlay found modified file in hook: lib/test/test.rb
1620
+ Overlay found deleted file in hook: lib/test/test.rb
1621
+ Processing by Overlay::GithubController#update as HTML
1622
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1623
+ Rendered text template (0.0ms)
1624
+ Completed 200 OK in 3ms (Views: 3.0ms)
1625
+ Processing by Overlay::GithubController#update as HTML
1626
+ Completed 200 OK in 0ms (Views: 0.1ms)
1627
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1628
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1629
+ Overlay subscribing to redis channel: test_key
1630
+ Overlay found added file in hook: lib/test/test.rb
1631
+ Overlay found modified file in hook: lib/test/test.rb
1632
+ Overlay found deleted file in hook: lib/test/test.rb
1633
+ Overlay found added file in hook: lib/test/test.rb
1634
+ Overlay found modified file in hook: lib/test/test.rb
1635
+ Overlay found deleted file in hook: lib/test/test.rb
1636
+ Overlay found added file in hook: lib/test/test.rb
1637
+ Overlay found modified file in hook: lib/test/test.rb
1638
+ Overlay found deleted file in hook: lib/test/test.rb
1639
+ Overlay found added file in hook: lib/test/test.rb
1640
+ Overlay found modified file in hook: lib/test/test.rb
1641
+ Overlay found deleted file in hook: lib/test/test.rb
1642
+ Processing by Overlay::GithubController#update as HTML
1643
+ Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test"}}
1644
+ Rendered text template (0.0ms)
1645
+ Completed 200 OK in 4ms (Views: 3.8ms)
386
1646
  Processing by Overlay::GithubController#update as HTML
387
1647
  Completed 200 OK in 0ms (Views: 0.2ms)
1648
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1649
+ Overlay register webhook for repo: org => test_org, repo => test_repo
1650
+ Overlay subscribing to redis channel: test_key
1651
+ Overlay found added file in hook: lib/test/test.rb
1652
+ Overlay found modified file in hook: lib/test/test.rb
1653
+ Overlay found deleted file in hook: lib/test/test.rb
1654
+ Overlay found added file in hook: lib/test/test.rb
1655
+ Overlay found modified file in hook: lib/test/test.rb
1656
+ Overlay found deleted file in hook: lib/test/test.rb
1657
+ Overlay found added file in hook: lib/test/test.rb
1658
+ Overlay found modified file in hook: lib/test/test.rb
1659
+ Overlay found deleted file in hook: lib/test/test.rb
1660
+ Overlay found added file in hook: lib/test/test.rb
1661
+ Overlay found modified file in hook: lib/test/test.rb
1662
+ Overlay found deleted file in hook: lib/test/test.rb