overlay 2.2.5 → 2.3.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.
- checksums.yaml +4 -4
- data/lib/overlay/configuration.rb +1 -4
- data/lib/overlay/github.rb +2 -1
- data/lib/overlay/version.rb +1 -1
- data/spec/configuration_spec.rb +1 -2
- data/spec/controllers/overlay/github_controller_spec.rb +2 -1
- data/spec/dummy/log/test.log +1005 -0
- data/spec/github_spec.rb +33 -33
- metadata +4 -62
- data/spec/dummy/spec/controllers/overlay/github_controller_spec.rb +0 -18
- data/spec/dummy/spec/dummy/README.rdoc +0 -28
- data/spec/dummy/spec/dummy/Rakefile +0 -6
- data/spec/dummy/spec/dummy/app/assets/javascripts/application.js +0 -13
- data/spec/dummy/spec/dummy/app/assets/stylesheets/application.css +0 -13
- data/spec/dummy/spec/dummy/app/controllers/application_controller.rb +0 -5
- data/spec/dummy/spec/dummy/app/helpers/application_helper.rb +0 -2
- data/spec/dummy/spec/dummy/app/views/layouts/application.html.erb +0 -14
- data/spec/dummy/spec/dummy/bin/bundle +0 -3
- data/spec/dummy/spec/dummy/bin/rails +0 -4
- data/spec/dummy/spec/dummy/bin/rake +0 -4
- data/spec/dummy/spec/dummy/config.ru +0 -4
- data/spec/dummy/spec/dummy/config/application.rb +0 -28
- data/spec/dummy/spec/dummy/config/boot.rb +0 -5
- data/spec/dummy/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/spec/dummy/config/environments/development.rb +0 -27
- data/spec/dummy/spec/dummy/config/environments/production.rb +0 -80
- data/spec/dummy/spec/dummy/config/environments/test.rb +0 -36
- data/spec/dummy/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/spec/dummy/spec/dummy/config/initializers/inflections.rb +0 -16
- data/spec/dummy/spec/dummy/config/initializers/mime_types.rb +0 -5
- data/spec/dummy/spec/dummy/config/initializers/secret_token.rb +0 -12
- data/spec/dummy/spec/dummy/config/initializers/session_store.rb +0 -3
- data/spec/dummy/spec/dummy/config/initializers/wrap_parameters.rb +0 -10
- data/spec/dummy/spec/dummy/config/locales/en.yml +0 -23
- data/spec/dummy/spec/dummy/config/routes.rb +0 -4
- data/spec/dummy/spec/dummy/public/404.html +0 -58
- data/spec/dummy/spec/dummy/public/422.html +0 -58
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aeb6ac474dbf2b19f37d9e6b014e64d9f7995b64
|
4
|
+
data.tar.gz: 515835a97cdf559ce307f058e05af09cc069f658
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11c6d8a25481f1d4915e60c7602e853b60b54522d28263b914798ffa6b99cb5d698e910929a35807eac0485513f740d57d8423bd0ffb7e2b6a6a92ae1e241350
|
7
|
+
data.tar.gz: 958caad0ba60c72f497c418e0d16d199bdf1bfdb5d6ed734050a1ae5e8a72e82ebee24eaab9a475d47140657b59f9e081eddb5f351efafb605230722f58dace8
|
@@ -119,8 +119,7 @@ module Overlay
|
|
119
119
|
|
120
120
|
# Retrieve API hook to repo
|
121
121
|
def initialize_api
|
122
|
-
::Github.
|
123
|
-
::Github.configure do |github_config|
|
122
|
+
@github_api = ::Github::Repos.new do |github_config|
|
124
123
|
github_config.endpoint = @endpoint if @endpoint
|
125
124
|
github_config.site = @site if @site
|
126
125
|
github_config.basic_auth = @auth
|
@@ -129,8 +128,6 @@ module Overlay
|
|
129
128
|
github_config.adapter = :net_http
|
130
129
|
github_config.ssl = {:verify => false}
|
131
130
|
end
|
132
|
-
|
133
|
-
@github_api = ::Github::Repos.new
|
134
131
|
end
|
135
132
|
|
136
133
|
end
|
data/lib/overlay/github.rb
CHANGED
@@ -273,7 +273,8 @@ module Overlay
|
|
273
273
|
hook = JSON.parse(msg)
|
274
274
|
|
275
275
|
# We may be receiving hooks for several configured roots. Since we should only have one subscriber servicing
|
276
|
-
# a repo, we need to see if we can handle this hook.
|
276
|
+
# a repo, we need to see if we can handle this hook. The incoming hook is already keyed to repo and org so we
|
277
|
+
# just need to check branch.
|
277
278
|
Overlay.configuration.repositories.each do |configured_repo|
|
278
279
|
next unless configured_repo.class == GithubRepo
|
279
280
|
if (hook['ref'] == "refs/heads/#{configured_repo.branch}")
|
data/lib/overlay/version.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
@@ -151,8 +151,7 @@ describe Overlay::GithubRepo do
|
|
151
151
|
|
152
152
|
expect(github_api.current_options[:org]) .to eq('test_org')
|
153
153
|
expect(github_api.current_options[:repo]) .to eq('test_repo')
|
154
|
-
expect(github_api.current_options[:
|
155
|
-
expect(github_api.current_options[:password]) .to eq('test_pass')
|
154
|
+
expect(github_api.current_options[:basic_auth]) .to eq('test_user:test_pass')
|
156
155
|
end
|
157
156
|
|
158
157
|
it 'should reinitialize api when endpoint is changed' do
|
@@ -2,6 +2,7 @@ require 'spec_helper'
|
|
2
2
|
|
3
3
|
module Overlay
|
4
4
|
describe GithubController do
|
5
|
+
include RSpec::Rails::ControllerExampleGroup
|
5
6
|
before :each do
|
6
7
|
Overlay.configuration.reset if Overlay.configuration
|
7
8
|
|
@@ -18,7 +19,7 @@ module Overlay
|
|
18
19
|
|
19
20
|
describe "POST 'update'" do
|
20
21
|
it "returns http success" do
|
21
|
-
expect(Overlay::Github.instance).to receive(:process_hook).once
|
22
|
+
expect(Overlay::Github.instance).to receive(:process_hook).once {true}
|
22
23
|
post 'update', {:use_route => :overlay, :ref => "refs/heads/master", :repository => {:name => 'test_repo'}}
|
23
24
|
end
|
24
25
|
end
|
data/spec/dummy/log/test.log
CHANGED
@@ -2832,3 +2832,1008 @@ Overlay found modified file in hook: lib/test/test_modified.rb
|
|
2832
2832
|
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2833
2833
|
Overlay found added file in hook: lib/test/test_added.rb
|
2834
2834
|
Overlay found modified file in hook: lib/test/test_modified.rb
|
2835
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd25321ce38 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd25321cbb8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2836
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2837
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd25321ce38 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd25321cbb8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2838
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2839
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd25321ce38 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd25321cbb8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2840
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2841
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd25321ce38 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd25321cbb8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2842
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2843
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd25321ce38 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd25321cbb8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2844
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fd25321ce38 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd25321cbb8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2845
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
2846
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
2847
|
+
Overlay subscribing to key: test
|
2848
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2849
|
+
Overlay subscribing to key: test
|
2850
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2851
|
+
Overlay subscribing to key: test
|
2852
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2853
|
+
Overlay subscribing to key: test
|
2854
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2855
|
+
Overlay subscribing to key: test
|
2856
|
+
Overlay subscribe closed for unknown reason.
|
2857
|
+
Overlay subscribing to redis channel: test_key
|
2858
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2859
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2860
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2861
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2862
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2863
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2864
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2865
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2866
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2867
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2868
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2869
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2870
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2871
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2872
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2873
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2874
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2875
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2876
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
2877
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab05510ab0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab05510a10 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2878
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2879
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab05510ab0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab05510a10 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2880
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2881
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab05510ab0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab05510a10 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2882
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2883
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab05510ab0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab05510a10 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2884
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2885
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab05510ab0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab05510a10 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2886
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fab05510ab0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab05510a10 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2887
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
2888
|
+
Overlay subscribing to key: test
|
2889
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2890
|
+
Overlay subscribing to key: test
|
2891
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2892
|
+
Overlay subscribing to key: test
|
2893
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2894
|
+
Overlay subscribing to key: test
|
2895
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2896
|
+
Overlay subscribing to key: test
|
2897
|
+
Overlay subscribe closed for unknown reason.
|
2898
|
+
Overlay subscribing to redis channel: test_key
|
2899
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2900
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2901
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2902
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2903
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2904
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2905
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2906
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2907
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2908
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2909
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2910
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2911
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2912
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2913
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2914
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2915
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2916
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2917
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
2918
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe0db39c8f8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe0db39c808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2919
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2920
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe0db39c8f8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe0db39c808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2921
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2922
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe0db39c8f8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe0db39c808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2923
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2924
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe0db39c8f8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe0db39c808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2925
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2926
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe0db39c8f8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe0db39c808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2927
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fe0db39c8f8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe0db39c808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2928
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
2929
|
+
Overlay subscribing to key: test
|
2930
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2931
|
+
Overlay subscribing to key: test
|
2932
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2933
|
+
Overlay subscribing to key: test
|
2934
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2935
|
+
Overlay subscribing to key: test
|
2936
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2937
|
+
Overlay subscribing to key: test
|
2938
|
+
Overlay subscribe closed for unknown reason.
|
2939
|
+
Overlay subscribing to redis channel: test_key
|
2940
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc95d306528 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc95d306118 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2941
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2942
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc95d306528 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc95d306118 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2943
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2944
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc95d306528 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc95d306118 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2945
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2946
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc95d306528 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc95d306118 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2947
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
2948
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc95d306528 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc95d306118 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2949
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fc95d306528 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc95d306118 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
2950
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2951
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2952
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2953
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2954
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2955
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2956
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2957
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2958
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2959
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2960
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2961
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2962
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2963
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2964
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2965
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2966
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2967
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2968
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
2969
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
2970
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
2971
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
2972
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2973
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2974
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2975
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2976
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2977
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2978
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2979
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2980
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2981
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2982
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2983
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2984
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2985
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2986
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
2987
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2988
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
2989
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
2990
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
2991
|
+
Overlay subscribing to key: test
|
2992
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2993
|
+
Overlay subscribing to key: test
|
2994
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2995
|
+
Overlay subscribing to key: test
|
2996
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2997
|
+
Overlay subscribing to key: test
|
2998
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
2999
|
+
Overlay subscribing to key: test
|
3000
|
+
Overlay subscribe closed for unknown reason.
|
3001
|
+
Overlay subscribing to redis channel: test_key
|
3002
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fbffe7a2c70 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fbffe7a2bd0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3003
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3004
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fbffe7a2c70 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fbffe7a2bd0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3005
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3006
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fbffe7a2c70 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fbffe7a2bd0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3007
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3008
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fbffe7a2c70 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fbffe7a2bd0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3009
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3010
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fbffe7a2c70 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fbffe7a2bd0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3011
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fbffe7a2c70 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fbffe7a2bd0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3012
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3013
|
+
Overlay subscribing to key: test
|
3014
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3015
|
+
Overlay subscribing to key: test
|
3016
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3017
|
+
Overlay subscribing to key: test
|
3018
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3019
|
+
Overlay subscribing to key: test
|
3020
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3021
|
+
Overlay subscribing to key: test
|
3022
|
+
Overlay subscribe closed for unknown reason.
|
3023
|
+
Overlay subscribing to redis channel: test_key
|
3024
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3025
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3026
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3027
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3028
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3029
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3030
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3031
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3032
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3033
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3034
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3035
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3036
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3037
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3038
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3039
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3040
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3041
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3042
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3043
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3044
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff199526c68 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff199526bc8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3045
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3046
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff199526c68 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff199526bc8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3047
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3048
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff199526c68 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff199526bc8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3049
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3050
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff199526c68 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff199526bc8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3051
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3052
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff199526c68 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff199526bc8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3053
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007ff199526c68 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff199526bc8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3054
|
+
Processing by Overlay::GithubController#update as HTML
|
3055
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3056
|
+
Rendered text template (0.0ms)
|
3057
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
3058
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3059
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3060
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3061
|
+
Overlay subscribing to key: test
|
3062
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3063
|
+
Overlay subscribing to key: test
|
3064
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3065
|
+
Overlay subscribing to key: test
|
3066
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3067
|
+
Overlay subscribing to key: test
|
3068
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3069
|
+
Overlay subscribing to key: test
|
3070
|
+
Overlay subscribe closed for unknown reason.
|
3071
|
+
Overlay subscribing to redis channel: test_key
|
3072
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007f84c7255dc0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007f84c7255d20 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3073
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3074
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007f84c7255dc0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007f84c7255d20 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3075
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3076
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007f84c7255dc0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007f84c7255d20 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3077
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3078
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007f84c7255dc0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007f84c7255d20 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3079
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3080
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007f84c7255dc0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007f84c7255d20 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3081
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007f84c7255dc0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007f84c7255d20 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3082
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3083
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3084
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3085
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3086
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3087
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3088
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3089
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3090
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3091
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3092
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3093
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3094
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3095
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3096
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3097
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3098
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3099
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3100
|
+
Processing by Overlay::GithubController#update as HTML
|
3101
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3102
|
+
Rendered text template (0.0ms)
|
3103
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
3104
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3105
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3106
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3107
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3108
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3109
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3110
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3111
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3112
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3113
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3114
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3115
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3116
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3117
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3118
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3119
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3120
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3121
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3122
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3123
|
+
Overlay subscribing to key: test
|
3124
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3125
|
+
Overlay subscribing to key: test
|
3126
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3127
|
+
Overlay subscribing to key: test
|
3128
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3129
|
+
Overlay subscribing to key: test
|
3130
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3131
|
+
Overlay subscribing to key: test
|
3132
|
+
Overlay subscribe closed for unknown reason.
|
3133
|
+
Overlay subscribing to redis channel: test_key
|
3134
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3135
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3136
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fea44634c10 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fea44634a30 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3137
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3138
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fea44634c10 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fea44634a30 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3139
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3140
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fea44634c10 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fea44634a30 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3141
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3142
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fea44634c10 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fea44634a30 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3143
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3144
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fea44634c10 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fea44634a30 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3145
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fea44634c10 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fea44634a30 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3146
|
+
Processing by Overlay::GithubController#update as HTML
|
3147
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3148
|
+
Rendered text template (0.0ms)
|
3149
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
3150
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3151
|
+
Overlay subscribing to key: test
|
3152
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3153
|
+
Overlay subscribing to key: test
|
3154
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3155
|
+
Overlay subscribing to key: test
|
3156
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3157
|
+
Overlay subscribing to key: test
|
3158
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3159
|
+
Overlay subscribing to key: test
|
3160
|
+
Overlay subscribe closed for unknown reason.
|
3161
|
+
Overlay subscribing to redis channel: test_key
|
3162
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3163
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3164
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3165
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3166
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3167
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3168
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3169
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3170
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3171
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3172
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3173
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3174
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3175
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3176
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3177
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3178
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3179
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3180
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3181
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3182
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffd504f99d0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffd504f9958 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3183
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3184
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffd504f99d0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffd504f9958 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3185
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3186
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffd504f99d0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffd504f9958 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3187
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3188
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffd504f99d0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffd504f9958 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3189
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3190
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffd504f99d0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffd504f9958 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3191
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007ffd504f99d0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffd504f9958 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3192
|
+
Processing by Overlay::GithubController#update as HTML
|
3193
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3194
|
+
Rendered text template (0.0ms)
|
3195
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
3196
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3197
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3198
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3199
|
+
Overlay subscribing to key: test
|
3200
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3201
|
+
Overlay subscribing to key: test
|
3202
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3203
|
+
Overlay subscribing to key: test
|
3204
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3205
|
+
Overlay subscribing to key: test
|
3206
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3207
|
+
Overlay subscribing to key: test
|
3208
|
+
Overlay subscribe closed for unknown reason.
|
3209
|
+
Overlay subscribing to redis channel: test_key
|
3210
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab27b8d1c8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab27b8d0b0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3211
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3212
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab27b8d1c8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab27b8d0b0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3213
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3214
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab27b8d1c8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab27b8d0b0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3215
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3216
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab27b8d1c8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab27b8d0b0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3217
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3218
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fab27b8d1c8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab27b8d0b0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3219
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fab27b8d1c8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fab27b8d0b0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3220
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3221
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3222
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3223
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3224
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3225
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3226
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3227
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3228
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3229
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3230
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3231
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3232
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3233
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3234
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3235
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3236
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3237
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3238
|
+
Processing by Overlay::GithubController#update as HTML
|
3239
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3240
|
+
Rendered text template (0.0ms)
|
3241
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
3242
|
+
Processing by Overlay::GithubController#update as HTML
|
3243
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3244
|
+
Rendered text template (0.0ms)
|
3245
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
3246
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3247
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3248
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3249
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3250
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3251
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3252
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3253
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3254
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3255
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3256
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3257
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3258
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3259
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3260
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3261
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3262
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3263
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3264
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007faee8925218 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007faee8925178 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3265
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3266
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007faee8925218 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007faee8925178 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3267
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3268
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007faee8925218 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007faee8925178 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3269
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3270
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007faee8925218 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007faee8925178 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3271
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3272
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007faee8925218 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007faee8925178 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3273
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007faee8925218 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007faee8925178 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3274
|
+
Overlay subscribing to redis channel: test_key
|
3275
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3276
|
+
Overlay subscribing to key: test
|
3277
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3278
|
+
Overlay subscribing to key: test
|
3279
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3280
|
+
Overlay subscribing to key: test
|
3281
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3282
|
+
Overlay subscribing to key: test
|
3283
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3284
|
+
Overlay subscribing to key: test
|
3285
|
+
Overlay subscribe closed for unknown reason.
|
3286
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3287
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3288
|
+
Processing by Overlay::GithubController#update as HTML
|
3289
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3290
|
+
Rendered text template (0.0ms)
|
3291
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
3292
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3293
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3294
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3295
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3296
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3297
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3298
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3299
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3300
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3301
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3302
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3303
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3304
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3305
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3306
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3307
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3308
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3309
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3310
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3311
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3312
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fdb5640fef0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fdb5640fe28 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3313
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3314
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fdb5640fef0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fdb5640fe28 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3315
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3316
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fdb5640fef0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fdb5640fe28 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3317
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3318
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fdb5640fef0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fdb5640fe28 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3319
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3320
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fdb5640fef0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fdb5640fe28 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3321
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fdb5640fef0 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fdb5640fe28 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3322
|
+
Overlay subscribing to redis channel: test_key
|
3323
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3324
|
+
Overlay subscribing to key: test
|
3325
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3326
|
+
Overlay subscribing to key: test
|
3327
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3328
|
+
Overlay subscribing to key: test
|
3329
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3330
|
+
Overlay subscribing to key: test
|
3331
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3332
|
+
Overlay subscribing to key: test
|
3333
|
+
Overlay subscribe closed for unknown reason.
|
3334
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3335
|
+
Overlay subscribing to key: test
|
3336
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3337
|
+
Overlay subscribing to key: test
|
3338
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3339
|
+
Overlay subscribing to key: test
|
3340
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3341
|
+
Overlay subscribing to key: test
|
3342
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3343
|
+
Overlay subscribing to key: test
|
3344
|
+
Overlay subscribe closed for unknown reason.
|
3345
|
+
Overlay subscribing to redis channel: test_key
|
3346
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3347
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3348
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3349
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3350
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3351
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3352
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3353
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3354
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3355
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3356
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3357
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3358
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3359
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3360
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3361
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3362
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3363
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3364
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3365
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3366
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fa56440d880 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fa56440d808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3367
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3368
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fa56440d880 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fa56440d808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3369
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3370
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fa56440d880 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fa56440d808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3371
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3372
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fa56440d880 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fa56440d808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3373
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3374
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fa56440d880 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fa56440d808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3375
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fa56440d880 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fa56440d808 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3376
|
+
Processing by Overlay::GithubController#update as HTML
|
3377
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3378
|
+
Rendered text template (0.0ms)
|
3379
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
3380
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3381
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3382
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3383
|
+
Overlay subscribing to key: test
|
3384
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3385
|
+
Overlay subscribing to key: test
|
3386
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3387
|
+
Overlay subscribing to key: test
|
3388
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3389
|
+
Overlay subscribing to key: test
|
3390
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3391
|
+
Overlay subscribing to key: test
|
3392
|
+
Overlay subscribe closed for unknown reason.
|
3393
|
+
Overlay subscribing to redis channel: test_key
|
3394
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3395
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3396
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3397
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3398
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3399
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3400
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3401
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3402
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3403
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3404
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3405
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3406
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3407
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3408
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3409
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3410
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3411
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3412
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fee1323e750 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fee1323e660 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3413
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3414
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fee1323e750 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fee1323e660 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3415
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3416
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fee1323e750 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fee1323e660 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3417
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3418
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fee1323e750 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fee1323e660 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3419
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3420
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fee1323e750 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fee1323e660 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3421
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fee1323e750 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fee1323e660 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"http://www.test.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="http://www.test.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3422
|
+
Processing by Overlay::GithubController#update as HTML
|
3423
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3424
|
+
Rendered text template (0.0ms)
|
3425
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
3426
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3427
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3428
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3429
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3430
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3431
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3432
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3433
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3434
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3435
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3436
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3437
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3438
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3439
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3440
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3441
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3442
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3443
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3444
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3445
|
+
Overlay subscribing to key: test
|
3446
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3447
|
+
Overlay subscribing to key: test
|
3448
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3449
|
+
Overlay subscribing to key: test
|
3450
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3451
|
+
Overlay subscribing to key: test
|
3452
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3453
|
+
Overlay subscribing to key: test
|
3454
|
+
Overlay subscribe closed for unknown reason.
|
3455
|
+
Overlay subscribing to redis channel: test_key
|
3456
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3457
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3458
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe3f19c5108 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe3f19c5018 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3459
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3460
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe3f19c5108 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe3f19c5018 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3461
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3462
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe3f19c5108 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe3f19c5018 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3463
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3464
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe3f19c5108 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe3f19c5018 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3465
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3466
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fe3f19c5108 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe3f19c5018 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3467
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fe3f19c5108 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fe3f19c5018 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://www.test.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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://www.test.com", @site="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3468
|
+
Processing by Overlay::GithubController#update as HTML
|
3469
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3470
|
+
Rendered text template (0.0ms)
|
3471
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
3472
|
+
Processing by Overlay::GithubController#update as HTML
|
3473
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3474
|
+
Rendered text template (0.0ms)
|
3475
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
3476
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3477
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3478
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3479
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3480
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3481
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3482
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3483
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3484
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3485
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3486
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3487
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3488
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3489
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3490
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3491
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3492
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3493
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3494
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3495
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3496
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fcd54b9ede8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fcd54b9ed70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3497
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3498
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fcd54b9ede8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fcd54b9ed70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3499
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3500
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fcd54b9ede8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fcd54b9ed70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3501
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3502
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fcd54b9ede8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fcd54b9ed70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3503
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3504
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fcd54b9ede8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fcd54b9ed70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3505
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fcd54b9ede8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fcd54b9ed70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3506
|
+
Overlay subscribing to redis channel: test_key
|
3507
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3508
|
+
Overlay subscribing to key: test
|
3509
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3510
|
+
Overlay subscribing to key: test
|
3511
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3512
|
+
Overlay subscribing to key: test
|
3513
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3514
|
+
Overlay subscribing to key: test
|
3515
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3516
|
+
Overlay subscribing to key: test
|
3517
|
+
Overlay subscribe closed for unknown reason.
|
3518
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3519
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3520
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3521
|
+
Overlay subscribing to key: test
|
3522
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3523
|
+
Overlay subscribing to key: test
|
3524
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3525
|
+
Overlay subscribing to key: test
|
3526
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3527
|
+
Overlay subscribing to key: test
|
3528
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3529
|
+
Overlay subscribing to key: test
|
3530
|
+
Overlay subscribe closed for unknown reason.
|
3531
|
+
Overlay subscribing to redis channel: test_key
|
3532
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fef2ab52a40 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fef2ab52928 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3533
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3534
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fef2ab52a40 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fef2ab52928 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3535
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3536
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fef2ab52a40 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fef2ab52928 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3537
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3538
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fef2ab52a40 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fef2ab52928 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3539
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3540
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fef2ab52a40 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fef2ab52928 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3541
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fef2ab52a40 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fef2ab52928 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>nil, :site=>nil, :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :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=nil, @site=nil, @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login="test_user", @password="test_pass", @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3542
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3543
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3544
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3545
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3546
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3547
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3548
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3549
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3550
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3551
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3552
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3553
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3554
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3555
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3556
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3557
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3558
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3559
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3560
|
+
Processing by Overlay::GithubController#update as HTML
|
3561
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3562
|
+
Rendered text template (0.0ms)
|
3563
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
3564
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3565
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3566
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3567
|
+
Overlay subscribing to key: test
|
3568
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3569
|
+
Overlay subscribing to key: test
|
3570
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3571
|
+
Overlay subscribing to key: test
|
3572
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3573
|
+
Overlay subscribing to key: test
|
3574
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3575
|
+
Overlay subscribing to key: test
|
3576
|
+
Overlay subscribe closed for unknown reason.
|
3577
|
+
Overlay subscribing to redis channel: test_key
|
3578
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff60685a698 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff606863c70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>nil, :password=>nil, :basic_auth=>nil, :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="https://github.com", @ssl={:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login=nil, @password=nil, @basic_auth=nil, @auto_pagination=false>>
|
3579
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3580
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff60685a698 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff606863c70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>nil, :password=>nil, :basic_auth=>nil, :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="https://github.com", @ssl={:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login=nil, @password=nil, @basic_auth=nil, @auto_pagination=false>>
|
3581
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3582
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff60685a698 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff606863c70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>nil, :password=>nil, :basic_auth=>nil, :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="https://github.com", @ssl={:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login=nil, @password=nil, @basic_auth=nil, @auto_pagination=false>>
|
3583
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3584
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff60685a698 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff606863c70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>nil, :password=>nil, :basic_auth=>nil, :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="https://github.com", @ssl={:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login=nil, @password=nil, @basic_auth=nil, @auto_pagination=false>>
|
3585
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3586
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff60685a698 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff606863c70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>nil, :password=>nil, :basic_auth=>nil, :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="https://github.com", @ssl={:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login=nil, @password=nil, @basic_auth=nil, @auto_pagination=false>>
|
3587
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007ff60685a698 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff606863c70 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>nil, :user=>nil, :org=>nil, :login=>nil, :password=>nil, :basic_auth=>nil, :auto_pagination=>false}, @adapter=:net_http, @client_id=nil, @client_secret=nil, @oauth_token=nil, @endpoint="https://api.github.com", @site="https://github.com", @ssl={:ca_file=>"/Users/ssaarinen/.rvm/gems/ruby-2.0.0-p195/gems/github_api-0.11.3/lib/github_api/ssl_certs/cacerts.pem"}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo=nil, @user=nil, @org=nil, @login=nil, @password=nil, @basic_auth=nil, @auto_pagination=false>>
|
3588
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3589
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3590
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3591
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3592
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3593
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3594
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3595
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3596
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3597
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3598
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3599
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3600
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3601
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3602
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3603
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3604
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3605
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3606
|
+
Processing by Overlay::GithubController#update as HTML
|
3607
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3608
|
+
Rendered text template (0.0ms)
|
3609
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
3610
|
+
Processing by Overlay::GithubController#update as HTML
|
3611
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3612
|
+
Rendered text template (0.0ms)
|
3613
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
3614
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3615
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3616
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3617
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3618
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3619
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3620
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3621
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3622
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3623
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3624
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3625
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3626
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3627
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3628
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3629
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3630
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3631
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3632
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3633
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3634
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc52ba5e388 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc52ba5e338 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3635
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3636
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc52ba5e388 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc52ba5e338 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3637
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3638
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc52ba5e388 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc52ba5e338 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3639
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3640
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc52ba5e388 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc52ba5e338 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3641
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3642
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fc52ba5e388 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc52ba5e338 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3643
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fc52ba5e388 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fc52ba5e338 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3644
|
+
Overlay subscribing to redis channel: test_key
|
3645
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3646
|
+
Overlay subscribing to key: test
|
3647
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3648
|
+
Overlay subscribing to key: test
|
3649
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3650
|
+
Overlay subscribing to key: test
|
3651
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3652
|
+
Overlay subscribing to key: test
|
3653
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3654
|
+
Overlay subscribing to key: test
|
3655
|
+
Overlay subscribe closed for unknown reason.
|
3656
|
+
Processing by Overlay::GithubController#update as HTML
|
3657
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3658
|
+
Rendered text template (0.0ms)
|
3659
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
3660
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff03e9aaef8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff03e9aade0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3661
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3662
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff03e9aaef8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff03e9aade0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3663
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3664
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff03e9aaef8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff03e9aade0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3665
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3666
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff03e9aaef8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff03e9aade0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3667
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3668
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ff03e9aaef8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff03e9aade0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3669
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007ff03e9aaef8 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ff03e9aade0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3670
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3671
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3672
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3673
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3674
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3675
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3676
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3677
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3678
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3679
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3680
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3681
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3682
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3683
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3684
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3685
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3686
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3687
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3688
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3689
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3690
|
+
Overlay subscribing to redis channel: test_key
|
3691
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3692
|
+
Overlay subscribing to key: test
|
3693
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3694
|
+
Overlay subscribing to key: test
|
3695
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3696
|
+
Overlay subscribing to key: test
|
3697
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3698
|
+
Overlay subscribing to key: test
|
3699
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3700
|
+
Overlay subscribing to key: test
|
3701
|
+
Overlay subscribe closed for unknown reason.
|
3702
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3703
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3704
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3705
|
+
Overlay subscribing to key: test
|
3706
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3707
|
+
Overlay subscribing to key: test
|
3708
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3709
|
+
Overlay subscribing to key: test
|
3710
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3711
|
+
Overlay subscribing to key: test
|
3712
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3713
|
+
Overlay subscribing to key: test
|
3714
|
+
Overlay subscribe closed for unknown reason.
|
3715
|
+
Overlay subscribing to redis channel: test_key
|
3716
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3717
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3718
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3719
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3720
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3721
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3722
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3723
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3724
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3725
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3726
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3727
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3728
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3729
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3730
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3731
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3732
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3733
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3734
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fba79cd6410 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fba79cd63c0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3735
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3736
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fba79cd6410 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fba79cd63c0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3737
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3738
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fba79cd6410 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fba79cd63c0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3739
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3740
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fba79cd6410 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fba79cd63c0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3741
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3742
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fba79cd6410 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fba79cd63c0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3743
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fba79cd6410 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fba79cd63c0 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3744
|
+
Processing by Overlay::GithubController#update as HTML
|
3745
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3746
|
+
Rendered text template (0.0ms)
|
3747
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
3748
|
+
Processing by Overlay::GithubController#update as HTML
|
3749
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3750
|
+
Rendered text template (0.0ms)
|
3751
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
3752
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3753
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3754
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3755
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3756
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3757
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3758
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3759
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3760
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3761
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3762
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3763
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3764
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3765
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3766
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3767
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3768
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3769
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3770
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffa2aed3f60 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffa2aed3ee8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3771
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3772
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffa2aed3f60 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffa2aed3ee8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3773
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3774
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffa2aed3f60 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffa2aed3ee8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3775
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3776
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffa2aed3f60 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffa2aed3ee8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3777
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3778
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007ffa2aed3f60 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffa2aed3ee8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3779
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007ffa2aed3f60 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007ffa2aed3ee8 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3780
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3781
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3782
|
+
Overlay subscribing to redis channel: test_key
|
3783
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3784
|
+
Overlay subscribing to key: test
|
3785
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3786
|
+
Overlay subscribing to key: test
|
3787
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3788
|
+
Overlay subscribing to key: test
|
3789
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3790
|
+
Overlay subscribing to key: test
|
3791
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3792
|
+
Overlay subscribing to key: test
|
3793
|
+
Overlay subscribe closed for unknown reason.
|
3794
|
+
Processing by Overlay::GithubController#update as HTML
|
3795
|
+
Parameters: {"ref"=>"refs/heads/master", "repository"=>{"name"=>"test_repo"}}
|
3796
|
+
Rendered text template (0.0ms)
|
3797
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
3798
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3799
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3800
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3801
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3802
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3803
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3804
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3805
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3806
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3807
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3808
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3809
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3810
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3811
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3812
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3813
|
+
Overlay found added file in hook: lib/test/test_added.rb
|
3814
|
+
Overlay found modified file in hook: lib/test/test_modified.rb
|
3815
|
+
Overlay found deleted file in hook: lib/test/test_removed.rb
|
3816
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd495cc1958 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd495cc1818 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3817
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3818
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd495cc1958 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd495cc1818 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3819
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3820
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd495cc1958 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd495cc1818 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3821
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3822
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd495cc1958 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd495cc1818 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3823
|
+
Overlay encountered an error during overlay_repo and is retrying: StandardError
|
3824
|
+
Overlay started processing repo with config #<Overlay::GithubRepo:0x007fd495cc1958 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd495cc1818 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3825
|
+
Overlay finished processing repo with config #<Overlay::GithubRepo:0x007fd495cc1958 @org="test_org", @repo="test_repo", @auth="test_user:test_pass", @root_source_path="spec", @root_dest_path="spec", @redis_server=nil, @redis_port=nil, @registration_server=nil, @endpoint=nil, @site=nil, @branch="master", @use_publisher=false, @github_api=#<Github::Repos:0x007fd495cc1818 @current_options={:adapter=>:net_http, :client_id=>nil, :client_secret=>nil, :oauth_token=>nil, :endpoint=>"https://api.github.com", :site=>"https://github.com", :ssl=>{:verify=>false}, :mime_type=>:json, :user_agent=>"Github Ruby Gem 0.11.3", :connection_options=>{}, :repo=>"test_repo", :user=>nil, :org=>"test_org", :login=>nil, :password=>nil, :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="https://github.com", @ssl={:verify=>false}, @mime_type=:json, @user_agent="Github Ruby Gem 0.11.3", @connection_options={}, @repo="test_repo", @user=nil, @org="test_org", @login=nil, @password=nil, @basic_auth="test_user:test_pass", @auto_pagination=false>>
|
3826
|
+
Overlay subscribing to redis channel: test_key
|
3827
|
+
Overlay establishing connection to Redis server: unreachable on port: 6734
|
3828
|
+
Overlay subscribing to key: test
|
3829
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3830
|
+
Overlay subscribing to key: test
|
3831
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3832
|
+
Overlay subscribing to key: test
|
3833
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3834
|
+
Overlay subscribing to key: test
|
3835
|
+
Overlay encountered an error during subscribe_to_channel on key test and is retrying: StandardError
|
3836
|
+
Overlay subscribing to key: test
|
3837
|
+
Overlay subscribe closed for unknown reason.
|
3838
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|
3839
|
+
Overlay register webhook for repo: org => test_org, repo => test_repo
|