integration_pal 0.1.1 → 0.1.2
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/README.md +3 -10
- data/Rakefile +1 -12
- data/app/controllers/integration_pal/api/v1/jobs_controller.rb +3 -3
- data/app/controllers/integration_pal/jobs_controller.rb +1 -1
- data/app/models/integration_pal/job.rb +18 -0
- data/app/views/integration_pal/jobs/index.html.erb +4 -0
- data/db/migrate/20170531201218_add_error_fields_to_jobs.rb +6 -0
- data/lib/concerns/integration_pal/base_job.rb +34 -0
- data/lib/generators/integration_pal/install/USAGE +10 -0
- data/lib/generators/integration_pal/install/install_generator.rb +25 -0
- data/lib/integration_pal/version.rb +2 -2
- data/spec/dummy/config/application.rb +9 -1
- data/spec/dummy/db/schema.rb +3 -1
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +944 -0
- metadata +10 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d625c06fdb80952245ad7d37fe09d74a9d011b3
|
4
|
+
data.tar.gz: b3277b04f666854487ea5d782429677fd0bda05c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0f1880b38dd1025d5c55757ed0d59bc6b10d09a7337250258f2868ac2cf1378c8b8b3b76354909a52979e1674dafb09236a5c5c75b598ac117a8a54ab5882a2
|
7
|
+
data.tar.gz: 06775d4cbdc220da40f93929bc3d68970609ec5448996e00de69236b28f478aa96e280859b45a7004c8dfca8b891d7b9dfe58f0b1df689c5f954a9e603f089ba
|
data/README.md
CHANGED
@@ -7,7 +7,8 @@ This engine is meant to contain the elements of big_sis that can be shared acros
|
|
7
7
|
- cas authentication
|
8
8
|
|
9
9
|
## Usage
|
10
|
-
|
10
|
+
1) Create an active job
|
11
|
+
`bin/rails generate job example_job`
|
11
12
|
|
12
13
|
## Installation
|
13
14
|
Add this line to your application's Gemfile:
|
@@ -30,19 +31,11 @@ $ gem install integration_pal
|
|
30
31
|
ENV['ENCRYPTION_KEY'] # this must be 32 chars
|
31
32
|
ENV['SALT_KEY'] # this must be 32 chars
|
32
33
|
|
33
|
-
2)
|
34
|
-
@cas_server_url = 'https://cas-sso.instructure.com/'
|
35
|
-
config.rack_cas.server_url = @cas_server_url
|
34
|
+
2) run `bundle exec rails g integration_pal:install`
|
36
35
|
|
37
36
|
3)set active job
|
38
37
|
config.active_job.queue_adapter = :sidekiq # If you are using sidekiq
|
39
38
|
|
40
|
-
4) add engine to your routes.rb file
|
41
|
-
mount IntegrationPal::Engine, at: '/'
|
42
|
-
|
43
|
-
## Contributing
|
44
|
-
Contribution directions go here.
|
45
|
-
|
46
39
|
## License
|
47
40
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
48
41
|
|
data/Rakefile
CHANGED
@@ -22,15 +22,4 @@ load 'rails/tasks/statistics.rake'
|
|
22
22
|
|
23
23
|
|
24
24
|
|
25
|
-
require 'bundler/gem_tasks'
|
26
|
-
|
27
|
-
require 'rake/testtask'
|
28
|
-
|
29
|
-
Rake::TestTask.new(:test) do |t|
|
30
|
-
t.libs << 'test'
|
31
|
-
t.pattern = 'test/**/*_test.rb'
|
32
|
-
t.verbose = false
|
33
|
-
end
|
34
|
-
|
35
|
-
|
36
|
-
task default: :test
|
25
|
+
require 'bundler/gem_tasks'
|
@@ -5,15 +5,15 @@ module IntegrationPal
|
|
5
5
|
# GET /jobs/1
|
6
6
|
def show
|
7
7
|
@job = Job.find(params[:id])
|
8
|
-
render json: @job, status: :
|
8
|
+
render json: @job, status: :ok
|
9
9
|
end
|
10
10
|
|
11
11
|
# POST /jobs
|
12
12
|
def create
|
13
13
|
@job = Job.new(job_params)
|
14
14
|
if @job.save
|
15
|
-
@job.
|
16
|
-
render json: @job, status: :
|
15
|
+
@job.queue_job
|
16
|
+
render json: @job, status: :ok
|
17
17
|
else
|
18
18
|
render json: {errors: @job.errors}, status: :unprocessable_entity
|
19
19
|
end
|
@@ -17,6 +17,24 @@ module IntegrationPal
|
|
17
17
|
def set_status
|
18
18
|
self.status ||= PENDING_STATUS
|
19
19
|
end
|
20
|
+
|
21
|
+
def queue_job
|
22
|
+
raise 'Cannot start a non persisted job' unless self.persisted?
|
23
|
+
worker.job_class.perform_later(self.id)
|
24
|
+
end
|
25
|
+
|
26
|
+
def start
|
27
|
+
self.update_attributes(status: IN_PROGRESS_STATUS, started_at: Time.zone.now)
|
28
|
+
end
|
29
|
+
|
30
|
+
def fail(exception)
|
31
|
+
self.update_attributes(status: FAILED_STATUS, error: exception.message, backtrace: exception.backtrace)
|
32
|
+
end
|
33
|
+
|
34
|
+
def complete
|
35
|
+
self.update_attributes(status: COMPLETED_STATUS, finished_at: Time.zone.now)
|
36
|
+
end
|
37
|
+
|
20
38
|
end
|
21
39
|
|
22
40
|
end
|
@@ -9,6 +9,8 @@
|
|
9
9
|
<th>Worker</th>
|
10
10
|
<th>Status</th>
|
11
11
|
<th>Progress</th>
|
12
|
+
<th>Started At</th>
|
13
|
+
<th>Finished At</th>
|
12
14
|
</tr>
|
13
15
|
</thead>
|
14
16
|
|
@@ -19,6 +21,8 @@
|
|
19
21
|
<td><%= job.worker.name %></td>
|
20
22
|
<td><%= job.status %></td>
|
21
23
|
<td><%= job.progress %></td>
|
24
|
+
<td><%= time_ago_in_words(job.started_at) if job.started_at.present? %></td>
|
25
|
+
<td><%= time_ago_in_words(job.finished_at) if job.finished_at.present?%></td>
|
22
26
|
</tr>
|
23
27
|
<% end %>
|
24
28
|
</tbody>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'active_support/concern'
|
2
|
+
|
3
|
+
module IntegrationPal
|
4
|
+
module BaseJob
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
|
7
|
+
included do
|
8
|
+
attr_accessor :job, :params
|
9
|
+
|
10
|
+
rescue_from(StandardError) do |exception|
|
11
|
+
job.fail(exception)
|
12
|
+
raise(exception)
|
13
|
+
end
|
14
|
+
|
15
|
+
def setup(active_job)
|
16
|
+
@job = IntegrationPal::Job.find(active_job.arguments.first)
|
17
|
+
@params = @job.job_params.merge(@job.worker.settings)
|
18
|
+
@job.start
|
19
|
+
@job
|
20
|
+
end
|
21
|
+
|
22
|
+
def teardown(job)
|
23
|
+
job.complete
|
24
|
+
end
|
25
|
+
|
26
|
+
around_perform do |job, block|
|
27
|
+
persisted_job = setup(job)
|
28
|
+
block.call
|
29
|
+
teardown(persisted_job)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module IntegrationPal
|
2
|
+
class InstallGenerator < Rails::Generators::Base
|
3
|
+
source_root File.expand_path('../templates', __FILE__)
|
4
|
+
|
5
|
+
desc "Add CAS config to application.rb"
|
6
|
+
def update_application_config
|
7
|
+
application "@cas_server_url = 'https://cas-sso.instructure.com/'"
|
8
|
+
application "config.rack_cas.server_url = @cas_server_url"
|
9
|
+
end
|
10
|
+
|
11
|
+
desc "Mount the engine"
|
12
|
+
def add_routes
|
13
|
+
route "mount IntegrationPal::Engine, at: '/'"
|
14
|
+
end
|
15
|
+
|
16
|
+
desc "Add setup to ApplicationJob"
|
17
|
+
def add_common_methods_to_application_job
|
18
|
+
inject_into_file "#{Rails.root}/app/jobs/application_job.rb", after: "class ApplicationJob < ActiveJob::Base\n" do <<-'RUBY'
|
19
|
+
include IntegrationPal::BaseJob
|
20
|
+
RUBY
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
@@ -1,3 +1,3 @@
|
|
1
1
|
module IntegrationPal
|
2
|
-
VERSION = '0.1.
|
3
|
-
end
|
2
|
+
VERSION = '0.1.2'
|
3
|
+
end
|
@@ -1,6 +1,14 @@
|
|
1
1
|
require_relative 'boot'
|
2
2
|
|
3
|
-
|
3
|
+
# Pick the frameworks you want:
|
4
|
+
require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_view/railtie"
|
7
|
+
require "action_mailer/railtie"
|
8
|
+
require "active_job/railtie"
|
9
|
+
require "action_cable/engine"
|
10
|
+
# require "rails/test_unit/railtie"
|
11
|
+
require "sprockets/railtie"
|
4
12
|
|
5
13
|
Bundler.require(*Rails.groups)
|
6
14
|
require "integration_pal"
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
#
|
11
11
|
# It's strongly recommended that you check this file into your version control system.
|
12
12
|
|
13
|
-
ActiveRecord::Schema.define(version:
|
13
|
+
ActiveRecord::Schema.define(version: 20170531201218) do
|
14
14
|
|
15
15
|
# These are extensions that must be enabled in order to support this database
|
16
16
|
enable_extension "plpgsql"
|
@@ -24,6 +24,8 @@ ActiveRecord::Schema.define(version: 20170525153603) do
|
|
24
24
|
t.integer "worker_id"
|
25
25
|
t.datetime "created_at", null: false
|
26
26
|
t.datetime "updated_at", null: false
|
27
|
+
t.string "error"
|
28
|
+
t.text "backtrace"
|
27
29
|
end
|
28
30
|
|
29
31
|
create_table "integration_pal_workers", force: :cascade do |t|
|
File without changes
|
@@ -0,0 +1,944 @@
|
|
1
|
+
[1m[35m (2.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
2
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
3
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
4
|
+
[1m[35mSQL (2.6ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "be30515cfbb44d2a33fbf0a4900ec347"], ["access_id", "036c40b1bbcfb03c186748a6b66a1654"], ["secret_key", "bc751eed50657ff9f54bad62a161f6f8"], ["job_type", "TestJob"], ["encrypted_settings", "rI3ZwCzZYEnCIEvPzhOOVWIgBrQ=\n"], ["encrypted_settings_iv", "v65pQGKYEC+g4HJt\n"], ["created_at", "2017-05-31 17:35:41.666673"], ["updated_at", "2017-05-31 17:35:41.666673"]]
|
5
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
6
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
7
|
+
[1m[35mSQL (3.8ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 515], ["created_at", "2017-05-31 17:35:41.676602"], ["updated_at", "2017-05-31 17:35:41.676602"]]
|
8
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
9
|
+
Processing by IntegrationPal::Api::V1::JobsController#show as HTML
|
10
|
+
Parameters: {"id"=>"186"}
|
11
|
+
[1m[36mIntegrationPal::Worker Load (2.9ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."access_id" IS NULL LIMIT $1[0m [["LIMIT", 1]]
|
12
|
+
Filter chain halted as :authenticate_api rendered or redirected
|
13
|
+
Completed 401 Unauthorized in 5ms (ActiveRecord: 3.0ms)
|
14
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
15
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
16
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "f604a4704c5bcab5bd06a746b354886a"], ["access_id", "d9ed942ab88ac5eb4d3b7008126e24ca"], ["secret_key", "82849e5c60d0fe3c5a5c88c842048f13"], ["job_type", "TestJob"], ["encrypted_settings", "ipQhJELigSpow57/frghB+GlVUo=\n"], ["encrypted_settings_iv", "ej6wkjIATj0JVddZ\n"], ["created_at", "2017-05-31 17:35:41.707326"], ["updated_at", "2017-05-31 17:35:41.707326"]]
|
18
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
19
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
20
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "d9bf1c31e1831e1f6c5c263437ba85c9"], ["access_id", "20ec300e435265aab2a05d41a4cdf7cc"], ["secret_key", "a92060c13e95981a3d60704fa41f15ba"], ["job_type", "TestJob"], ["encrypted_settings", "aYTfT/9MtwLlxd5pFShOBczyKEo=\n"], ["encrypted_settings_iv", "b7s/BUN9ItuVcl3x\n"], ["created_at", "2017-05-31 17:35:41.722575"], ["updated_at", "2017-05-31 17:35:41.722575"]]
|
21
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
22
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
23
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 517], ["created_at", "2017-05-31 17:35:41.724491"], ["updated_at", "2017-05-31 17:35:41.724491"]]
|
24
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
25
|
+
Processing by IntegrationPal::Api::V1::JobsController#show as JSON
|
26
|
+
Parameters: {"id"=>"187"}
|
27
|
+
[1m[36mIntegrationPal::Worker Load (0.3ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."access_id" = $1 LIMIT $2[0m [["access_id", "d9ed942ab88ac5eb4d3b7008126e24ca"], ["LIMIT", 1]]
|
28
|
+
[1m[36mIntegrationPal::Job Load (2.8ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 187], ["LIMIT", 1]]
|
29
|
+
Completed 500 Internal Server Error in 14ms (Views: 0.8ms | ActiveRecord: 3.1ms)
|
30
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
31
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
32
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
33
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "65ef211c9a58c274798e58e0943822cb"], ["access_id", "f14cdff8cb58912e51b88a8989460f13"], ["secret_key", "58a764410131acfc4f6851e582bda797"], ["job_type", "TestJob"], ["encrypted_settings", "OSdW5DGEsa1Z97l6R5SEmAAyheU=\n"], ["encrypted_settings_iv", "9PdNOI51ClXpV/ea\n"], ["created_at", "2017-05-31 17:35:41.780588"], ["updated_at", "2017-05-31 17:35:41.780588"]]
|
34
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
35
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
36
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
37
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "45efd7cf5b1b5472463cce09cc7b58a3"], ["access_id", "4b47434ccd2bf933fc16d550b3a421fc"], ["secret_key", "5047cd09ff53e3fd5c2767749cd9a107"], ["job_type", "TestJob"], ["encrypted_settings", "yQlUpSePkQYolTrtVbayRlV3DRQ=\n"], ["encrypted_settings_iv", "ybFdfqAdO4vQRbfP\n"], ["created_at", "2017-05-31 17:35:41.804460"], ["updated_at", "2017-05-31 17:35:41.804460"]]
|
38
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
39
|
+
Processing by IntegrationPal::Api::V1::JobsController#create as HTML
|
40
|
+
Parameters: {"job"=>{"created_at"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>"519"}}
|
41
|
+
Unpermitted parameters: :created_at, :finished_at, :id, :progress, :started_at, :status, :updated_at
|
42
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
43
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 519], ["LIMIT", 1]]
|
44
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["worker_id", 519], ["created_at", "2017-05-31 17:35:41.826671"], ["updated_at", "2017-05-31 17:35:41.826671"]]
|
45
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46
|
+
[ActiveJob] [TestJob] [8fd39597-d0ed-4690-8a4c-20dcecf8c6c2] Performing TestJob (Job ID: 8fd39597-d0ed-4690-8a4c-20dcecf8c6c2) from Async(default) with arguments: 188
|
47
|
+
[ActiveJob] Enqueued TestJob (Job ID: 8fd39597-d0ed-4690-8a4c-20dcecf8c6c2) to Async(default) with arguments: 188
|
48
|
+
Completed 500 Internal Server Error in 16ms (Views: 0.5ms | ActiveRecord: 0.8ms)
|
49
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
50
|
+
[1m[35m (1.2ms)[0m [1m[31mROLLBACK[0m
|
51
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
52
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "b14442c67745e3e4c68aa57b25eca536"], ["access_id", "7f783672aa93b42b8b597beed634dc5b"], ["secret_key", "9e7361ab7af39a1bf19d3a806e78bb03"], ["job_type", "TestJob"], ["encrypted_settings", "p/V185x16a8cBwNBA/4GxBQXFuQ=\n"], ["encrypted_settings_iv", "u3DR09C/xVxR0aNT\n"], ["created_at", "2017-05-31 17:35:41.844488"], ["updated_at", "2017-05-31 17:35:41.844488"]]
|
54
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
56
|
+
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "b2c22d1c637f3ae4144d385b9306d05d"], ["access_id", "2be4adff9e85ff1df85a154884a4e369"], ["secret_key", "09c42e9ce14c4924091c333555fb740b"], ["job_type", "TestJob"], ["encrypted_settings", "ZVvxMGJS7+vTxqdDba6EDpxBvlc=\n"], ["encrypted_settings_iv", "trOq6GrqT0aYrlXE\n"], ["created_at", "2017-05-31 17:35:41.858637"], ["updated_at", "2017-05-31 17:35:41.858637"]]
|
57
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
58
|
+
Processing by IntegrationPal::Api::V1::JobsController#create as HTML
|
59
|
+
Parameters: {"job"=>{"created_at"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>"521"}}
|
60
|
+
Unpermitted parameters: :created_at, :finished_at, :id, :progress, :started_at, :status, :updated_at
|
61
|
+
[ActiveJob] [TestJob] [8fd39597-d0ed-4690-8a4c-20dcecf8c6c2] Performed TestJob (Job ID: 8fd39597-d0ed-4690-8a4c-20dcecf8c6c2) from Async(default) in 31.45ms
|
62
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
63
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 521], ["LIMIT", 1]]
|
64
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["worker_id", 521], ["created_at", "2017-05-31 17:35:41.866854"], ["updated_at", "2017-05-31 17:35:41.866854"]]
|
65
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
66
|
+
[ActiveJob] Enqueued TestJob (Job ID: b39e4cd2-6ab3-4e14-af15-13be03c1d17c) to Async(default) with arguments: 189
|
67
|
+
Completed 500 Internal Server Error in 7ms (Views: 0.4ms | ActiveRecord: 0.8ms)
|
68
|
+
[ActiveJob] [TestJob] [b39e4cd2-6ab3-4e14-af15-13be03c1d17c] Performing TestJob (Job ID: b39e4cd2-6ab3-4e14-af15-13be03c1d17c) from Async(default) with arguments: 189
|
69
|
+
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
|
70
|
+
[ActiveJob] [TestJob] [b39e4cd2-6ab3-4e14-af15-13be03c1d17c] Performed TestJob (Job ID: b39e4cd2-6ab3-4e14-af15-13be03c1d17c) from Async(default) in 0.05ms
|
71
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
72
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
73
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "4ff1e65fb9d642c8ca777af1d097dd54"], ["access_id", "4ec2bc4051858cefe367b19401159bf1"], ["secret_key", "f4a06dd9f9f034eb827f7d2d484216f1"], ["job_type", "TestJob"], ["encrypted_settings", "P9z3KXEWlM+pz9u/rKZDk3VWhPc=\n"], ["encrypted_settings_iv", "5y0FPuS1KLSqmE3s\n"], ["created_at", "2017-05-31 17:35:41.884328"], ["updated_at", "2017-05-31 17:35:41.884328"]]
|
74
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
75
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
76
|
+
Processing by IntegrationPal::Api::V1::JobsController#create as HTML
|
77
|
+
Parameters: {"job"=>{"created_at"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>""}}
|
78
|
+
Unpermitted parameters: :created_at, :finished_at, :id, :progress, :started_at, :status, :updated_at
|
79
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
80
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
81
|
+
Completed 422 Unprocessable Entity in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
82
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
83
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
84
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
85
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
86
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "0ba4ff26851c82bd6b354949dea9e957"], ["access_id", "63a91ad3bf2740951e2ed33b9c7c61bb"], ["secret_key", "0f4c82781472fc34313e1d2afceab176"], ["job_type", "TestJob"], ["encrypted_settings", "M5HvztLCqqrxBI5fqvMLwpOyvTg=\n"], ["encrypted_settings_iv", "O1b6++JrMzjf3MHA\n"], ["created_at", "2017-05-31 17:35:41.902627"], ["updated_at", "2017-05-31 17:35:41.902627"]]
|
87
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
88
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
89
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 523], ["created_at", "2017-05-31 17:35:41.907852"], ["updated_at", "2017-05-31 17:35:41.907852"]]
|
90
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
91
|
+
Processing by IntegrationPal::JobsController#index as HTML
|
92
|
+
Rendering text template
|
93
|
+
Rendered text template (0.0ms)
|
94
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
95
|
+
Filter chain halted as :authenticate! rendered or redirected
|
96
|
+
Completed 401 Unauthorized in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
|
97
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
98
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
99
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
100
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "900e8f759373824d1f14d57ead00a1f1"], ["access_id", "9aea945d2837e10d1472e8e245fe136a"], ["secret_key", "463bbbb5d9fd3f41bfc07dd705c6abba"], ["job_type", "TestJob"], ["encrypted_settings", "FAFctp1PwfKIY7zOowMH8CGux4Y=\n"], ["encrypted_settings_iv", "kW1UEanb7csMMo1r\n"], ["created_at", "2017-05-31 17:35:41.938768"], ["updated_at", "2017-05-31 17:35:41.938768"]]
|
101
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
102
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
103
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 524], ["created_at", "2017-05-31 17:35:41.941045"], ["updated_at", "2017-05-31 17:35:41.941045"]]
|
104
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
105
|
+
Processing by IntegrationPal::JobsController#index as HTML
|
106
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/index.html.erb within layouts/integration_pal/application
|
107
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/index.html.erb within layouts/integration_pal/application (0.2ms)
|
108
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
109
|
+
Completed 200 OK in 12ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
110
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs"[0m
|
111
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
112
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
113
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
114
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
115
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "c306be3d97025c04e9c7a5352b86a7e2"], ["access_id", "5e9d0eede78e2f6976cde2e20c26b8df"], ["secret_key", "0c23f186f4911295b244aec949e0327e"], ["job_type", "TestJob"], ["encrypted_settings", "nKToKe/4lu+36rmuM34PKZDrdps=\n"], ["encrypted_settings_iv", "DLryHsOprpilopIx\n"], ["created_at", "2017-05-31 17:35:41.974783"], ["updated_at", "2017-05-31 17:35:41.974783"]]
|
116
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
117
|
+
Processing by IntegrationPal::JobsController#create as HTML
|
118
|
+
Parameters: {"job"=>{"created_at"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>"525"}}
|
119
|
+
Unpermitted parameters: :created_at, :finished_at, :id, :job_params, :started_at, :updated_at
|
120
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
121
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 525], ["LIMIT", 1]]
|
122
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["status", "pending"], ["progress", "0"], ["worker_id", 525], ["created_at", "2017-05-31 17:35:41.984228"], ["updated_at", "2017-05-31 17:35:41.984228"]]
|
123
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
124
|
+
Redirected to http://test.host/integration_pal/jobs/192
|
125
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.7ms)
|
126
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
127
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
128
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
129
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
130
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "41362b9784c0c15ab47e05edaa06b6ea"], ["access_id", "2abdb6fb6ca5d4d737372cab4ee78b26"], ["secret_key", "ee8ec5ea11dd8e0099576582a6dd9c2b"], ["job_type", "TestJob"], ["encrypted_settings", "1Ai48hPYfzBMnWrsGF3OpTN6MHI=\n"], ["encrypted_settings_iv", "hbY7Vxnrat84PZ75\n"], ["created_at", "2017-05-31 17:35:41.999821"], ["updated_at", "2017-05-31 17:35:41.999821"]]
|
131
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
132
|
+
Processing by IntegrationPal::JobsController#create as HTML
|
133
|
+
Parameters: {"job"=>{"created_at"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>"526"}}
|
134
|
+
Unpermitted parameters: :created_at, :finished_at, :id, :job_params, :started_at, :updated_at
|
135
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
136
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 526], ["LIMIT", 1]]
|
137
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["status", "pending"], ["progress", "0"], ["worker_id", 526], ["created_at", "2017-05-31 17:35:42.009031"], ["updated_at", "2017-05-31 17:35:42.009031"]]
|
138
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
139
|
+
Redirected to http://test.host/integration_pal/jobs/193
|
140
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.6ms)
|
141
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
142
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
143
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
144
|
+
Processing by IntegrationPal::JobsController#create as HTML
|
145
|
+
Parameters: {"job"=>{"created_at"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>""}}
|
146
|
+
Unpermitted parameters: :created_at, :finished_at, :id, :job_params, :started_at, :updated_at
|
147
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
148
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
149
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/new.html.erb within layouts/integration_pal/application
|
150
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/new.html.erb within layouts/integration_pal/application (0.2ms)
|
151
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
152
|
+
Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 0.2ms)
|
153
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
154
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
155
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
156
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
157
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "efe260e1793c51fbe508751e75ea8697"], ["access_id", "595ec4ace0ec5b7876cd16b635dce549"], ["secret_key", "a87e4d69e7ca58e0db99e3621b4689e8"], ["job_type", "TestJob"], ["encrypted_settings", "k7ii2lSoJYaiUZApSCDYKBWndJ0=\n"], ["encrypted_settings_iv", "a4KQydnJNAI6jgDB\n"], ["created_at", "2017-05-31 17:35:42.043866"], ["updated_at", "2017-05-31 17:35:42.043866"]]
|
158
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
159
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
160
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 527], ["created_at", "2017-05-31 17:35:42.046106"], ["updated_at", "2017-05-31 17:35:42.046106"]]
|
161
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
162
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
163
|
+
Parameters: {"job"=>{"name"=>"New Name"}, "id"=>"194"}
|
164
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 194], ["LIMIT", 1]]
|
165
|
+
Unpermitted parameter: :name
|
166
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
167
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 527], ["LIMIT", 1]]
|
168
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
169
|
+
Redirected to http://test.host/integration_pal/jobs/194
|
170
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.6ms)
|
171
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 194], ["LIMIT", 1]]
|
172
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
173
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
174
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
175
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "115fd89afc8f6d94112b1c4c9ce06493"], ["access_id", "95ede4dc0eaf8466ba40def7fd82de12"], ["secret_key", "5aa688fc67595436968a075932d2ddac"], ["job_type", "TestJob"], ["encrypted_settings", "L7lPwaeBjXsnZuVcZqwyNqs7K/o=\n"], ["encrypted_settings_iv", "yDhtTe3nxdjUZqEr\n"], ["created_at", "2017-05-31 17:35:42.070596"], ["updated_at", "2017-05-31 17:35:42.070596"]]
|
176
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
177
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
178
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 528], ["created_at", "2017-05-31 17:35:42.072511"], ["updated_at", "2017-05-31 17:35:42.072511"]]
|
179
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
180
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
181
|
+
Parameters: {"job"=>{"name"=>"New Name"}, "id"=>"195"}
|
182
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 195], ["LIMIT", 1]]
|
183
|
+
Unpermitted parameter: :name
|
184
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
185
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 528], ["LIMIT", 1]]
|
186
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
187
|
+
Redirected to http://test.host/integration_pal/jobs/195
|
188
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.6ms)
|
189
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
190
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
191
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
192
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "243046ab781e5fa74d3dc074973d6b6f"], ["access_id", "64f7c7175c9bdacdeb3687bb098316cd"], ["secret_key", "c9d840716cb47f29d0930f3f9ac25e2a"], ["job_type", "TestJob"], ["encrypted_settings", "csOyPDesWvRB+oADu7N4bYhpaW8=\n"], ["encrypted_settings_iv", "lKaKOTfKFz2nQodx\n"], ["created_at", "2017-05-31 17:35:42.100332"], ["updated_at", "2017-05-31 17:35:42.100332"]]
|
193
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
194
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
195
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 529], ["created_at", "2017-05-31 17:35:42.102440"], ["updated_at", "2017-05-31 17:35:42.102440"]]
|
196
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
197
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
198
|
+
Parameters: {"job"=>{"name"=>"New Name"}, "id"=>"196"}
|
199
|
+
[1m[36mIntegrationPal::Job Load (0.3ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 196], ["LIMIT", 1]]
|
200
|
+
Unpermitted parameter: :name
|
201
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
202
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 529], ["LIMIT", 1]]
|
203
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
204
|
+
Redirected to http://test.host/integration_pal/jobs/196
|
205
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.6ms)
|
206
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
207
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
208
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
209
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "5950b17df3420a0e39d047e3f0b45e5a"], ["access_id", "8199f7101f7a6b8d6785aa2e75920237"], ["secret_key", "c78aa52f1271e173a7d3b3837ae8cab5"], ["job_type", "TestJob"], ["encrypted_settings", "QKFGmUHemDfscmTtY1Aoqa0VfyE=\n"], ["encrypted_settings_iv", "FpM1RlBa0jZdKtIz\n"], ["created_at", "2017-05-31 17:35:42.129334"], ["updated_at", "2017-05-31 17:35:42.129334"]]
|
210
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
211
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
212
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 530], ["created_at", "2017-05-31 17:35:42.131238"], ["updated_at", "2017-05-31 17:35:42.131238"]]
|
213
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
214
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
215
|
+
Parameters: {"job"=>{"worker_id"=>""}, "id"=>"197"}
|
216
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 197], ["LIMIT", 1]]
|
217
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
218
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
219
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/edit.html.erb within layouts/integration_pal/application
|
220
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/edit.html.erb within layouts/integration_pal/application (0.3ms)
|
221
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
222
|
+
Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.4ms)
|
223
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
224
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
225
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
226
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "74b4c94e2f06f3c3bb96429d919f601f"], ["access_id", "1f00f2311680aa3ce59749c4087903fa"], ["secret_key", "5d8dacefe06d0fdc1e1c11a00ce54177"], ["job_type", "TestJob"], ["encrypted_settings", "fMtg9kCc1V0ufUGOmZ1Z94BzbhI=\n"], ["encrypted_settings_iv", "9X6PwYkBd+v0zfNA\n"], ["created_at", "2017-05-31 17:35:42.159058"], ["updated_at", "2017-05-31 17:35:42.159058"]]
|
227
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
228
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
229
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 531], ["created_at", "2017-05-31 17:35:42.161133"], ["updated_at", "2017-05-31 17:35:42.161133"]]
|
230
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
231
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
232
|
+
Parameters: {"job"=>{"worker_id"=>""}, "id"=>"198"}
|
233
|
+
[1m[36mIntegrationPal::Job Load (0.1ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 198], ["LIMIT", 1]]
|
234
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
235
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
236
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/edit.html.erb within layouts/integration_pal/application
|
237
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/edit.html.erb within layouts/integration_pal/application (0.0ms)
|
238
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
239
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.3ms)
|
240
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
241
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
242
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
243
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "528a5feeaca2edf9bfdfce770bf4f6ae"], ["access_id", "693aba89e4fc43a9487d703f25aed70e"], ["secret_key", "d24f454a35139c03c5d413672d02429d"], ["job_type", "TestJob"], ["encrypted_settings", "DvskmCYpEOeXUzzMmODkvg8ogWU=\n"], ["encrypted_settings_iv", "J70flEZpwKtricOe\n"], ["created_at", "2017-05-31 17:35:42.181947"], ["updated_at", "2017-05-31 17:35:42.181947"]]
|
244
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
245
|
+
Processing by IntegrationPal::WorkersController#index as HTML
|
246
|
+
Rendering text template
|
247
|
+
Rendered text template (0.0ms)
|
248
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
249
|
+
Filter chain halted as :authenticate! rendered or redirected
|
250
|
+
Completed 401 Unauthorized in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
251
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
252
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
253
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
254
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "1b27590548c4aa8c837fe4bae0c0dd27"], ["access_id", "b19654270fbcf823c63f9fa68b4436f1"], ["secret_key", "1cae22a7aa3c75b63afc00a87a43bd41"], ["job_type", "TestJob"], ["encrypted_settings", "QpwCdjjiS2qgQjW59g0F23EWY3o=\n"], ["encrypted_settings_iv", "tre4I0UvzDvK8zGQ\n"], ["created_at", "2017-05-31 17:35:42.197047"], ["updated_at", "2017-05-31 17:35:42.197047"]]
|
255
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
256
|
+
Processing by IntegrationPal::WorkersController#index as HTML
|
257
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/index.html.erb within layouts/integration_pal/application
|
258
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/index.html.erb within layouts/integration_pal/application (0.2ms)
|
259
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
260
|
+
Completed 200 OK in 15ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
261
|
+
[1m[36mIntegrationPal::Worker Load (0.3ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers"[0m
|
262
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
263
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
264
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_workers"[0m
|
265
|
+
Processing by IntegrationPal::WorkersController#create as HTML
|
266
|
+
Parameters: {"worker"=>{"access_id"=>"17f766444584750712ff38307c998c9d", "created_at"=>"", "encrypted_settings"=>"yNCtWCuxgecoKxNPaxCS9XFgevA=\n", "encrypted_settings_iv"=>"aFuYDdj+pLZkO5JX\n", "id"=>"", "job_type"=>"TestJob", "name"=>"030ad716af0e854abd7ddcb4c515d373", "secret_key"=>"e67d71468b4f55fa31877dbcb38abafd", "updated_at"=>""}}
|
267
|
+
Unpermitted parameters: :created_at, :encrypted_settings, :encrypted_settings_iv, :id, :updated_at
|
268
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
269
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "030ad716af0e854abd7ddcb4c515d373"], ["access_id", "17f766444584750712ff38307c998c9d"], ["secret_key", "e67d71468b4f55fa31877dbcb38abafd"], ["job_type", "TestJob"], ["encrypted_settings", "9CrFLHRDn0OxRnSJKDWltkc5lto=\n"], ["encrypted_settings_iv", "ivhAssjxipr4vW/k\n"], ["created_at", "2017-05-31 17:35:42.240863"], ["updated_at", "2017-05-31 17:35:42.240863"]]
|
270
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
271
|
+
Redirected to http://test.host/integration_pal/workers/534
|
272
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.6ms)
|
273
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_workers"[0m
|
274
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
275
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
276
|
+
Processing by IntegrationPal::WorkersController#create as HTML
|
277
|
+
Parameters: {"worker"=>{"access_id"=>"4cb7577598bdc031bd56b6957860c103", "created_at"=>"", "encrypted_settings"=>"fD/9VPiN9asXuGj5JXMB6B2CGG8=\n", "encrypted_settings_iv"=>"W0xFJCkoNsMdtdSU\n", "id"=>"", "job_type"=>"TestJob", "name"=>"7ac189725d531f8fa4f7928187235ccd", "secret_key"=>"90b4b73884d1ea885136328e5e5e6115", "updated_at"=>""}}
|
278
|
+
Unpermitted parameters: :created_at, :encrypted_settings, :encrypted_settings_iv, :id, :updated_at
|
279
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
280
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "7ac189725d531f8fa4f7928187235ccd"], ["access_id", "4cb7577598bdc031bd56b6957860c103"], ["secret_key", "90b4b73884d1ea885136328e5e5e6115"], ["job_type", "TestJob"], ["encrypted_settings", "uIEal/889CyXXAb+7toZHkRSJYQ=\n"], ["encrypted_settings_iv", "5B6K2eyJBLivY+rw\n"], ["created_at", "2017-05-31 17:35:42.261951"], ["updated_at", "2017-05-31 17:35:42.261951"]]
|
281
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
282
|
+
Redirected to http://test.host/integration_pal/workers/535
|
283
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.4ms)
|
284
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
285
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
286
|
+
[1m[35m (5.0ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_workers"[0m
|
287
|
+
Processing by IntegrationPal::WorkersController#create as HTML
|
288
|
+
Parameters: {"worker"=>{"access_id"=>"aae0bad9ede5e25fea87b3d017dafc85", "created_at"=>"", "encrypted_settings"=>"AqQHRepc53slgNF+8iIBL/OakAI=\n", "encrypted_settings_iv"=>"dvcId09opsOBBY3N\n", "id"=>"", "job_type"=>"", "name"=>"8aab86ed20fccf87ee2d02b7533a0679", "secret_key"=>"bdf12adf8c00ba2aedbe33a2a8022cfb", "updated_at"=>""}}
|
289
|
+
Unpermitted parameters: :created_at, :encrypted_settings, :encrypted_settings_iv, :id, :updated_at
|
290
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
291
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
292
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/new.html.erb within layouts/integration_pal/application
|
293
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/new.html.erb within layouts/integration_pal/application (0.3ms)
|
294
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
295
|
+
Completed 200 OK in 13ms (Views: 6.9ms | ActiveRecord: 0.4ms)
|
296
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_workers"[0m
|
297
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
298
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
299
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
300
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "09ee6297ef0a10acac60a953b47a6010"], ["access_id", "4e97602e30adc54bbc4ed8f8db11b150"], ["secret_key", "65983b77d81bdc2f054cc76399b99bff"], ["job_type", "TestJob"], ["encrypted_settings", "2Po9tpgSJWR6UHrOJudTmsgHuGk=\n"], ["encrypted_settings_iv", "ZPzoJIuCaDTeWy9p\n"], ["created_at", "2017-05-31 17:35:42.309899"], ["updated_at", "2017-05-31 17:35:42.309899"]]
|
301
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
302
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
303
|
+
Parameters: {"worker"=>{"name"=>"New Name"}, "id"=>"536"}
|
304
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 536], ["LIMIT", 1]]
|
305
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
306
|
+
[1m[35mSQL (0.3ms)[0m [1m[33mUPDATE "integration_pal_workers" SET "name" = $1, "updated_at" = $2 WHERE "integration_pal_workers"."id" = $3[0m [["name", "New Name"], ["updated_at", "2017-05-31 17:35:42.317234"], ["id", 536]]
|
307
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
308
|
+
Redirected to http://test.host/integration_pal/workers/536
|
309
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.6ms)
|
310
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 536], ["LIMIT", 1]]
|
311
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
312
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
313
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
314
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "193049420ca06ef9100a14d27c74446a"], ["access_id", "d064fff43beba3462026044a7c64a6e6"], ["secret_key", "2f570be245b1d784278f6f201218daf5"], ["job_type", "TestJob"], ["encrypted_settings", "7AsI1iRttFmUDsO7rnhh3BZWQDo=\n"], ["encrypted_settings_iv", "PdGRapMckccJHydo\n"], ["created_at", "2017-05-31 17:35:42.335135"], ["updated_at", "2017-05-31 17:35:42.335135"]]
|
315
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
316
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
317
|
+
Parameters: {"worker"=>{"name"=>"New Name"}, "id"=>"537"}
|
318
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 537], ["LIMIT", 1]]
|
319
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
320
|
+
[1m[35mSQL (0.3ms)[0m [1m[33mUPDATE "integration_pal_workers" SET "name" = $1, "updated_at" = $2 WHERE "integration_pal_workers"."id" = $3[0m [["name", "New Name"], ["updated_at", "2017-05-31 17:35:42.347039"], ["id", 537]]
|
321
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
322
|
+
Redirected to http://test.host/integration_pal/workers/537
|
323
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.7ms)
|
324
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
325
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
326
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
327
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "8beee2f436e5317471bf463621b1a4b4"], ["access_id", "af7ac5657f6b43401d809ef1616e3828"], ["secret_key", "b639e669ad2550cbdc1f2caf9a280b5b"], ["job_type", "TestJob"], ["encrypted_settings", "R79fVXmpiJTSnBCsSiMRXf6CIe0=\n"], ["encrypted_settings_iv", "pUZChC8zcjnl4aVI\n"], ["created_at", "2017-05-31 17:35:42.361521"], ["updated_at", "2017-05-31 17:35:42.361521"]]
|
328
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
329
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
330
|
+
Parameters: {"worker"=>{"name"=>"New Name"}, "id"=>"538"}
|
331
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 538], ["LIMIT", 1]]
|
332
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
333
|
+
[1m[35mSQL (0.3ms)[0m [1m[33mUPDATE "integration_pal_workers" SET "name" = $1, "updated_at" = $2 WHERE "integration_pal_workers"."id" = $3[0m [["name", "New Name"], ["updated_at", "2017-05-31 17:35:42.369027"], ["id", 538]]
|
334
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
335
|
+
Redirected to http://test.host/integration_pal/workers/538
|
336
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.6ms)
|
337
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
338
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
339
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
340
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "c43084664f3906ea3b2346e55f893f3f"], ["access_id", "f979abe5394a47c91b69ee9310e96b94"], ["secret_key", "f0ed94b731d266431e0374f66367fb61"], ["job_type", "TestJob"], ["encrypted_settings", "poZlHCMkkCj4ymp+bwNgzyZShb4=\n"], ["encrypted_settings_iv", "xnw5na6zWbv7iMLN\n"], ["created_at", "2017-05-31 17:35:42.386831"], ["updated_at", "2017-05-31 17:35:42.386831"]]
|
341
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
342
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
343
|
+
Parameters: {"worker"=>{"job_type"=>""}, "id"=>"539"}
|
344
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 539], ["LIMIT", 1]]
|
345
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
346
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
347
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/edit.html.erb within layouts/integration_pal/application
|
348
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/edit.html.erb within layouts/integration_pal/application (0.2ms)
|
349
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
350
|
+
Completed 200 OK in 16ms (Views: 10.1ms | ActiveRecord: 0.3ms)
|
351
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
352
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
353
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
354
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "1710be9cfa9cdf3f82318ae5c002bf7b"], ["access_id", "0042f43de63aa394a0a731b8d53bf887"], ["secret_key", "d0b405d67ad5f5aad06f977e4c3d7c22"], ["job_type", "TestJob"], ["encrypted_settings", "w541k5cXWriLZN2Oe9VoGpJZiZA=\n"], ["encrypted_settings_iv", "OpJEZmjjMJ7XuMnn\n"], ["created_at", "2017-05-31 17:35:42.421867"], ["updated_at", "2017-05-31 17:35:42.421867"]]
|
355
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
356
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
357
|
+
Parameters: {"worker"=>{"job_type"=>""}, "id"=>"540"}
|
358
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 540], ["LIMIT", 1]]
|
359
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
360
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
361
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/edit.html.erb within layouts/integration_pal/application
|
362
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/edit.html.erb within layouts/integration_pal/application (0.0ms)
|
363
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
364
|
+
Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.3ms)
|
365
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
366
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
367
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
368
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
369
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
370
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "0de72cf0a2113043758597a8e52efeed"], ["access_id", "93255db977822ea958804ad69ff6a2d4"], ["secret_key", "801dcf63182a1a13e43286f834e0f6ec"], ["job_type", "TestJob"], ["encrypted_settings", "Nsll2+ifDrutKAyQKbUnroEjWCw=\n"], ["encrypted_settings_iv", "Uhhv2POGm0cS4WE1\n"], ["created_at", "2017-05-31 17:35:42.449651"], ["updated_at", "2017-05-31 17:35:42.449651"]]
|
371
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
372
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
373
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
374
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
375
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "68dea3e5d9906cd0e3bbdf02f1ffa7b6"], ["access_id", "d68ce2874f5a56e01248e0ed0b1954b3"], ["secret_key", "83f8ae4bfb933ebf92441d4e6bc28218"], ["job_type", "TestJob"], ["encrypted_settings", "kmtX79PMnC51YNOPStwYsmWsfJM=\n"], ["encrypted_settings_iv", "5n1J0l9A2rBLKCqL\n"], ["created_at", "2017-05-31 17:35:42.463448"], ["updated_at", "2017-05-31 17:35:42.463448"]]
|
376
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
377
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
378
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
379
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
380
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
381
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
382
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
383
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
384
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
385
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
386
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
387
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
388
|
+
[1m[35m (1.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
389
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
390
|
+
[1m[35m (2.9ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
391
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
392
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
393
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
394
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
395
|
+
[1m[35m (200.8ms)[0m [1m[35mDROP DATABASE IF EXISTS "integration_pal_test"[0m
|
396
|
+
[1m[35m (698.5ms)[0m [1m[35mCREATE DATABASE "integration_pal_test" ENCODING = 'unicode'[0m
|
397
|
+
[1m[35mSQL (1.7ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
398
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_jobs" CASCADE[0m
|
399
|
+
[1m[35m (15.4ms)[0m [1m[35mCREATE TABLE "integration_pal_jobs" ("id" bigserial primary key, "job_params" text, "status" character varying, "started_at" timestamp, "finished_at" timestamp, "progress" character varying, "worker_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
400
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_workers" CASCADE[0m
|
401
|
+
[1m[35m (4.6ms)[0m [1m[35mCREATE TABLE "integration_pal_workers" ("id" bigserial primary key, "name" character varying, "access_id" character varying, "secret_key" character varying, "job_type" character varying, "encrypted_settings" text, "encrypted_settings_iv" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
402
|
+
[1m[35m (3.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
403
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
404
|
+
[1m[35m (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20170525153603)[0m
|
405
|
+
[1m[35m (3.9ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
406
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.0ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
407
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
408
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2017-05-31 21:26:28.496682"], ["updated_at", "2017-05-31 21:26:28.496682"]]
|
409
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
410
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
411
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
412
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
413
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
414
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
415
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
416
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
417
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
418
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
419
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
420
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
421
|
+
[1m[35m (191.7ms)[0m [1m[35mDROP DATABASE IF EXISTS "integration_pal_test"[0m
|
422
|
+
[1m[35m (471.1ms)[0m [1m[35mCREATE DATABASE "integration_pal_test" ENCODING = 'unicode'[0m
|
423
|
+
[1m[35mSQL (1.6ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
424
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_jobs" CASCADE[0m
|
425
|
+
[1m[35m (17.5ms)[0m [1m[35mCREATE TABLE "integration_pal_jobs" ("id" bigserial primary key, "job_params" text, "status" character varying, "started_at" timestamp, "finished_at" timestamp, "progress" character varying, "worker_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
426
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_workers" CASCADE[0m
|
427
|
+
[1m[35m (4.0ms)[0m [1m[35mCREATE TABLE "integration_pal_workers" ("id" bigserial primary key, "name" character varying, "access_id" character varying, "secret_key" character varying, "job_type" character varying, "encrypted_settings" text, "encrypted_settings_iv" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
428
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
429
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
430
|
+
[1m[35m (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20170525153603)[0m
|
431
|
+
[1m[35m (3.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
432
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
433
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
434
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2017-05-31 21:26:31.139730"], ["updated_at", "2017-05-31 21:26:31.139730"]]
|
435
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
436
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
437
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
438
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
439
|
+
[1m[35m (2.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
440
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
441
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
442
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
443
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
444
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
445
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
446
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
447
|
+
[1m[35m (200.1ms)[0m [1m[35mDROP DATABASE IF EXISTS "integration_pal_test"[0m
|
448
|
+
[1m[35m (555.5ms)[0m [1m[35mCREATE DATABASE "integration_pal_test" ENCODING = 'unicode'[0m
|
449
|
+
[1m[35mSQL (1.7ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
450
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_jobs" CASCADE[0m
|
451
|
+
[1m[35m (20.5ms)[0m [1m[35mCREATE TABLE "integration_pal_jobs" ("id" bigserial primary key, "job_params" text, "status" character varying, "started_at" timestamp, "finished_at" timestamp, "progress" character varying, "worker_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
452
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_workers" CASCADE[0m
|
453
|
+
[1m[35m (4.8ms)[0m [1m[35mCREATE TABLE "integration_pal_workers" ("id" bigserial primary key, "name" character varying, "access_id" character varying, "secret_key" character varying, "job_type" character varying, "encrypted_settings" text, "encrypted_settings_iv" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
454
|
+
[1m[35m (3.6ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
455
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
456
|
+
[1m[35m (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20170525153603)[0m
|
457
|
+
[1m[35m (3.5ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
458
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.0ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
459
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
460
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2017-05-31 21:26:33.959127"], ["updated_at", "2017-05-31 21:26:33.959127"]]
|
461
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
462
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
463
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
464
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
465
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
466
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
467
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
468
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
469
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
470
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
471
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
472
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
473
|
+
[1m[35m (196.2ms)[0m [1m[35mDROP DATABASE IF EXISTS "integration_pal_test"[0m
|
474
|
+
[1m[35m (497.7ms)[0m [1m[35mCREATE DATABASE "integration_pal_test" ENCODING = 'unicode'[0m
|
475
|
+
[1m[35mSQL (1.8ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
476
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_jobs" CASCADE[0m
|
477
|
+
[1m[35m (20.7ms)[0m [1m[35mCREATE TABLE "integration_pal_jobs" ("id" bigserial primary key, "job_params" text, "status" character varying, "started_at" timestamp, "finished_at" timestamp, "progress" character varying, "worker_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
478
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_workers" CASCADE[0m
|
479
|
+
[1m[35m (4.4ms)[0m [1m[35mCREATE TABLE "integration_pal_workers" ("id" bigserial primary key, "name" character varying, "access_id" character varying, "secret_key" character varying, "job_type" character varying, "encrypted_settings" text, "encrypted_settings_iv" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
480
|
+
[1m[35m (3.4ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
481
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
482
|
+
[1m[35m (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20170525153603)[0m
|
483
|
+
[1m[35m (3.6ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
484
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
485
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
486
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2017-05-31 21:26:36.730853"], ["updated_at", "2017-05-31 21:26:36.730853"]]
|
487
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
488
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
489
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
490
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
491
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
492
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
493
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
494
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
495
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
496
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
497
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
498
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
499
|
+
[1m[35m (203.4ms)[0m [1m[35mDROP DATABASE IF EXISTS "integration_pal_test"[0m
|
500
|
+
[1m[35m (494.9ms)[0m [1m[35mCREATE DATABASE "integration_pal_test" ENCODING = 'unicode'[0m
|
501
|
+
[1m[35mSQL (1.6ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
502
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_jobs" CASCADE[0m
|
503
|
+
[1m[35m (20.3ms)[0m [1m[35mCREATE TABLE "integration_pal_jobs" ("id" bigserial primary key, "job_params" text, "status" character varying, "started_at" timestamp, "finished_at" timestamp, "progress" character varying, "worker_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
504
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "integration_pal_workers" CASCADE[0m
|
505
|
+
[1m[35m (4.9ms)[0m [1m[35mCREATE TABLE "integration_pal_workers" ("id" bigserial primary key, "name" character varying, "access_id" character varying, "secret_key" character varying, "job_type" character varying, "encrypted_settings" text, "encrypted_settings_iv" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
506
|
+
[1m[35m (3.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
507
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
508
|
+
[1m[35m (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20170525153603)[0m
|
509
|
+
[1m[35m (3.7ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
510
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.0ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
511
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
512
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2017-05-31 21:26:39.493099"], ["updated_at", "2017-05-31 21:26:39.493099"]]
|
513
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
514
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
515
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
516
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
517
|
+
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
518
|
+
[1m[35m (1.8ms)[0m [1m[34mSELECT pg_try_advisory_lock(6964560810240048645);[0m
|
519
|
+
[1m[35m (1.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
520
|
+
Migrating to CreateIntegrationPalWorkers (20170524203831)
|
521
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
522
|
+
[1m[35m (7.4ms)[0m [1m[35mCREATE TABLE "integration_pal_workers" ("id" bigserial primary key, "name" character varying, "access_id" character varying, "secret_key" character varying, "job_type" character varying, "encrypted_settings" text, "encrypted_settings_iv" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
523
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
524
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_advisory_unlock(6964560810240048645)[0m
|
525
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
526
|
+
[1m[35m (1.8ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
527
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
528
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
529
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
530
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
531
|
+
[1m[35m (132.0ms)[0m [1m[35mDROP DATABASE IF EXISTS "integration_pal_test"[0m
|
532
|
+
[1m[35m (23.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
533
|
+
[1m[35m (4.4ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
534
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_try_advisory_lock(6964560810240048645);[0m
|
535
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
536
|
+
Migrating to CreateIntegrationPalWorkers (20170524203831)
|
537
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
538
|
+
[1m[35m (5.5ms)[0m [1m[35mCREATE TABLE "integration_pal_workers" ("id" bigserial primary key, "name" character varying, "access_id" character varying, "secret_key" character varying, "job_type" character varying, "encrypted_settings" text, "encrypted_settings_iv" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
539
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20170524203831"]]
|
540
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
541
|
+
Migrating to CreateIntegrationPalJobs (20170525153603)
|
542
|
+
[1m[35m (6.0ms)[0m [1m[35mBEGIN[0m
|
543
|
+
[1m[35m (17.9ms)[0m [1m[35mCREATE TABLE "integration_pal_jobs" ("id" bigserial primary key, "job_params" text, "status" character varying, "started_at" timestamp, "finished_at" timestamp, "progress" character varying, "worker_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
544
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20170525153603"]]
|
545
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
546
|
+
Migrating to AddErrorFieldsToJobs (20170531201218)
|
547
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
548
|
+
[1m[35m (0.4ms)[0m [1m[35mALTER TABLE "integration_pal_jobs" ADD "error" character varying[0m
|
549
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "integration_pal_jobs" ADD "backtrace" text[0m
|
550
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20170531201218"]]
|
551
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
552
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
553
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
554
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2017-05-31 21:27:39.994126"], ["updated_at", "2017-05-31 21:27:39.994126"]]
|
555
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
556
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_advisory_unlock(6964560810240048645)[0m
|
557
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
558
|
+
[1m[35m (2.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
559
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
560
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
561
|
+
[1m[35mSQL (2.0ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "c3267c0656fab768001400f627aea73e"], ["access_id", "bd9dc41f8f60a74c74809493b9a0be9c"], ["secret_key", "434a0522cd73ff2c2b6aac5d803f1117"], ["job_type", "TestJob"], ["encrypted_settings", "rXdz9611dR1ZEQrorFGz9hhgRaw=\n"], ["encrypted_settings_iv", "ESh6DUpgih6aR5mf\n"], ["created_at", "2017-05-31 21:27:45.133529"], ["updated_at", "2017-05-31 21:27:45.133529"]]
|
562
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
563
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
564
|
+
[1m[35mSQL (1.7ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 1], ["created_at", "2017-05-31 21:27:45.147320"], ["updated_at", "2017-05-31 21:27:45.147320"]]
|
565
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
566
|
+
Processing by IntegrationPal::Api::V1::JobsController#show as HTML
|
567
|
+
Parameters: {"id"=>"1"}
|
568
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."access_id" IS NULL LIMIT $1[0m [["LIMIT", 1]]
|
569
|
+
Filter chain halted as :authenticate_api rendered or redirected
|
570
|
+
Completed 401 Unauthorized in 2ms (ActiveRecord: 0.3ms)
|
571
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
572
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
573
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
574
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "40dce7ec8844e8ca37cb84b2fa3f2ede"], ["access_id", "8b7de608ebb793c6565e6ba87a824e5b"], ["secret_key", "d775694e560e61d256812c4ee1077fab"], ["job_type", "TestJob"], ["encrypted_settings", "0hdEaOSieF/R4BoG18OXBZ/0rCo=\n"], ["encrypted_settings_iv", "oADY6o2Ns7ffACnq\n"], ["created_at", "2017-05-31 21:27:45.169663"], ["updated_at", "2017-05-31 21:27:45.169663"]]
|
575
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
576
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
577
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "be7def83e3d00fab477b13865b27d813"], ["access_id", "9252e43f93160b92a40ea52758df85cd"], ["secret_key", "bebcad789b7176b84acafd4bfd90aa47"], ["job_type", "TestJob"], ["encrypted_settings", "2fNxZUrToIBmqa3yQwL1xc7EXVY=\n"], ["encrypted_settings_iv", "GMl4G5T8jDV2Xb3z\n"], ["created_at", "2017-05-31 21:27:45.194217"], ["updated_at", "2017-05-31 21:27:45.194217"]]
|
578
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
579
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
580
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 3], ["created_at", "2017-05-31 21:27:45.196319"], ["updated_at", "2017-05-31 21:27:45.196319"]]
|
581
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
582
|
+
Processing by IntegrationPal::Api::V1::JobsController#show as JSON
|
583
|
+
Parameters: {"id"=>"2"}
|
584
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."access_id" = $1 LIMIT $2[0m [["access_id", "8b7de608ebb793c6565e6ba87a824e5b"], ["LIMIT", 1]]
|
585
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
|
586
|
+
Completed 200 OK in 16ms (Views: 0.8ms | ActiveRecord: 0.4ms)
|
587
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
588
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
589
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
590
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "b796c37cef04062825bf23bbe6e06273"], ["access_id", "2c0333060da6c5bacfbfb7e1b5ea8201"], ["secret_key", "f61ab222e376aee27e9744dd53eec8d5"], ["job_type", "TestJob"], ["encrypted_settings", "82afAgbMqyIBCqCgos/ewlXgeIY=\n"], ["encrypted_settings_iv", "+Q7YuBonsACoTEZG\n"], ["created_at", "2017-05-31 21:27:45.248644"], ["updated_at", "2017-05-31 21:27:45.248644"]]
|
591
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
592
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
593
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
594
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "fc4fbc3cba47566c5ef43c70b6216700"], ["access_id", "7d0a9c548c62256426a77f90d560b346"], ["secret_key", "5b4e6ee3cef7e1a99c6b7688eaed17d3"], ["job_type", "TestJob"], ["encrypted_settings", "sRfLqojUoV73XOtBk7/IsWg8MCg=\n"], ["encrypted_settings_iv", "lOAszjJHTqujwsEy\n"], ["created_at", "2017-05-31 21:27:45.263978"], ["updated_at", "2017-05-31 21:27:45.263978"]]
|
595
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
596
|
+
Processing by IntegrationPal::Api::V1::JobsController#create as HTML
|
597
|
+
Parameters: {"job"=>{"backtrace"=>"", "created_at"=>"", "error"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>"5"}}
|
598
|
+
Unpermitted parameters: :backtrace, :created_at, :error, :finished_at, :id, :progress, :started_at, :status, :updated_at
|
599
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
600
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
|
601
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["worker_id", 5], ["created_at", "2017-05-31 21:27:45.291265"], ["updated_at", "2017-05-31 21:27:45.291265"]]
|
602
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
603
|
+
[ActiveJob] [TestJob] [74046986-0a96-40d9-9e33-8ac767c348f8] Performing TestJob (Job ID: 74046986-0a96-40d9-9e33-8ac767c348f8) from Async(default) with arguments: 3
|
604
|
+
[ActiveJob] Enqueued TestJob (Job ID: 74046986-0a96-40d9-9e33-8ac767c348f8) to Async(default) with arguments: 3
|
605
|
+
Completed 200 OK in 23ms (Views: 0.5ms | ActiveRecord: 0.7ms)
|
606
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
607
|
+
[1m[35m (1.1ms)[0m [1m[31mROLLBACK[0m
|
608
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
609
|
+
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
610
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "74a91c8f6d876d2d77cbbcc65f0d83c5"], ["access_id", "c50be1311dd5f530520d49e414552d11"], ["secret_key", "0109d787a3c87c3fba1c0e4c321a4aff"], ["job_type", "TestJob"], ["encrypted_settings", "z1l9MVNPDb3pYfZohCSSTTz20lg=\n"], ["encrypted_settings_iv", "8k2EW2EE/j6YLVd3\n"], ["created_at", "2017-05-31 21:27:45.311056"], ["updated_at", "2017-05-31 21:27:45.311056"]]
|
611
|
+
[1m[35m (0.6ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
612
|
+
[ActiveJob] [TestJob] [74046986-0a96-40d9-9e33-8ac767c348f8] Performed TestJob (Job ID: 74046986-0a96-40d9-9e33-8ac767c348f8) from Async(default) in 23.57ms
|
613
|
+
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
614
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "872986269573e0ddede504cf6a9967a4"], ["access_id", "624861fb7a7a0770076be3ebee9fac3a"], ["secret_key", "507bc8b5ca9a7d1f3d31620641ac9dba"], ["job_type", "TestJob"], ["encrypted_settings", "bNe8Jv/LF2dE6N11NySb2jaUqrc=\n"], ["encrypted_settings_iv", "QH6u3G584vxxo7HV\n"], ["created_at", "2017-05-31 21:27:45.321207"], ["updated_at", "2017-05-31 21:27:45.321207"]]
|
615
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
616
|
+
Processing by IntegrationPal::Api::V1::JobsController#create as HTML
|
617
|
+
Parameters: {"job"=>{"backtrace"=>"", "created_at"=>"", "error"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>"7"}}
|
618
|
+
Unpermitted parameters: :backtrace, :created_at, :error, :finished_at, :id, :progress, :started_at, :status, :updated_at
|
619
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
620
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
|
621
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["worker_id", 7], ["created_at", "2017-05-31 21:27:45.329377"], ["updated_at", "2017-05-31 21:27:45.329377"]]
|
622
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
623
|
+
[ActiveJob] Enqueued TestJob (Job ID: a51cf1be-c938-4ac3-b2c6-a4c91b3b8f8b) to Async(default) with arguments: 4
|
624
|
+
Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.5ms)
|
625
|
+
[ActiveJob] [TestJob] [a51cf1be-c938-4ac3-b2c6-a4c91b3b8f8b] Performing TestJob (Job ID: a51cf1be-c938-4ac3-b2c6-a4c91b3b8f8b) from Async(default) with arguments: 4
|
626
|
+
[ActiveJob] [TestJob] [a51cf1be-c938-4ac3-b2c6-a4c91b3b8f8b] Performed TestJob (Job ID: a51cf1be-c938-4ac3-b2c6-a4c91b3b8f8b) from Async(default) in 0.03ms
|
627
|
+
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
|
628
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
629
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
630
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "2eee96e9245d69c29a8c64fc5bf675dc"], ["access_id", "b616d65f3fe034ac556653a79959b52a"], ["secret_key", "20f9d4a69faa8f1473b0618fa40aea88"], ["job_type", "TestJob"], ["encrypted_settings", "ifeA0GHjuMygCz9wr30cI8NJbWo=\n"], ["encrypted_settings_iv", "QRRitdLyOiuLWd+t\n"], ["created_at", "2017-05-31 21:27:45.351154"], ["updated_at", "2017-05-31 21:27:45.351154"]]
|
631
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
632
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
633
|
+
Processing by IntegrationPal::Api::V1::JobsController#create as HTML
|
634
|
+
Parameters: {"job"=>{"backtrace"=>"", "created_at"=>"", "error"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>""}}
|
635
|
+
Unpermitted parameters: :backtrace, :created_at, :error, :finished_at, :id, :progress, :started_at, :status, :updated_at
|
636
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
637
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
638
|
+
Completed 422 Unprocessable Entity in 2ms (Views: 0.3ms | ActiveRecord: 0.2ms)
|
639
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
640
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
641
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
642
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
643
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "a6c0b8c466d2e8f2c28c0ee002b63a52"], ["access_id", "59231ac788e620cd13cd7186b73776f0"], ["secret_key", "612ff6dbe80c6b2e7b9893a0efb76c8e"], ["job_type", "TestJob"], ["encrypted_settings", "VEvssC6PwKWJXYvUjc2uNxxz9es=\n"], ["encrypted_settings_iv", "ge6TJlYV+Q+wZokT\n"], ["created_at", "2017-05-31 21:27:45.370454"], ["updated_at", "2017-05-31 21:27:45.370454"]]
|
644
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
645
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
646
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 9], ["created_at", "2017-05-31 21:27:45.372405"], ["updated_at", "2017-05-31 21:27:45.372405"]]
|
647
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
648
|
+
Processing by IntegrationPal::JobsController#index as HTML
|
649
|
+
Rendering text template
|
650
|
+
Rendered text template (0.0ms)
|
651
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
652
|
+
Filter chain halted as :authenticate! rendered or redirected
|
653
|
+
Completed 401 Unauthorized in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
|
654
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
655
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
656
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
657
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "fa5d1911c91f17f6e405090fa0fd303b"], ["access_id", "cba9a0b54f61bb51f93288000170ef88"], ["secret_key", "0fb908daad7865bf7dc56a5b3e17ed9d"], ["job_type", "TestJob"], ["encrypted_settings", "QNpK9tMXgY81BJ3AFmVbuWdB9g0=\n"], ["encrypted_settings_iv", "fk3lIalgw5I6V0XA\n"], ["created_at", "2017-05-31 21:27:45.398631"], ["updated_at", "2017-05-31 21:27:45.398631"]]
|
658
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
659
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
660
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 10], ["created_at", "2017-05-31 21:27:45.400403"], ["updated_at", "2017-05-31 21:27:45.400403"]]
|
661
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
662
|
+
Processing by IntegrationPal::JobsController#index as HTML
|
663
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/index.html.erb within layouts/integration_pal/application
|
664
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/index.html.erb within layouts/integration_pal/application (0.3ms)
|
665
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
666
|
+
Completed 200 OK in 12ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
667
|
+
[1m[36mIntegrationPal::Job Load (0.5ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" ORDER BY created_at DESC[0m
|
668
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
669
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
670
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
671
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
672
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "bf79c4b0240c73c55b7f00d213f1561c"], ["access_id", "b94b2a630e98bc6aad6d2e0687f9e343"], ["secret_key", "7e0fe707995e880559a1f23a84b8c09d"], ["job_type", "TestJob"], ["encrypted_settings", "buiua2ZprWLTKIxoxoXHaqP7MhU=\n"], ["encrypted_settings_iv", "aeTW75OWW/RBSw9+\n"], ["created_at", "2017-05-31 21:27:45.435126"], ["updated_at", "2017-05-31 21:27:45.435126"]]
|
673
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
674
|
+
Processing by IntegrationPal::JobsController#create as HTML
|
675
|
+
Parameters: {"job"=>{"backtrace"=>"", "created_at"=>"", "error"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>"11"}}
|
676
|
+
Unpermitted parameters: :backtrace, :created_at, :error, :finished_at, :id, :job_params, :started_at, :updated_at
|
677
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
678
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
|
679
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["status", "pending"], ["progress", "0"], ["worker_id", 11], ["created_at", "2017-05-31 21:27:45.446038"], ["updated_at", "2017-05-31 21:27:45.446038"]]
|
680
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
681
|
+
Redirected to http://test.host/integration_pal/jobs/7
|
682
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.6ms)
|
683
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
684
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
685
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
686
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
687
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "bec08ff5cc714d9d9c12d0b878c7717f"], ["access_id", "3a9a3b57930ebb986a0c84981dc205ac"], ["secret_key", "3122be6a7e22c86dbdfc674898b21c50"], ["job_type", "TestJob"], ["encrypted_settings", "FLq3giTRfI8NP46ou/pYGWuccmk=\n"], ["encrypted_settings_iv", "kPhYJy1EiBFY4hnU\n"], ["created_at", "2017-05-31 21:27:45.464936"], ["updated_at", "2017-05-31 21:27:45.464936"]]
|
688
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
689
|
+
Processing by IntegrationPal::JobsController#create as HTML
|
690
|
+
Parameters: {"job"=>{"backtrace"=>"", "created_at"=>"", "error"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>"12"}}
|
691
|
+
Unpermitted parameters: :backtrace, :created_at, :error, :finished_at, :id, :job_params, :started_at, :updated_at
|
692
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
693
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
|
694
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["status", "pending"], ["progress", "0"], ["worker_id", 12], ["created_at", "2017-05-31 21:27:45.474389"], ["updated_at", "2017-05-31 21:27:45.474389"]]
|
695
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
696
|
+
Redirected to http://test.host/integration_pal/jobs/8
|
697
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.8ms)
|
698
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
699
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
700
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
701
|
+
Processing by IntegrationPal::JobsController#create as HTML
|
702
|
+
Parameters: {"job"=>{"backtrace"=>"", "created_at"=>"", "error"=>"", "finished_at"=>"", "id"=>"", "job_params"=>{"test"=>"test"}, "progress"=>"0", "started_at"=>"", "status"=>"pending", "updated_at"=>"", "worker_id"=>""}}
|
703
|
+
Unpermitted parameters: :backtrace, :created_at, :error, :finished_at, :id, :job_params, :started_at, :updated_at
|
704
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
705
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
706
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/new.html.erb within layouts/integration_pal/application
|
707
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/new.html.erb within layouts/integration_pal/application (0.2ms)
|
708
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
709
|
+
Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.2ms)
|
710
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_jobs"[0m
|
711
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
712
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
713
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
714
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "a58d3a0cf341b56881e10923bcb8d371"], ["access_id", "01ea6da5e90c234f82eefc26edbedf71"], ["secret_key", "b6cb0b57328be490adf33b1b579c539f"], ["job_type", "TestJob"], ["encrypted_settings", "3rKcfiJxze+tir8nMeufOt2Gni0=\n"], ["encrypted_settings_iv", "aF4X8tA75H+Q1POD\n"], ["created_at", "2017-05-31 21:27:45.505281"], ["updated_at", "2017-05-31 21:27:45.505281"]]
|
715
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
716
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
717
|
+
[1m[35mSQL (5.3ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 13], ["created_at", "2017-05-31 21:27:45.507154"], ["updated_at", "2017-05-31 21:27:45.507154"]]
|
718
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
719
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
720
|
+
Parameters: {"job"=>{"name"=>"New Name"}, "id"=>"9"}
|
721
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
|
722
|
+
Unpermitted parameter: :name
|
723
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
724
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
|
725
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
726
|
+
Redirected to http://test.host/integration_pal/jobs/9
|
727
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.7ms)
|
728
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
|
729
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
730
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
731
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
732
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "9ae8aac58f10922c80bdd12992c02e74"], ["access_id", "9146df762225a89f3608d191d1d90097"], ["secret_key", "b475418789909c631409dec27138624f"], ["job_type", "TestJob"], ["encrypted_settings", "KqiHPYEAnKDFWLALQvmk/V2jneQ=\n"], ["encrypted_settings_iv", "/Vw7heweWs7cblY5\n"], ["created_at", "2017-05-31 21:27:45.536413"], ["updated_at", "2017-05-31 21:27:45.536413"]]
|
733
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
734
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
735
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 14], ["created_at", "2017-05-31 21:27:45.538420"], ["updated_at", "2017-05-31 21:27:45.538420"]]
|
736
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
737
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
738
|
+
Parameters: {"job"=>{"name"=>"New Name"}, "id"=>"10"}
|
739
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
|
740
|
+
Unpermitted parameter: :name
|
741
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
742
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
|
743
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
744
|
+
Redirected to http://test.host/integration_pal/jobs/10
|
745
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.6ms)
|
746
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
747
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
748
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
749
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "72652aa61bbd6725116ec05f8f8e8543"], ["access_id", "3fd3f2afd7830a5f320952c6d5a9207f"], ["secret_key", "556129d3e86269b56df6f7fe29f9603c"], ["job_type", "TestJob"], ["encrypted_settings", "5nUkySgUy6b55HFh09dZndOApEc=\n"], ["encrypted_settings_iv", "txBZXPM+suusiUcW\n"], ["created_at", "2017-05-31 21:27:45.562136"], ["updated_at", "2017-05-31 21:27:45.562136"]]
|
750
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
751
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
752
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 15], ["created_at", "2017-05-31 21:27:45.563973"], ["updated_at", "2017-05-31 21:27:45.563973"]]
|
753
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
754
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
755
|
+
Parameters: {"job"=>{"name"=>"New Name"}, "id"=>"11"}
|
756
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
|
757
|
+
Unpermitted parameter: :name
|
758
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
759
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 15], ["LIMIT", 1]]
|
760
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
761
|
+
Redirected to http://test.host/integration_pal/jobs/11
|
762
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.6ms)
|
763
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
764
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
765
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
766
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "4e0a022dc69512edeacdc4ed3bdf7ef1"], ["access_id", "cbb0140657eff4b00532fad730fe5424"], ["secret_key", "8a8c2fb544240ef1fe500bb44f924e36"], ["job_type", "TestJob"], ["encrypted_settings", "/ofanxszNC3+jsB37jCqkiHl1Qc=\n"], ["encrypted_settings_iv", "1CZIKu4ce7H9fG4H\n"], ["created_at", "2017-05-31 21:27:45.599532"], ["updated_at", "2017-05-31 21:27:45.599532"]]
|
767
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
768
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
769
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 16], ["created_at", "2017-05-31 21:27:45.601625"], ["updated_at", "2017-05-31 21:27:45.601625"]]
|
770
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
771
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
772
|
+
Parameters: {"job"=>{"worker_id"=>""}, "id"=>"12"}
|
773
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
|
774
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
775
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
776
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/edit.html.erb within layouts/integration_pal/application
|
777
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/edit.html.erb within layouts/integration_pal/application (0.2ms)
|
778
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
779
|
+
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.4ms)
|
780
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
781
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
782
|
+
[1m[35m (5.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
783
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "28436457744c134aa655ac9aa540ff53"], ["access_id", "f70eb65538b5545d8bd75f20e288f26f"], ["secret_key", "06a90df00c52ba5e4132eee3da7cf39e"], ["job_type", "TestJob"], ["encrypted_settings", "fQsDkpjWiCoe8GRI9iJYHk//9Wg=\n"], ["encrypted_settings_iv", "R9mA5gEF1jzOSbSs\n"], ["created_at", "2017-05-31 21:27:45.628186"], ["updated_at", "2017-05-31 21:27:45.628186"]]
|
784
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
785
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
786
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_jobs" ("job_params", "status", "progress", "worker_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["job_params", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\ntest: test\n"], ["status", "pending"], ["progress", "0"], ["worker_id", 17], ["created_at", "2017-05-31 21:27:45.630385"], ["updated_at", "2017-05-31 21:27:45.630385"]]
|
787
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
788
|
+
Processing by IntegrationPal::JobsController#update as HTML
|
789
|
+
Parameters: {"job"=>{"worker_id"=>""}, "id"=>"13"}
|
790
|
+
[1m[36mIntegrationPal::Job Load (0.2ms)[0m [1m[34mSELECT "integration_pal_jobs".* FROM "integration_pal_jobs" WHERE "integration_pal_jobs"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
|
791
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
792
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
793
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/edit.html.erb within layouts/integration_pal/application
|
794
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/jobs/edit.html.erb within layouts/integration_pal/application (0.0ms)
|
795
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
796
|
+
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.4ms)
|
797
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
798
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
799
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
800
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "1fbd05eb6e697962b642d75a56d42c32"], ["access_id", "c4a4c08fd5f77aef0b8604ec3038cf2c"], ["secret_key", "2cf346814f59699040d458eb9b58ecdb"], ["job_type", "TestJob"], ["encrypted_settings", "vvSxzfCWOSO1Mwdl7IOBGW9I6zU=\n"], ["encrypted_settings_iv", "iZFkwxTfGPoY6bhe\n"], ["created_at", "2017-05-31 21:27:45.648336"], ["updated_at", "2017-05-31 21:27:45.648336"]]
|
801
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
802
|
+
Processing by IntegrationPal::WorkersController#index as HTML
|
803
|
+
Rendering text template
|
804
|
+
Rendered text template (0.0ms)
|
805
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
806
|
+
Filter chain halted as :authenticate! rendered or redirected
|
807
|
+
Completed 401 Unauthorized in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
808
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
809
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
810
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
811
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "63135cbb1c1e69db1ece61fedebe5a44"], ["access_id", "786dd5da27523b78d3c1f3a7d443651d"], ["secret_key", "4214ac53fde3d60c423c0143b1dc401e"], ["job_type", "TestJob"], ["encrypted_settings", "5WkMXrhmCUS7KZlt1gZZlf2dtac=\n"], ["encrypted_settings_iv", "wSyuBYUHX9huwFng\n"], ["created_at", "2017-05-31 21:27:45.665806"], ["updated_at", "2017-05-31 21:27:45.665806"]]
|
812
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
813
|
+
Processing by IntegrationPal::WorkersController#index as HTML
|
814
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/index.html.erb within layouts/integration_pal/application
|
815
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/index.html.erb within layouts/integration_pal/application (0.2ms)
|
816
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
817
|
+
Completed 200 OK in 10ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
818
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers"[0m
|
819
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
820
|
+
[1m[35m (5.1ms)[0m [1m[35mBEGIN[0m
|
821
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_workers"[0m
|
822
|
+
Processing by IntegrationPal::WorkersController#create as HTML
|
823
|
+
Parameters: {"worker"=>{"access_id"=>"3b861275498be51111671e05c10a97f8", "created_at"=>"", "encrypted_settings"=>"iTdYGlECXkk7YgiI8GwLrvG5Lls=\n", "encrypted_settings_iv"=>"bnKjLprdIf38cU7V\n", "id"=>"", "job_type"=>"TestJob", "name"=>"bbbe2d38f1c451d6bb2b381f406f95ab", "secret_key"=>"95905947626d99678863523bb3ed68ef", "updated_at"=>""}}
|
824
|
+
Unpermitted parameters: :created_at, :encrypted_settings, :encrypted_settings_iv, :id, :updated_at
|
825
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
826
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "bbbe2d38f1c451d6bb2b381f406f95ab"], ["access_id", "3b861275498be51111671e05c10a97f8"], ["secret_key", "95905947626d99678863523bb3ed68ef"], ["job_type", "TestJob"], ["encrypted_settings", "mQDVFPwhaWqmFHfnJiXUCUbYTRM=\n"], ["encrypted_settings_iv", "s16Z66qXqAYcmCEy\n"], ["created_at", "2017-05-31 21:27:45.706957"], ["updated_at", "2017-05-31 21:27:45.706957"]]
|
827
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
828
|
+
Redirected to http://test.host/integration_pal/workers/20
|
829
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.5ms)
|
830
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_workers"[0m
|
831
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
832
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
833
|
+
Processing by IntegrationPal::WorkersController#create as HTML
|
834
|
+
Parameters: {"worker"=>{"access_id"=>"b9beb8e44dbdc73d4e49ebb9df484a11", "created_at"=>"", "encrypted_settings"=>"ThwF+o3wIG3HNSTE0MHX7vw/st0=\n", "encrypted_settings_iv"=>"p2xrK8ZYcek02jlx\n", "id"=>"", "job_type"=>"TestJob", "name"=>"0ef7c7535506e1ff100500c907d62f41", "secret_key"=>"d6be929c07080dcb393ed745d362479a", "updated_at"=>""}}
|
835
|
+
Unpermitted parameters: :created_at, :encrypted_settings, :encrypted_settings_iv, :id, :updated_at
|
836
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
837
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "0ef7c7535506e1ff100500c907d62f41"], ["access_id", "b9beb8e44dbdc73d4e49ebb9df484a11"], ["secret_key", "d6be929c07080dcb393ed745d362479a"], ["job_type", "TestJob"], ["encrypted_settings", "/TJRxypNDR4CococOKT7VV9+79s=\n"], ["encrypted_settings_iv", "6LBFM+sEf40jC409\n"], ["created_at", "2017-05-31 21:27:45.728305"], ["updated_at", "2017-05-31 21:27:45.728305"]]
|
838
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
839
|
+
Redirected to http://test.host/integration_pal/workers/21
|
840
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.5ms)
|
841
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
842
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
843
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_workers"[0m
|
844
|
+
Processing by IntegrationPal::WorkersController#create as HTML
|
845
|
+
Parameters: {"worker"=>{"access_id"=>"4ce283142706f20e43311e3c5e05c158", "created_at"=>"", "encrypted_settings"=>"AWwBk/PCyQlzKov/MhLaXIwJPvw=\n", "encrypted_settings_iv"=>"QK6DJ9rVLFaCQcYB\n", "id"=>"", "job_type"=>"", "name"=>"f32dbee453ebe64d0ae9aa64b51aa6fa", "secret_key"=>"9b7a5c57a3ee8122c36eb30404886dd5", "updated_at"=>""}}
|
846
|
+
Unpermitted parameters: :created_at, :encrypted_settings, :encrypted_settings_iv, :id, :updated_at
|
847
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
848
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
849
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/new.html.erb within layouts/integration_pal/application
|
850
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/new.html.erb within layouts/integration_pal/application (0.2ms)
|
851
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
852
|
+
Completed 200 OK in 16ms (Views: 5.7ms | ActiveRecord: 0.3ms)
|
853
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "integration_pal_workers"[0m
|
854
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
855
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
856
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
857
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "46c01e0351c1723ba8d27dbdd285cbe5"], ["access_id", "75e45b4a8d6abe0e1f1bda2bdc53e185"], ["secret_key", "f292bd79fedb9d32b269fd989e516522"], ["job_type", "TestJob"], ["encrypted_settings", "fPikp3/QuVcTUuSamW2SBUS4Op0=\n"], ["encrypted_settings_iv", "YfVE28WwgQfaVcSp\n"], ["created_at", "2017-05-31 21:27:45.773098"], ["updated_at", "2017-05-31 21:27:45.773098"]]
|
858
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
859
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
860
|
+
Parameters: {"worker"=>{"name"=>"New Name"}, "id"=>"22"}
|
861
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
|
862
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
863
|
+
[1m[35mSQL (0.3ms)[0m [1m[33mUPDATE "integration_pal_workers" SET "name" = $1, "updated_at" = $2 WHERE "integration_pal_workers"."id" = $3[0m [["name", "New Name"], ["updated_at", "2017-05-31 21:27:45.781752"], ["id", 22]]
|
864
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
865
|
+
Redirected to http://test.host/integration_pal/workers/22
|
866
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.6ms)
|
867
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
|
868
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
869
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
870
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
871
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "796b21efecd77afcd9cca5ff8d9b0fa4"], ["access_id", "0b337367bb92d604f12533bcd2924c5b"], ["secret_key", "024a0ce1c24d692a58be0e95cd69bc95"], ["job_type", "TestJob"], ["encrypted_settings", "gSKE9sxn91kBW2kI1pTZHT6Q470=\n"], ["encrypted_settings_iv", "Q8p8BYLTXbUzj3NG\n"], ["created_at", "2017-05-31 21:27:45.799779"], ["updated_at", "2017-05-31 21:27:45.799779"]]
|
872
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
873
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
874
|
+
Parameters: {"worker"=>{"name"=>"New Name"}, "id"=>"23"}
|
875
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
|
876
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
877
|
+
[1m[35mSQL (0.2ms)[0m [1m[33mUPDATE "integration_pal_workers" SET "name" = $1, "updated_at" = $2 WHERE "integration_pal_workers"."id" = $3[0m [["name", "New Name"], ["updated_at", "2017-05-31 21:27:45.806754"], ["id", 23]]
|
878
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
879
|
+
Redirected to http://test.host/integration_pal/workers/23
|
880
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.5ms)
|
881
|
+
[1m[35m (5.0ms)[0m [1m[31mROLLBACK[0m
|
882
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
883
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
884
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "086b64052f9cba59d29f49a357b6077a"], ["access_id", "6a2c33f4f5eec718352c65013dff4c74"], ["secret_key", "60bd13d23de39e6dd90bc17eb14210ba"], ["job_type", "TestJob"], ["encrypted_settings", "Slut6nm068gurOzTTwuBcNjlC6U=\n"], ["encrypted_settings_iv", "3igGsQyZovj3bGYn\n"], ["created_at", "2017-05-31 21:27:45.825925"], ["updated_at", "2017-05-31 21:27:45.825925"]]
|
885
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
886
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
887
|
+
Parameters: {"worker"=>{"name"=>"New Name"}, "id"=>"24"}
|
888
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
|
889
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
890
|
+
[1m[35mSQL (0.3ms)[0m [1m[33mUPDATE "integration_pal_workers" SET "name" = $1, "updated_at" = $2 WHERE "integration_pal_workers"."id" = $3[0m [["name", "New Name"], ["updated_at", "2017-05-31 21:27:45.833445"], ["id", 24]]
|
891
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
892
|
+
Redirected to http://test.host/integration_pal/workers/24
|
893
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.6ms)
|
894
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
895
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
896
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
897
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "674a925eed7ca3d860c84fef6b4a5b88"], ["access_id", "0a519a08554c615780c7307b80a0105f"], ["secret_key", "e31b4144180db04174bbc12a24cabf34"], ["job_type", "TestJob"], ["encrypted_settings", "3gR1MeptMCvf8Zo29ehiwzuwEuk=\n"], ["encrypted_settings_iv", "rsAusMN1I582oaSm\n"], ["created_at", "2017-05-31 21:27:45.851447"], ["updated_at", "2017-05-31 21:27:45.851447"]]
|
898
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
899
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
900
|
+
Parameters: {"worker"=>{"job_type"=>""}, "id"=>"25"}
|
901
|
+
[1m[36mIntegrationPal::Worker Load (0.1ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
|
902
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
903
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
904
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/edit.html.erb within layouts/integration_pal/application
|
905
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/edit.html.erb within layouts/integration_pal/application (0.2ms)
|
906
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
907
|
+
Completed 200 OK in 16ms (Views: 10.1ms | ActiveRecord: 0.3ms)
|
908
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
909
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
910
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
911
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "3911924e981401bc2acca68e04899d3b"], ["access_id", "f39ba65c5ba91d0dd6a55e5ac35f2046"], ["secret_key", "29cdfea45bb9aa8dbbe369605a349808"], ["job_type", "TestJob"], ["encrypted_settings", "qqufmMzXQU/RTT6Ldgvj6vi7hcA=\n"], ["encrypted_settings_iv", "39sWYl8RgbYQQFIA\n"], ["created_at", "2017-05-31 21:27:45.886030"], ["updated_at", "2017-05-31 21:27:45.886030"]]
|
912
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
913
|
+
Processing by IntegrationPal::WorkersController#update as HTML
|
914
|
+
Parameters: {"worker"=>{"job_type"=>""}, "id"=>"26"}
|
915
|
+
[1m[36mIntegrationPal::Worker Load (0.2ms)[0m [1m[34mSELECT "integration_pal_workers".* FROM "integration_pal_workers" WHERE "integration_pal_workers"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
|
916
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
917
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
918
|
+
Rendering /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/edit.html.erb within layouts/integration_pal/application
|
919
|
+
Rendered /Users/ctanner/code/integration_pal/app/views/integration_pal/workers/edit.html.erb within layouts/integration_pal/application (0.1ms)
|
920
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
921
|
+
Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms)
|
922
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
923
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
924
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
925
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
926
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
927
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "22637763c48df847cf0329e14e233f24"], ["access_id", "08fdeba3ec1cbd36d9f77b06c9f7c25d"], ["secret_key", "6190c05b044d52371cab3a13f78ab282"], ["job_type", "TestJob"], ["encrypted_settings", "RSiIRM7tvoIV+UPzssPqoSdkC8o=\n"], ["encrypted_settings_iv", "Yr9MaJQmoGNI/gEY\n"], ["created_at", "2017-05-31 21:27:45.911191"], ["updated_at", "2017-05-31 21:27:45.911191"]]
|
928
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
929
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
930
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
931
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
932
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "integration_pal_workers" ("name", "access_id", "secret_key", "job_type", "encrypted_settings", "encrypted_settings_iv", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["name", "f4e80817f2f8d7df5d13d3d4765ab6a5"], ["access_id", "f60cc1329bdc606cc2704e381e2d3420"], ["secret_key", "151c209fb98d37c551a9c25e9476614f"], ["job_type", "TestJob"], ["encrypted_settings", "MQj0wRqaJJmMcz0z9i7CF4U+X/k=\n"], ["encrypted_settings_iv", "B1331d3UlZRs/lws\n"], ["created_at", "2017-05-31 21:27:45.924950"], ["updated_at", "2017-05-31 21:27:45.924950"]]
|
933
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
934
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
935
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
936
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
937
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
938
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
939
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
940
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
941
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
942
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
943
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
944
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|