sidejobs 4.0.0.2 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/MIT-LICENSE +1 -1
- data/README.md +5 -5
- data/Rakefile +1 -3
- data/lib/sidejobs.rb +2 -1
- data/lib/sidejobs/daemon.rb +35 -33
- data/lib/sidejobs/extensions/active_job/queue_adapter.rb +29 -31
- data/lib/sidejobs/loggable.rb +7 -0
- data/lib/sidejobs/processor.rb +1 -6
- data/lib/sidejobs/queue.rb +1 -1
- data/lib/sidejobs/version.rb +1 -1
- metadata +16 -125
- data/test/daemon_test.rb +0 -71
- data/test/dummy/Rakefile +0 -5
- data/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/dummy/app/assets/stylesheets/application.css +0 -15
- data/test/dummy/app/controllers/application_controller.rb +0 -5
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/jobs/charge_subscriptions_job.rb +0 -8
- data/test/dummy/app/jobs/clear_guest_users_job.rb +0 -8
- data/test/dummy/app/jobs/send_newsletters_job.rb +0 -8
- data/test/dummy/app/jobs/share_products_job.rb +0 -8
- data/test/dummy/app/jobs/update_exchanges_job.rb +0 -8
- data/test/dummy/app/mailers/user_mailer.rb +0 -7
- data/test/dummy/app/views/layouts/application.html.erb +0 -12
- data/test/dummy/app/views/user_mailer/invite.text.erb +0 -1
- data/test/dummy/bin/bundle +0 -4
- data/test/dummy/bin/rails +0 -5
- data/test/dummy/bin/rake +0 -5
- data/test/dummy/bin/setup +0 -30
- data/test/dummy/config.ru +0 -4
- data/test/dummy/config/application.rb +0 -25
- data/test/dummy/config/boot.rb +0 -5
- data/test/dummy/config/database.yml +0 -10
- data/test/dummy/config/database.yml.travis +0 -3
- data/test/dummy/config/environment.rb +0 -5
- data/test/dummy/config/environments/development.rb +0 -44
- data/test/dummy/config/environments/production.rb +0 -79
- data/test/dummy/config/environments/test.rb +0 -45
- data/test/dummy/config/initializers/assets.rb +0 -11
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
- data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/dummy/config/initializers/inflections.rb +0 -16
- data/test/dummy/config/initializers/mime_types.rb +0 -4
- data/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/dummy/config/initializers/sidejobs.rb +0 -7
- data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy/config/locales/en.yml +0 -23
- data/test/dummy/config/routes.rb +0 -56
- data/test/dummy/config/secrets.yml +0 -22
- data/test/dummy/db/migrate/20161022211612_create_sidejobs.rb +0 -21
- data/test/dummy/db/schema.rb +0 -37
- data/test/dummy/log/development.log +0 -23
- data/test/dummy/log/sidejobs.log +0 -739
- data/test/dummy/log/test.log +0 -3903
- data/test/dummy/public/404.html +0 -61
- data/test/dummy/public/422.html +0 -61
- data/test/dummy/public/500.html +0 -60
- data/test/dummy/public/favicon.ico +0 -0
- data/test/generator_test.rb +0 -19
- data/test/processor_test.rb +0 -49
- data/test/queue_test.rb +0 -69
- data/test/test_helper.rb +0 -14
data/test/dummy/log/test.log
DELETED
@@ -1,3903 +0,0 @@
|
|
1
|
-
[1m[36mActiveRecord::SchemaMigration Load (26.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2
|
-
[1m[35m (0.2ms)[0m BEGIN
|
3
|
-
----------------------------
|
4
|
-
GeneratorsTest: test_install
|
5
|
-
----------------------------
|
6
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
7
|
-
[1m[35m (0.1ms)[0m BEGIN
|
8
|
-
-----------------------
|
9
|
-
QueueTest: test_enqueue
|
10
|
-
-----------------------
|
11
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
12
|
-
[ActiveJob] [1m[35mSQL (25.4ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"feeceec0-8243-41b3-9133-995375423c63\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:27.040611"], ["updated_at", "2016-11-21 06:15:27.040611"]]
|
13
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: feeceec0-8243-41b3-9133-995375423c63) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
15
|
-
[1m[35mSidejobs::Job Load (1.1ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
16
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
17
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"5955d8bd-977e-4dc9-a456-5b861151261a\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["created_at", "2016-11-21 06:15:27.073950"], ["updated_at", "2016-11-21 06:15:27.073950"]]
|
18
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
19
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: 5955d8bd-977e-4dc9-a456-5b861151261a) to Sidejobs(high_priority)
|
20
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
21
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
22
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"bf4929ef-b479-4a0b-b7fc-122bb59f037c\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-11-21 06:15:27.077383"], ["updated_at", "2016-11-21 06:15:27.077383"]]
|
23
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: bf4929ef-b479-4a0b-b7fc-122bb59f037c) to Sidejobs(default)
|
25
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
26
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
27
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"9b4aaef2-4fd5-4c41-b15b-26dbec0dd08b\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["created_at", "2016-11-21 06:15:27.080768"], ["updated_at", "2016-11-21 06:15:27.080768"]]
|
28
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
29
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: 9b4aaef2-4fd5-4c41-b15b-26dbec0dd08b) to Sidejobs(low_priority)
|
30
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
31
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
32
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"25e1448e-cd74-4b67-a4ee-d6140478037e\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["created_at", "2016-11-21 06:15:27.084562"], ["updated_at", "2016-11-21 06:15:27.084562"]]
|
33
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: 25e1448e-cd74-4b67-a4ee-d6140478037e) to Sidejobs(other)
|
35
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
36
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
37
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"9d1c75a7-9eb8-4e40-b897-fff801bcb817\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["scheduled_at", "2016-11-21 16:15:27.086832"], ["created_at", "2016-11-21 06:15:27.087912"], ["updated_at", "2016-11-21 06:15:27.087912"]]
|
38
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
39
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 9d1c75a7-9eb8-4e40-b897-fff801bcb817) to Sidejobs(mailers) at 2016-11-21 16:15:27 UTC with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
40
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
41
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
42
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"83f23cfc-19af-4600-a39f-85bfcf968e34\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["scheduled_at", "2016-11-21 16:15:27.086832"], ["created_at", "2016-11-21 06:15:27.095288"], ["updated_at", "2016-11-21 06:15:27.095288"]]
|
43
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
44
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: 83f23cfc-19af-4600-a39f-85bfcf968e34) to Sidejobs(high_priority) at 2016-11-21 16:15:27 UTC
|
45
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
46
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
47
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"0027850d-a74e-46f9-9d69-18b1391f48f0\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["scheduled_at", "2016-11-21 16:15:27.086832"], ["created_at", "2016-11-21 06:15:27.098006"], ["updated_at", "2016-11-21 06:15:27.098006"]]
|
48
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: 0027850d-a74e-46f9-9d69-18b1391f48f0) to Sidejobs(default) at 2016-11-21 16:15:27 UTC
|
50
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
51
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
52
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"9e6fcaa9-d756-40e2-bffd-f67195eb451c\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["scheduled_at", "2016-11-21 16:15:27.086832"], ["created_at", "2016-11-21 06:15:27.100715"], ["updated_at", "2016-11-21 06:15:27.100715"]]
|
53
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
54
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: 9e6fcaa9-d756-40e2-bffd-f67195eb451c) to Sidejobs(low_priority) at 2016-11-21 16:15:27 UTC
|
55
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
56
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
57
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"9dc930de-f0f9-48a8-b0d7-8e3156f9f5d1\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["scheduled_at", "2016-11-21 16:15:27.086832"], ["created_at", "2016-11-21 06:15:27.103415"], ["updated_at", "2016-11-21 06:15:27.103415"]]
|
58
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
59
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: 9dc930de-f0f9-48a8-b0d7-8e3156f9f5d1) to Sidejobs(other) at 2016-11-21 16:15:27 UTC
|
60
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
61
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
62
|
-
[1m[35m (0.2ms)[0m BEGIN
|
63
|
-
------------------------
|
64
|
-
DaemonTest: test_pulling
|
65
|
-
------------------------
|
66
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
67
|
-
[1m[35m (0.1ms)[0m BEGIN
|
68
|
-
------------------------
|
69
|
-
DaemonTest: test_process
|
70
|
-
------------------------
|
71
|
-
[1m[36mSidejobs::Job Load (4.5ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-11-21 06:15:27.139367' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
72
|
-
[1m[36mSidejobs::Job Load (1.0ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-11-21 06:15:31.153441' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
73
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
74
|
-
---------------------------
|
75
|
-
ProcessorTest: test_process
|
76
|
-
---------------------------
|
77
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
78
|
-
[ActiveJob] [1m[36mSQL (0.6ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"a883b08d-8d50-4432-9098-d1c62600ce78\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.150842"], ["updated_at", "2016-11-21 06:15:51.150842"]]
|
79
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
80
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: a883b08d-8d50-4432-9098-d1c62600ce78) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
81
|
-
[1m[36mSidejobs::Job Load (1.5ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-11-21 06:15:51.156135' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
82
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
83
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.158680"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.159647"], ["id", 638]]
|
84
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
85
|
-
Rendered user_mailer/invite.text.erb (1.1ms)
|
86
|
-
|
87
|
-
UserMailer#invite: processed outbound mail in 185.6ms
|
88
|
-
|
89
|
-
Sent mail to test@mail.com (6.8ms)
|
90
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
91
|
-
From: test@mail.com
|
92
|
-
To: test@mail.com
|
93
|
-
Message-ID: <5832911758d8d_55063fc20c03f9f430579@imac-de-matt.mail>
|
94
|
-
Subject: Invite
|
95
|
-
Mime-Version: 1.0
|
96
|
-
Content-Type: text/plain;
|
97
|
-
charset=UTF-8
|
98
|
-
Content-Transfer-Encoding: 7bit
|
99
|
-
|
100
|
-
Test
|
101
|
-
|
102
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
103
|
-
[1m[35mSQL (5.9ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.366163"], ["updated_at", "2016-11-21 06:15:51.367104"], ["id", 638]]
|
104
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
105
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
106
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
107
|
-
[1m[35m (0.1ms)[0m BEGIN
|
108
|
-
---------------------------
|
109
|
-
ProcessorTest: test_retries
|
110
|
-
---------------------------
|
111
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
112
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ShareProductsJob\",\"job_id\":\"40088e3e-2c00-47e3-9c11-379778198cec\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-11-21 06:15:51.378050"], ["updated_at", "2016-11-21 06:15:51.378050"]]
|
113
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
114
|
-
[ActiveJob] Enqueued ShareProductsJob (Job ID: 40088e3e-2c00-47e3-9c11-379778198cec) to Sidejobs(default)
|
115
|
-
[1m[35mSidejobs::Job Load (0.4ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-11-21 06:15:51.379762' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
116
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
117
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.380653"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.381320"], ["id", 639]]
|
118
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
119
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
120
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "error" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "failing"], ["failed_at", "2016-11-21 06:15:51.383094"], ["error", "Social network unavailable"], ["updated_at", "2016-11-21 06:15:51.383730"], ["id", 639]]
|
121
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
122
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-11-21 06:15:51.385329' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
123
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
124
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.386176"], ["attempts", 2], ["updated_at", "2016-11-21 06:15:51.386920"], ["id", 639]]
|
125
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
126
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
127
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "failing"], ["failed_at", "2016-11-21 06:15:51.388585"], ["updated_at", "2016-11-21 06:15:51.389184"], ["id", 639]]
|
128
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
129
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-11-21 06:15:51.390689' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
130
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
131
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.391487"], ["attempts", 3], ["updated_at", "2016-11-21 06:15:51.392265"], ["id", 639]]
|
132
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
133
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
134
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "failing"], ["failed_at", "2016-11-21 06:15:51.393997"], ["updated_at", "2016-11-21 06:15:51.394606"], ["id", 639]]
|
135
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
136
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-11-21 06:15:51.396038' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
137
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
138
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
139
|
-
[1m[35m (0.1ms)[0m BEGIN
|
140
|
-
-------------------------
|
141
|
-
ProcessorTest: test_batch
|
142
|
-
-------------------------
|
143
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
144
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"82564d98-2cf8-46f5-88bb-5355f2d5c339\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.398977"], ["updated_at", "2016-11-21 06:15:51.398977"]]
|
145
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
146
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 82564d98-2cf8-46f5-88bb-5355f2d5c339) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
147
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
148
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"e972d5ac-9383-42d8-9793-c6dc7d496ab1\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.401512"], ["updated_at", "2016-11-21 06:15:51.401512"]]
|
149
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
150
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: e972d5ac-9383-42d8-9793-c6dc7d496ab1) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
151
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
152
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"bee9a465-5f96-4273-80e4-1f8c6b5c679f\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.404036"], ["updated_at", "2016-11-21 06:15:51.404036"]]
|
153
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
154
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: bee9a465-5f96-4273-80e4-1f8c6b5c679f) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
155
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"4be8ffba-75d7-4e50-a560-4768b8bacf27\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.406487"], ["updated_at", "2016-11-21 06:15:51.406487"]]
|
157
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
158
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 4be8ffba-75d7-4e50-a560-4768b8bacf27) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
159
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
160
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"e267515a-3a0a-496d-a512-b53231a2690c\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.408523"], ["updated_at", "2016-11-21 06:15:51.408523"]]
|
161
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
162
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: e267515a-3a0a-496d-a512-b53231a2690c) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
163
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
164
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"29543ad6-ef8a-4cd1-8ef4-4250ee95eaee\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.410590"], ["updated_at", "2016-11-21 06:15:51.410590"]]
|
165
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
166
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 29543ad6-ef8a-4cd1-8ef4-4250ee95eaee) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
167
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
168
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"9ad184fe-fdaf-4473-ba83-885d96852f18\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.413020"], ["updated_at", "2016-11-21 06:15:51.413020"]]
|
169
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
170
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 9ad184fe-fdaf-4473-ba83-885d96852f18) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
171
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
172
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"841762dc-542a-4014-9e82-e72de4de624b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.415092"], ["updated_at", "2016-11-21 06:15:51.415092"]]
|
173
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
174
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 841762dc-542a-4014-9e82-e72de4de624b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
175
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
176
|
-
[ActiveJob] [1m[35mSQL (0.4ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"44397d84-bc91-455a-9b93-74ae90c47549\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.417100"], ["updated_at", "2016-11-21 06:15:51.417100"]]
|
177
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
178
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 44397d84-bc91-455a-9b93-74ae90c47549) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
179
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
180
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"e3b10857-d569-4147-bd16-3dde21b30d14\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.419561"], ["updated_at", "2016-11-21 06:15:51.419561"]]
|
181
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
182
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: e3b10857-d569-4147-bd16-3dde21b30d14) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
183
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
184
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"d4273199-741a-4d87-abcf-46f9298bdac5\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.421690"], ["updated_at", "2016-11-21 06:15:51.421690"]]
|
185
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
186
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: d4273199-741a-4d87-abcf-46f9298bdac5) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
187
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
188
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"f6cf1a2c-d294-44d7-b1ff-693bcdfb45cf\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.423697"], ["updated_at", "2016-11-21 06:15:51.423697"]]
|
189
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
190
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: f6cf1a2c-d294-44d7-b1ff-693bcdfb45cf) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
191
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
192
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"d2cee267-0894-4bcb-b80a-e55896001389\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.425644"], ["updated_at", "2016-11-21 06:15:51.425644"]]
|
193
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
194
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: d2cee267-0894-4bcb-b80a-e55896001389) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
195
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
196
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"2a379c90-0125-4220-a9fe-ce0b93378627\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.427559"], ["updated_at", "2016-11-21 06:15:51.427559"]]
|
197
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
198
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 2a379c90-0125-4220-a9fe-ce0b93378627) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
199
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
200
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"0670c5e1-3822-48c3-aa7e-22aed8d91ed7\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.429445"], ["updated_at", "2016-11-21 06:15:51.429445"]]
|
201
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
202
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 0670c5e1-3822-48c3-aa7e-22aed8d91ed7) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
203
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
204
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"85f63530-7bf4-43c5-832c-80d503294f8a\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.431447"], ["updated_at", "2016-11-21 06:15:51.431447"]]
|
205
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
206
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 85f63530-7bf4-43c5-832c-80d503294f8a) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
207
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
208
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"9f2eb23e-c826-4af2-b695-6d268ec38ce1\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.433442"], ["updated_at", "2016-11-21 06:15:51.433442"]]
|
209
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
210
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 9f2eb23e-c826-4af2-b695-6d268ec38ce1) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
211
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
212
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"baf81883-2822-40dc-8b35-3df6b790e20b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.435454"], ["updated_at", "2016-11-21 06:15:51.435454"]]
|
213
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
214
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: baf81883-2822-40dc-8b35-3df6b790e20b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
215
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
216
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"a5757b9b-1bed-4a75-868a-f955f76ba12b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.437495"], ["updated_at", "2016-11-21 06:15:51.437495"]]
|
217
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
218
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: a5757b9b-1bed-4a75-868a-f955f76ba12b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
219
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
220
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"a025278b-5449-44b7-aeb5-8faffebaf482\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.439497"], ["updated_at", "2016-11-21 06:15:51.439497"]]
|
221
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
222
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: a025278b-5449-44b7-aeb5-8faffebaf482) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
223
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
224
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"6206b5bd-ad4d-40fc-adbc-956e48949bcc\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.441391"], ["updated_at", "2016-11-21 06:15:51.441391"]]
|
225
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
226
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 6206b5bd-ad4d-40fc-adbc-956e48949bcc) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
227
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
228
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"efd82fca-30c8-4a6d-b992-19e0389c5057\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.443319"], ["updated_at", "2016-11-21 06:15:51.443319"]]
|
229
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
230
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: efd82fca-30c8-4a6d-b992-19e0389c5057) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
231
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
232
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"66ddbc19-4d1b-44e3-886e-ff89abcb1aba\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.445263"], ["updated_at", "2016-11-21 06:15:51.445263"]]
|
233
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
234
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 66ddbc19-4d1b-44e3-886e-ff89abcb1aba) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
235
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
236
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"4ec5e3af-e81a-459a-abe6-d498c3803b42\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-11-21 06:15:51.447405"], ["updated_at", "2016-11-21 06:15:51.447405"]]
|
237
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
238
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 4ec5e3af-e81a-459a-abe6-d498c3803b42) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
239
|
-
[1m[36mSidejobs::Job Load (0.5ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-11-21 06:15:51.448941' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
240
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
241
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.450068"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.450746"], ["id", 640]]
|
242
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
243
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
244
|
-
|
245
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
246
|
-
|
247
|
-
Sent mail to test@mail.com (1.2ms)
|
248
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
249
|
-
From: test@mail.com
|
250
|
-
To: test@mail.com
|
251
|
-
Message-ID: <583291176ed14_55063fc20c03f9f4306e3@imac-de-matt.mail>
|
252
|
-
Subject: Invite
|
253
|
-
Mime-Version: 1.0
|
254
|
-
Content-Type: text/plain;
|
255
|
-
charset=UTF-8
|
256
|
-
Content-Transfer-Encoding: 7bit
|
257
|
-
|
258
|
-
Test
|
259
|
-
|
260
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
261
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.454618"], ["updated_at", "2016-11-21 06:15:51.455375"], ["id", 640]]
|
262
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
263
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
264
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.456762"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.457343"], ["id", 641]]
|
265
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
266
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
267
|
-
|
268
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
269
|
-
|
270
|
-
Sent mail to test@mail.com (1.3ms)
|
271
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
272
|
-
From: test@mail.com
|
273
|
-
To: test@mail.com
|
274
|
-
Message-ID: <58329117706ed_55063fc20c03f9f43074f@imac-de-matt.mail>
|
275
|
-
Subject: Invite
|
276
|
-
Mime-Version: 1.0
|
277
|
-
Content-Type: text/plain;
|
278
|
-
charset=UTF-8
|
279
|
-
Content-Transfer-Encoding: 7bit
|
280
|
-
|
281
|
-
Test
|
282
|
-
|
283
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
284
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.461298"], ["updated_at", "2016-11-21 06:15:51.462075"], ["id", 641]]
|
285
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
286
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
287
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.463526"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.464153"], ["id", 642]]
|
288
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
289
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
290
|
-
|
291
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
292
|
-
|
293
|
-
Sent mail to test@mail.com (1.3ms)
|
294
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
295
|
-
From: test@mail.com
|
296
|
-
To: test@mail.com
|
297
|
-
Message-ID: <5832911772152_55063fc20c03f9f4308cb@imac-de-matt.mail>
|
298
|
-
Subject: Invite
|
299
|
-
Mime-Version: 1.0
|
300
|
-
Content-Type: text/plain;
|
301
|
-
charset=UTF-8
|
302
|
-
Content-Transfer-Encoding: 7bit
|
303
|
-
|
304
|
-
Test
|
305
|
-
|
306
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
307
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.468063"], ["updated_at", "2016-11-21 06:15:51.468824"], ["id", 642]]
|
308
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
309
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
310
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.470253"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.470888"], ["id", 643]]
|
311
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
312
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
313
|
-
|
314
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
315
|
-
|
316
|
-
Sent mail to test@mail.com (1.3ms)
|
317
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
318
|
-
From: test@mail.com
|
319
|
-
To: test@mail.com
|
320
|
-
Message-ID: <5832911773bc8_55063fc20c03f9f4309db@imac-de-matt.mail>
|
321
|
-
Subject: Invite
|
322
|
-
Mime-Version: 1.0
|
323
|
-
Content-Type: text/plain;
|
324
|
-
charset=UTF-8
|
325
|
-
Content-Transfer-Encoding: 7bit
|
326
|
-
|
327
|
-
Test
|
328
|
-
|
329
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
330
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.474833"], ["updated_at", "2016-11-21 06:15:51.475585"], ["id", 643]]
|
331
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
332
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
333
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.477012"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.477629"], ["id", 644]]
|
334
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
335
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
336
|
-
|
337
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
338
|
-
|
339
|
-
Sent mail to test@mail.com (1.3ms)
|
340
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
341
|
-
From: test@mail.com
|
342
|
-
To: test@mail.com
|
343
|
-
Message-ID: <58329117755f6_55063fc20c03f9f43104a@imac-de-matt.mail>
|
344
|
-
Subject: Invite
|
345
|
-
Mime-Version: 1.0
|
346
|
-
Content-Type: text/plain;
|
347
|
-
charset=UTF-8
|
348
|
-
Content-Transfer-Encoding: 7bit
|
349
|
-
|
350
|
-
Test
|
351
|
-
|
352
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
353
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.481539"], ["updated_at", "2016-11-21 06:15:51.482442"], ["id", 644]]
|
354
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
355
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
356
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.484061"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.484702"], ["id", 645]]
|
357
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
358
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
359
|
-
|
360
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
361
|
-
|
362
|
-
Sent mail to test@mail.com (1.1ms)
|
363
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
364
|
-
From: test@mail.com
|
365
|
-
To: test@mail.com
|
366
|
-
Message-ID: <5832911777177_55063fc20c03f9f4311c5@imac-de-matt.mail>
|
367
|
-
Subject: Invite
|
368
|
-
Mime-Version: 1.0
|
369
|
-
Content-Type: text/plain;
|
370
|
-
charset=UTF-8
|
371
|
-
Content-Transfer-Encoding: 7bit
|
372
|
-
|
373
|
-
Test
|
374
|
-
|
375
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
376
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.488497"], ["updated_at", "2016-11-21 06:15:51.489265"], ["id", 645]]
|
377
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
378
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
379
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.490613"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.491211"], ["id", 646]]
|
380
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
381
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
382
|
-
|
383
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
384
|
-
|
385
|
-
Sent mail to test@mail.com (1.2ms)
|
386
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
387
|
-
From: test@mail.com
|
388
|
-
To: test@mail.com
|
389
|
-
Message-ID: <5832911778a61_55063fc20c03f9f43121e@imac-de-matt.mail>
|
390
|
-
Subject: Invite
|
391
|
-
Mime-Version: 1.0
|
392
|
-
Content-Type: text/plain;
|
393
|
-
charset=UTF-8
|
394
|
-
Content-Transfer-Encoding: 7bit
|
395
|
-
|
396
|
-
Test
|
397
|
-
|
398
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
399
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.494886"], ["updated_at", "2016-11-21 06:15:51.495634"], ["id", 646]]
|
400
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
401
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
402
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.496993"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.497596"], ["id", 647]]
|
403
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
404
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
405
|
-
|
406
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
407
|
-
|
408
|
-
Sent mail to test@mail.com (1.2ms)
|
409
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
410
|
-
From: test@mail.com
|
411
|
-
To: test@mail.com
|
412
|
-
Message-ID: <583291177a35c_55063fc20c03f9f431322@imac-de-matt.mail>
|
413
|
-
Subject: Invite
|
414
|
-
Mime-Version: 1.0
|
415
|
-
Content-Type: text/plain;
|
416
|
-
charset=UTF-8
|
417
|
-
Content-Transfer-Encoding: 7bit
|
418
|
-
|
419
|
-
Test
|
420
|
-
|
421
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
422
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.501267"], ["updated_at", "2016-11-21 06:15:51.502062"], ["id", 647]]
|
423
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
424
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
425
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.503499"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.504150"], ["id", 648]]
|
426
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
427
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
428
|
-
|
429
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
430
|
-
|
431
|
-
Sent mail to test@mail.com (1.3ms)
|
432
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
433
|
-
From: test@mail.com
|
434
|
-
To: test@mail.com
|
435
|
-
Message-ID: <583291177bdc1_55063fc20c03f9f431463@imac-de-matt.mail>
|
436
|
-
Subject: Invite
|
437
|
-
Mime-Version: 1.0
|
438
|
-
Content-Type: text/plain;
|
439
|
-
charset=UTF-8
|
440
|
-
Content-Transfer-Encoding: 7bit
|
441
|
-
|
442
|
-
Test
|
443
|
-
|
444
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
445
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.508125"], ["updated_at", "2016-11-21 06:15:51.508901"], ["id", 648]]
|
446
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
447
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
448
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.510248"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.510858"], ["id", 649]]
|
449
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
450
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
451
|
-
|
452
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
453
|
-
|
454
|
-
Sent mail to test@mail.com (1.2ms)
|
455
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
456
|
-
From: test@mail.com
|
457
|
-
To: test@mail.com
|
458
|
-
Message-ID: <583291177d77c_55063fc20c03f9f4315e5@imac-de-matt.mail>
|
459
|
-
Subject: Invite
|
460
|
-
Mime-Version: 1.0
|
461
|
-
Content-Type: text/plain;
|
462
|
-
charset=UTF-8
|
463
|
-
Content-Transfer-Encoding: 7bit
|
464
|
-
|
465
|
-
Test
|
466
|
-
|
467
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
468
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.514638"], ["updated_at", "2016-11-21 06:15:51.515434"], ["id", 649]]
|
469
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
470
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
471
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.516905"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.517669"], ["id", 650]]
|
472
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
473
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
474
|
-
|
475
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
476
|
-
|
477
|
-
Sent mail to test@mail.com (1.1ms)
|
478
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
479
|
-
From: test@mail.com
|
480
|
-
To: test@mail.com
|
481
|
-
Message-ID: <583291177f25b_55063fc20c03f9f4316e8@imac-de-matt.mail>
|
482
|
-
Subject: Invite
|
483
|
-
Mime-Version: 1.0
|
484
|
-
Content-Type: text/plain;
|
485
|
-
charset=UTF-8
|
486
|
-
Content-Transfer-Encoding: 7bit
|
487
|
-
|
488
|
-
Test
|
489
|
-
|
490
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
491
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.521487"], ["updated_at", "2016-11-21 06:15:51.522267"], ["id", 650]]
|
492
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
493
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
494
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.523695"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.524332"], ["id", 651]]
|
495
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
496
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
497
|
-
|
498
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
499
|
-
|
500
|
-
Sent mail to test@mail.com (1.2ms)
|
501
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
502
|
-
From: test@mail.com
|
503
|
-
To: test@mail.com
|
504
|
-
Message-ID: <5832911780c45_55063fc20c03f9f4317a6@imac-de-matt.mail>
|
505
|
-
Subject: Invite
|
506
|
-
Mime-Version: 1.0
|
507
|
-
Content-Type: text/plain;
|
508
|
-
charset=UTF-8
|
509
|
-
Content-Transfer-Encoding: 7bit
|
510
|
-
|
511
|
-
Test
|
512
|
-
|
513
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
514
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.528193"], ["updated_at", "2016-11-21 06:15:51.529031"], ["id", 651]]
|
515
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
516
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
517
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.530376"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.531068"], ["id", 652]]
|
518
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
519
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
520
|
-
|
521
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
522
|
-
|
523
|
-
Sent mail to test@mail.com (1.2ms)
|
524
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
525
|
-
From: test@mail.com
|
526
|
-
To: test@mail.com
|
527
|
-
Message-ID: <58329117826b6_55063fc20c03f9f4318b3@imac-de-matt.mail>
|
528
|
-
Subject: Invite
|
529
|
-
Mime-Version: 1.0
|
530
|
-
Content-Type: text/plain;
|
531
|
-
charset=UTF-8
|
532
|
-
Content-Transfer-Encoding: 7bit
|
533
|
-
|
534
|
-
Test
|
535
|
-
|
536
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
537
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.534966"], ["updated_at", "2016-11-21 06:15:51.535726"], ["id", 652]]
|
538
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
539
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
540
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.537078"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.537717"], ["id", 653]]
|
541
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
542
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
543
|
-
|
544
|
-
UserMailer#invite: processed outbound mail in 0.9ms
|
545
|
-
|
546
|
-
Sent mail to test@mail.com (1.3ms)
|
547
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
548
|
-
From: test@mail.com
|
549
|
-
To: test@mail.com
|
550
|
-
Message-ID: <5832911784164_55063fc20c03f9f431921@imac-de-matt.mail>
|
551
|
-
Subject: Invite
|
552
|
-
Mime-Version: 1.0
|
553
|
-
Content-Type: text/plain;
|
554
|
-
charset=UTF-8
|
555
|
-
Content-Transfer-Encoding: 7bit
|
556
|
-
|
557
|
-
Test
|
558
|
-
|
559
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
560
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.541762"], ["updated_at", "2016-11-21 06:15:51.542538"], ["id", 653]]
|
561
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
562
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
563
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.543905"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.544544"], ["id", 654]]
|
564
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
565
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
566
|
-
|
567
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
568
|
-
|
569
|
-
Sent mail to test@mail.com (1.3ms)
|
570
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
571
|
-
From: test@mail.com
|
572
|
-
To: test@mail.com
|
573
|
-
Message-ID: <5832911785b8c_55063fc20c03f9f4320ee@imac-de-matt.mail>
|
574
|
-
Subject: Invite
|
575
|
-
Mime-Version: 1.0
|
576
|
-
Content-Type: text/plain;
|
577
|
-
charset=UTF-8
|
578
|
-
Content-Transfer-Encoding: 7bit
|
579
|
-
|
580
|
-
Test
|
581
|
-
|
582
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
583
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.548501"], ["updated_at", "2016-11-21 06:15:51.549236"], ["id", 654]]
|
584
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
585
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
586
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.550584"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.551362"], ["id", 655]]
|
587
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
588
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
589
|
-
|
590
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
591
|
-
|
592
|
-
Sent mail to test@mail.com (1.2ms)
|
593
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
594
|
-
From: test@mail.com
|
595
|
-
To: test@mail.com
|
596
|
-
Message-ID: <5832911787967_55063fc20c03f9f432122@imac-de-matt.mail>
|
597
|
-
Subject: Invite
|
598
|
-
Mime-Version: 1.0
|
599
|
-
Content-Type: text/plain;
|
600
|
-
charset=UTF-8
|
601
|
-
Content-Transfer-Encoding: 7bit
|
602
|
-
|
603
|
-
Test
|
604
|
-
|
605
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
606
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.556065"], ["updated_at", "2016-11-21 06:15:51.556858"], ["id", 655]]
|
607
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
608
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
609
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.558264"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.558905"], ["id", 656]]
|
610
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
611
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
612
|
-
|
613
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
614
|
-
|
615
|
-
Sent mail to test@mail.com (1.8ms)
|
616
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
617
|
-
From: test@mail.com
|
618
|
-
To: test@mail.com
|
619
|
-
Message-ID: <5832911789383_55063fc20c03f9f43222@imac-de-matt.mail>
|
620
|
-
Subject: Invite
|
621
|
-
Mime-Version: 1.0
|
622
|
-
Content-Type: text/plain;
|
623
|
-
charset=UTF-8
|
624
|
-
Content-Transfer-Encoding: 7bit
|
625
|
-
|
626
|
-
Test
|
627
|
-
|
628
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
629
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.563440"], ["updated_at", "2016-11-21 06:15:51.564422"], ["id", 656]]
|
630
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
631
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
632
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.565869"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.566565"], ["id", 657]]
|
633
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
634
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
635
|
-
|
636
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
637
|
-
|
638
|
-
Sent mail to test@mail.com (1.2ms)
|
639
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
640
|
-
From: test@mail.com
|
641
|
-
To: test@mail.com
|
642
|
-
Message-ID: <583291178b19b_55063fc20c03f9f4323e7@imac-de-matt.mail>
|
643
|
-
Subject: Invite
|
644
|
-
Mime-Version: 1.0
|
645
|
-
Content-Type: text/plain;
|
646
|
-
charset=UTF-8
|
647
|
-
Content-Transfer-Encoding: 7bit
|
648
|
-
|
649
|
-
Test
|
650
|
-
|
651
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
652
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.570446"], ["updated_at", "2016-11-21 06:15:51.571224"], ["id", 657]]
|
653
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
654
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
655
|
-
[1m[36mSQL (0.6ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.572620"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.573243"], ["id", 658]]
|
656
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
657
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
658
|
-
|
659
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
660
|
-
|
661
|
-
Sent mail to test@mail.com (1.2ms)
|
662
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
663
|
-
From: test@mail.com
|
664
|
-
To: test@mail.com
|
665
|
-
Message-ID: <583291178ceb4_55063fc20c03f9f4324f6@imac-de-matt.mail>
|
666
|
-
Subject: Invite
|
667
|
-
Mime-Version: 1.0
|
668
|
-
Content-Type: text/plain;
|
669
|
-
charset=UTF-8
|
670
|
-
Content-Transfer-Encoding: 7bit
|
671
|
-
|
672
|
-
Test
|
673
|
-
|
674
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
675
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.577910"], ["updated_at", "2016-11-21 06:15:51.578699"], ["id", 658]]
|
676
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
677
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
678
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.580174"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.580816"], ["id", 659]]
|
679
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
680
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
681
|
-
|
682
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
683
|
-
|
684
|
-
Sent mail to test@mail.com (1.3ms)
|
685
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
686
|
-
From: test@mail.com
|
687
|
-
To: test@mail.com
|
688
|
-
Message-ID: <583291178e8e2_55063fc20c03f9f432590@imac-de-matt.mail>
|
689
|
-
Subject: Invite
|
690
|
-
Mime-Version: 1.0
|
691
|
-
Content-Type: text/plain;
|
692
|
-
charset=UTF-8
|
693
|
-
Content-Transfer-Encoding: 7bit
|
694
|
-
|
695
|
-
Test
|
696
|
-
|
697
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
698
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.584929"], ["updated_at", "2016-11-21 06:15:51.585869"], ["id", 659]]
|
699
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
700
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "complete"]]
|
701
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "processing"]]
|
702
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "pending"]]
|
703
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
704
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
705
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.589964"], ["updated_at", "2016-11-21 06:15:51.590707"], ["id", 663]]
|
706
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
707
|
-
[1m[36mSidejobs::Job Load (0.4ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-11-21 06:15:51.592269' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
708
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
709
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.593074"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.593708"], ["id", 660]]
|
710
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
711
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
712
|
-
|
713
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
714
|
-
|
715
|
-
Sent mail to test@mail.com (1.2ms)
|
716
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
717
|
-
From: test@mail.com
|
718
|
-
To: test@mail.com
|
719
|
-
Message-ID: <5832911791b4c_55063fc20c03f9f432637@imac-de-matt.mail>
|
720
|
-
Subject: Invite
|
721
|
-
Mime-Version: 1.0
|
722
|
-
Content-Type: text/plain;
|
723
|
-
charset=UTF-8
|
724
|
-
Content-Transfer-Encoding: 7bit
|
725
|
-
|
726
|
-
Test
|
727
|
-
|
728
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
729
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.597537"], ["updated_at", "2016-11-21 06:15:51.598243"], ["id", 660]]
|
730
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
731
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
732
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.599563"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.600166"], ["id", 661]]
|
733
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
734
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
735
|
-
|
736
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
737
|
-
|
738
|
-
Sent mail to test@mail.com (1.3ms)
|
739
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
740
|
-
From: test@mail.com
|
741
|
-
To: test@mail.com
|
742
|
-
Message-ID: <58329117933e7_55063fc20c03f9f4327e8@imac-de-matt.mail>
|
743
|
-
Subject: Invite
|
744
|
-
Mime-Version: 1.0
|
745
|
-
Content-Type: text/plain;
|
746
|
-
charset=UTF-8
|
747
|
-
Content-Transfer-Encoding: 7bit
|
748
|
-
|
749
|
-
Test
|
750
|
-
|
751
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
752
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.603959"], ["updated_at", "2016-11-21 06:15:51.605172"], ["id", 661]]
|
753
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
754
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
755
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-11-21 06:15:51.606690"], ["attempts", 1], ["updated_at", "2016-11-21 06:15:51.607329"], ["id", 662]]
|
756
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
757
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
758
|
-
|
759
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
760
|
-
|
761
|
-
Sent mail to test@mail.com (1.1ms)
|
762
|
-
Date: Mon, 21 Nov 2016 03:15:51 -0300
|
763
|
-
From: test@mail.com
|
764
|
-
To: test@mail.com
|
765
|
-
Message-ID: <5832911795007_55063fc20c03f9f43286a@imac-de-matt.mail>
|
766
|
-
Subject: Invite
|
767
|
-
Mime-Version: 1.0
|
768
|
-
Content-Type: text/plain;
|
769
|
-
charset=UTF-8
|
770
|
-
Content-Transfer-Encoding: 7bit
|
771
|
-
|
772
|
-
Test
|
773
|
-
|
774
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
775
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-11-21 06:15:51.610999"], ["updated_at", "2016-11-21 06:15:51.611682"], ["id", 662]]
|
776
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
777
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "complete"]]
|
778
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "processing"]]
|
779
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "pending"]]
|
780
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
781
|
-
[1m[36mActiveRecord::SchemaMigration Load (2.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
782
|
-
[1m[35m (0.2ms)[0m BEGIN
|
783
|
-
------------------------
|
784
|
-
DaemonTest: test_process
|
785
|
-
------------------------
|
786
|
-
[1m[36mSidejobs::Job Load (4.4ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:01.075226' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
787
|
-
[1m[36mSidejobs::Job Load (1.1ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:05.084421' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
788
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
789
|
-
[1m[35m (0.3ms)[0m BEGIN
|
790
|
-
------------------------
|
791
|
-
DaemonTest: test_process
|
792
|
-
------------------------
|
793
|
-
[1m[35mSidejobs::Job Load (0.5ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:20.098248' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
794
|
-
[1m[36mSidejobs::Job Load (1.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:23.313842' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
795
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
796
|
-
------------------------
|
797
|
-
DaemonTest: test_pulling
|
798
|
-
------------------------
|
799
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
800
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
801
|
-
-----------------------
|
802
|
-
QueueTest: test_enqueue
|
803
|
-
-----------------------
|
804
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
805
|
-
[ActiveJob] [1m[36mSQL (22.8ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"9652df1f-ed6f-49de-9df1-3592e561b6aa\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.335531"], ["updated_at", "2016-12-11 05:28:43.335531"]]
|
806
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
807
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 9652df1f-ed6f-49de-9df1-3592e561b6aa) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
808
|
-
[1m[36mSidejobs::Job Load (0.5ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
809
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
810
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"70fa2f43-afc8-4913-b08e-4d11e2b336dd\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["created_at", "2016-12-11 05:28:43.366191"], ["updated_at", "2016-12-11 05:28:43.366191"]]
|
811
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
812
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: 70fa2f43-afc8-4913-b08e-4d11e2b336dd) to Sidejobs(high_priority)
|
813
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
814
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
815
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"7523fbe7-f4e0-48d5-90d0-f45e99fe34d9\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-12-11 05:28:43.370433"], ["updated_at", "2016-12-11 05:28:43.370433"]]
|
816
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
817
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: 7523fbe7-f4e0-48d5-90d0-f45e99fe34d9) to Sidejobs(default)
|
818
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
819
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
820
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"a43e349e-1c52-474d-8f43-2a6c2c104981\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["created_at", "2016-12-11 05:28:43.374460"], ["updated_at", "2016-12-11 05:28:43.374460"]]
|
821
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
822
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: a43e349e-1c52-474d-8f43-2a6c2c104981) to Sidejobs(low_priority)
|
823
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
824
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
825
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"c6990fb9-ee95-4288-9bd6-3c227bcf3269\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["created_at", "2016-12-11 05:28:43.378107"], ["updated_at", "2016-12-11 05:28:43.378107"]]
|
826
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
827
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: c6990fb9-ee95-4288-9bd6-3c227bcf3269) to Sidejobs(other)
|
828
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
829
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
830
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"d9619ad6-264f-4f62-a6d0-3d5babb0ac61\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["scheduled_at", "2016-12-11 15:28:43.386530"], ["created_at", "2016-12-11 05:28:43.387932"], ["updated_at", "2016-12-11 05:28:43.387932"]]
|
831
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
832
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: d9619ad6-264f-4f62-a6d0-3d5babb0ac61) to Sidejobs(mailers) at 2016-12-11 15:28:43 UTC with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
833
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
834
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
835
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"8d537c48-d522-4342-918c-7013878a446e\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["scheduled_at", "2016-12-11 15:28:43.386530"], ["created_at", "2016-12-11 05:28:43.391224"], ["updated_at", "2016-12-11 05:28:43.391224"]]
|
836
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
837
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: 8d537c48-d522-4342-918c-7013878a446e) to Sidejobs(high_priority) at 2016-12-11 15:28:43 UTC
|
838
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
839
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
840
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"034e09a8-0eec-447a-88f0-2b811dccd934\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["scheduled_at", "2016-12-11 15:28:43.386530"], ["created_at", "2016-12-11 05:28:43.394714"], ["updated_at", "2016-12-11 05:28:43.394714"]]
|
841
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
842
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: 034e09a8-0eec-447a-88f0-2b811dccd934) to Sidejobs(default) at 2016-12-11 15:28:43 UTC
|
843
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
844
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
845
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"dc0b46c7-c3d6-47c8-9f4d-8c2e5f02bc4a\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["scheduled_at", "2016-12-11 15:28:43.386530"], ["created_at", "2016-12-11 05:28:43.398431"], ["updated_at", "2016-12-11 05:28:43.398431"]]
|
846
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
847
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: dc0b46c7-c3d6-47c8-9f4d-8c2e5f02bc4a) to Sidejobs(low_priority) at 2016-12-11 15:28:43 UTC
|
848
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
849
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
850
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"8ebf2ce1-db1d-48ac-8b75-749557206d29\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["scheduled_at", "2016-12-11 15:28:43.386530"], ["created_at", "2016-12-11 05:28:43.402263"], ["updated_at", "2016-12-11 05:28:43.402263"]]
|
851
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
852
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: 8ebf2ce1-db1d-48ac-8b75-749557206d29) to Sidejobs(other) at 2016-12-11 15:28:43 UTC
|
853
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
854
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
855
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
856
|
-
-------------------------
|
857
|
-
ProcessorTest: test_batch
|
858
|
-
-------------------------
|
859
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
860
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"d31c0400-23f5-47ac-8e25-9ba4fdaa5bf8\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.407327"], ["updated_at", "2016-12-11 05:28:43.407327"]]
|
861
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
862
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: d31c0400-23f5-47ac-8e25-9ba4fdaa5bf8) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
863
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
864
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"7ad3ec88-b52b-47c8-8255-b21455cbe079\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.409540"], ["updated_at", "2016-12-11 05:28:43.409540"]]
|
865
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
866
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 7ad3ec88-b52b-47c8-8255-b21455cbe079) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
867
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
868
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"e982290c-9173-4dd7-ba14-a6aa2e478f7e\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.412223"], ["updated_at", "2016-12-11 05:28:43.412223"]]
|
869
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
870
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: e982290c-9173-4dd7-ba14-a6aa2e478f7e) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
871
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
872
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"45046116-7d7f-4210-8ed6-9b689adef59d\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.414529"], ["updated_at", "2016-12-11 05:28:43.414529"]]
|
873
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
874
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 45046116-7d7f-4210-8ed6-9b689adef59d) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
875
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
876
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"bcc33a4b-a11b-4df8-a6f0-189003655e2b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.416611"], ["updated_at", "2016-12-11 05:28:43.416611"]]
|
877
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
878
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: bcc33a4b-a11b-4df8-a6f0-189003655e2b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
879
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
880
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"50fe348e-158e-4a29-a908-2130a0942ff1\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.418631"], ["updated_at", "2016-12-11 05:28:43.418631"]]
|
881
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
882
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 50fe348e-158e-4a29-a908-2130a0942ff1) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
883
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
884
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"a26c25f7-9094-4e33-b3fc-2e90f90f0bc2\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.420703"], ["updated_at", "2016-12-11 05:28:43.420703"]]
|
885
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
886
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: a26c25f7-9094-4e33-b3fc-2e90f90f0bc2) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
887
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
888
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"ec99cdd6-8c19-42e1-9c25-73c4f59a7542\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.422852"], ["updated_at", "2016-12-11 05:28:43.422852"]]
|
889
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
890
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: ec99cdd6-8c19-42e1-9c25-73c4f59a7542) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
891
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
892
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"9a63e6b9-3676-4bf5-abbb-ecaab6dffffe\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.424926"], ["updated_at", "2016-12-11 05:28:43.424926"]]
|
893
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
894
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 9a63e6b9-3676-4bf5-abbb-ecaab6dffffe) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
895
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
896
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"607abc0c-66fc-4ce9-81e8-68e2397c8294\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.426932"], ["updated_at", "2016-12-11 05:28:43.426932"]]
|
897
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
898
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 607abc0c-66fc-4ce9-81e8-68e2397c8294) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
899
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
900
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"84369914-8d7f-4dc4-add1-893c5eaf5618\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.429083"], ["updated_at", "2016-12-11 05:28:43.429083"]]
|
901
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
902
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 84369914-8d7f-4dc4-add1-893c5eaf5618) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
903
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
904
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"7fee8452-a8af-426f-8de9-ba859305d126\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.431246"], ["updated_at", "2016-12-11 05:28:43.431246"]]
|
905
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
906
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 7fee8452-a8af-426f-8de9-ba859305d126) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
907
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
908
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"a1e1fb49-45be-418d-a1f9-eb24df8b3313\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.433404"], ["updated_at", "2016-12-11 05:28:43.433404"]]
|
909
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
910
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: a1e1fb49-45be-418d-a1f9-eb24df8b3313) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
911
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
912
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"23f35e75-35bb-4537-8a0e-ac3bf2a71745\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.435506"], ["updated_at", "2016-12-11 05:28:43.435506"]]
|
913
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
914
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 23f35e75-35bb-4537-8a0e-ac3bf2a71745) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
915
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
916
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"82ec2978-02ba-4aa6-a733-4f3c5dfe4403\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.437514"], ["updated_at", "2016-12-11 05:28:43.437514"]]
|
917
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
918
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 82ec2978-02ba-4aa6-a733-4f3c5dfe4403) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
919
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
920
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"ca0a43b4-809f-46ee-a6a5-113fcf765999\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.439742"], ["updated_at", "2016-12-11 05:28:43.439742"]]
|
921
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
922
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: ca0a43b4-809f-46ee-a6a5-113fcf765999) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
923
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
924
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"e5736afa-83a2-4dc5-9695-507dbd7208e2\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.441811"], ["updated_at", "2016-12-11 05:28:43.441811"]]
|
925
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
926
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: e5736afa-83a2-4dc5-9695-507dbd7208e2) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
927
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
928
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"f273d577-c349-4926-9b99-598397b95f54\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.443834"], ["updated_at", "2016-12-11 05:28:43.443834"]]
|
929
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
930
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: f273d577-c349-4926-9b99-598397b95f54) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
931
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
932
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"e4fec455-7004-4f6d-90ee-8cce00b964c7\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.445932"], ["updated_at", "2016-12-11 05:28:43.445932"]]
|
933
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
934
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: e4fec455-7004-4f6d-90ee-8cce00b964c7) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
935
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
936
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"194de21a-db39-471e-b8df-985d7dd488fa\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.448124"], ["updated_at", "2016-12-11 05:28:43.448124"]]
|
937
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
938
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 194de21a-db39-471e-b8df-985d7dd488fa) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
939
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
940
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"652748f1-fb91-44bb-87d0-427b4129a02c\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.450122"], ["updated_at", "2016-12-11 05:28:43.450122"]]
|
941
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
942
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 652748f1-fb91-44bb-87d0-427b4129a02c) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
943
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
944
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"b7a74d30-0608-48bd-9f2b-18b0f7342834\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.452107"], ["updated_at", "2016-12-11 05:28:43.452107"]]
|
945
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
946
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: b7a74d30-0608-48bd-9f2b-18b0f7342834) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
947
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
948
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"5bebfecc-1d2a-4f47-819d-4dd4cba11a62\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.454127"], ["updated_at", "2016-12-11 05:28:43.454127"]]
|
949
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
950
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 5bebfecc-1d2a-4f47-819d-4dd4cba11a62) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
951
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
952
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"3b019d07-3ccc-4c7c-b268-8ce25271891c\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.456123"], ["updated_at", "2016-12-11 05:28:43.456123"]]
|
953
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
954
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 3b019d07-3ccc-4c7c-b268-8ce25271891c) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
955
|
-
[1m[35mSidejobs::Job Load (0.8ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:43.459184' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
956
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
957
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.460912"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.461595"], ["id", 674]]
|
958
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
959
|
-
Rendered user_mailer/invite.text.erb (1.0ms)
|
960
|
-
|
961
|
-
UserMailer#invite: processed outbound mail in 153.9ms
|
962
|
-
|
963
|
-
Sent mail to test@mail.com (7.4ms)
|
964
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
965
|
-
From: test@mail.com
|
966
|
-
To: test@mail.com
|
967
|
-
Message-ID: <584ce40b99b38_36633fefbc43f9f4617d7@imac-de-matt.mail>
|
968
|
-
Subject: Invite
|
969
|
-
Mime-Version: 1.0
|
970
|
-
Content-Type: text/plain;
|
971
|
-
charset=UTF-8
|
972
|
-
Content-Transfer-Encoding: 7bit
|
973
|
-
|
974
|
-
Test
|
975
|
-
|
976
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
977
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.632262"], ["updated_at", "2016-12-11 05:28:43.633125"], ["id", 674]]
|
978
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
979
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
980
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.634855"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.635457"], ["id", 675]]
|
981
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
982
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
983
|
-
|
984
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
985
|
-
|
986
|
-
Sent mail to test@mail.com (1.1ms)
|
987
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
988
|
-
From: test@mail.com
|
989
|
-
To: test@mail.com
|
990
|
-
Message-ID: <584ce40b9be5a_36633fefbc43f9f46184e@imac-de-matt.mail>
|
991
|
-
Subject: Invite
|
992
|
-
Mime-Version: 1.0
|
993
|
-
Content-Type: text/plain;
|
994
|
-
charset=UTF-8
|
995
|
-
Content-Transfer-Encoding: 7bit
|
996
|
-
|
997
|
-
Test
|
998
|
-
|
999
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1000
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.639209"], ["updated_at", "2016-12-11 05:28:43.639990"], ["id", 675]]
|
1001
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1002
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1003
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.641563"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.642165"], ["id", 676]]
|
1004
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1005
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1006
|
-
|
1007
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1008
|
-
|
1009
|
-
Sent mail to test@mail.com (1.3ms)
|
1010
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1011
|
-
From: test@mail.com
|
1012
|
-
To: test@mail.com
|
1013
|
-
Message-ID: <584ce40b9d8ca_36633fefbc43f9f4619e0@imac-de-matt.mail>
|
1014
|
-
Subject: Invite
|
1015
|
-
Mime-Version: 1.0
|
1016
|
-
Content-Type: text/plain;
|
1017
|
-
charset=UTF-8
|
1018
|
-
Content-Transfer-Encoding: 7bit
|
1019
|
-
|
1020
|
-
Test
|
1021
|
-
|
1022
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1023
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.646076"], ["updated_at", "2016-12-11 05:28:43.646691"], ["id", 676]]
|
1024
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1025
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1026
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.648154"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.648776"], ["id", 677]]
|
1027
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1028
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1029
|
-
|
1030
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1031
|
-
|
1032
|
-
Sent mail to test@mail.com (1.2ms)
|
1033
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1034
|
-
From: test@mail.com
|
1035
|
-
To: test@mail.com
|
1036
|
-
Message-ID: <584ce40b9f22a_36633fefbc43f9f462087@imac-de-matt.mail>
|
1037
|
-
Subject: Invite
|
1038
|
-
Mime-Version: 1.0
|
1039
|
-
Content-Type: text/plain;
|
1040
|
-
charset=UTF-8
|
1041
|
-
Content-Transfer-Encoding: 7bit
|
1042
|
-
|
1043
|
-
Test
|
1044
|
-
|
1045
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1046
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.652524"], ["updated_at", "2016-12-11 05:28:43.653097"], ["id", 677]]
|
1047
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1048
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1049
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.654456"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.655065"], ["id", 678]]
|
1050
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1051
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1052
|
-
|
1053
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1054
|
-
|
1055
|
-
Sent mail to test@mail.com (1.3ms)
|
1056
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1057
|
-
From: test@mail.com
|
1058
|
-
To: test@mail.com
|
1059
|
-
Message-ID: <584ce40ba0ad4_36633fefbc43f9f46214e@imac-de-matt.mail>
|
1060
|
-
Subject: Invite
|
1061
|
-
Mime-Version: 1.0
|
1062
|
-
Content-Type: text/plain;
|
1063
|
-
charset=UTF-8
|
1064
|
-
Content-Transfer-Encoding: 7bit
|
1065
|
-
|
1066
|
-
Test
|
1067
|
-
|
1068
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1069
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.658846"], ["updated_at", "2016-12-11 05:28:43.659477"], ["id", 678]]
|
1070
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1071
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1072
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.660820"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.661447"], ["id", 679]]
|
1073
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1074
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1075
|
-
|
1076
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1077
|
-
|
1078
|
-
Sent mail to test@mail.com (1.1ms)
|
1079
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1080
|
-
From: test@mail.com
|
1081
|
-
To: test@mail.com
|
1082
|
-
Message-ID: <584ce40ba2314_36633fefbc43f9f462278@imac-de-matt.mail>
|
1083
|
-
Subject: Invite
|
1084
|
-
Mime-Version: 1.0
|
1085
|
-
Content-Type: text/plain;
|
1086
|
-
charset=UTF-8
|
1087
|
-
Content-Transfer-Encoding: 7bit
|
1088
|
-
|
1089
|
-
Test
|
1090
|
-
|
1091
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1092
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.665021"], ["updated_at", "2016-12-11 05:28:43.665682"], ["id", 679]]
|
1093
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1094
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1095
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.667043"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.667644"], ["id", 680]]
|
1096
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1097
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1098
|
-
|
1099
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1100
|
-
|
1101
|
-
Sent mail to test@mail.com (1.1ms)
|
1102
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1103
|
-
From: test@mail.com
|
1104
|
-
To: test@mail.com
|
1105
|
-
Message-ID: <584ce40ba3b29_36633fefbc43f9f462372@imac-de-matt.mail>
|
1106
|
-
Subject: Invite
|
1107
|
-
Mime-Version: 1.0
|
1108
|
-
Content-Type: text/plain;
|
1109
|
-
charset=UTF-8
|
1110
|
-
Content-Transfer-Encoding: 7bit
|
1111
|
-
|
1112
|
-
Test
|
1113
|
-
|
1114
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1115
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.671203"], ["updated_at", "2016-12-11 05:28:43.671853"], ["id", 680]]
|
1116
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1117
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1118
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.673156"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.673795"], ["id", 681]]
|
1119
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1120
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1121
|
-
|
1122
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1123
|
-
|
1124
|
-
Sent mail to test@mail.com (1.1ms)
|
1125
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1126
|
-
From: test@mail.com
|
1127
|
-
To: test@mail.com
|
1128
|
-
Message-ID: <584ce40ba530d_36633fefbc43f9f4624d3@imac-de-matt.mail>
|
1129
|
-
Subject: Invite
|
1130
|
-
Mime-Version: 1.0
|
1131
|
-
Content-Type: text/plain;
|
1132
|
-
charset=UTF-8
|
1133
|
-
Content-Transfer-Encoding: 7bit
|
1134
|
-
|
1135
|
-
Test
|
1136
|
-
|
1137
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1138
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.677296"], ["updated_at", "2016-12-11 05:28:43.677867"], ["id", 681]]
|
1139
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1140
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1141
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.679059"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.679612"], ["id", 682]]
|
1142
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1143
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1144
|
-
|
1145
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1146
|
-
|
1147
|
-
Sent mail to test@mail.com (1.0ms)
|
1148
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1149
|
-
From: test@mail.com
|
1150
|
-
To: test@mail.com
|
1151
|
-
Message-ID: <584ce40ba6911_36633fefbc43f9f462594@imac-de-matt.mail>
|
1152
|
-
Subject: Invite
|
1153
|
-
Mime-Version: 1.0
|
1154
|
-
Content-Type: text/plain;
|
1155
|
-
charset=UTF-8
|
1156
|
-
Content-Transfer-Encoding: 7bit
|
1157
|
-
|
1158
|
-
Test
|
1159
|
-
|
1160
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1161
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.682892"], ["updated_at", "2016-12-11 05:28:43.683508"], ["id", 682]]
|
1162
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1163
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1164
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.684797"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.685373"], ["id", 683]]
|
1165
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1166
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1167
|
-
|
1168
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1169
|
-
|
1170
|
-
Sent mail to test@mail.com (1.0ms)
|
1171
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1172
|
-
From: test@mail.com
|
1173
|
-
To: test@mail.com
|
1174
|
-
Message-ID: <584ce40ba7fa2_36633fefbc43f9f4626fa@imac-de-matt.mail>
|
1175
|
-
Subject: Invite
|
1176
|
-
Mime-Version: 1.0
|
1177
|
-
Content-Type: text/plain;
|
1178
|
-
charset=UTF-8
|
1179
|
-
Content-Transfer-Encoding: 7bit
|
1180
|
-
|
1181
|
-
Test
|
1182
|
-
|
1183
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1184
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.688661"], ["updated_at", "2016-12-11 05:28:43.689283"], ["id", 683]]
|
1185
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1186
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1187
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.690543"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.691085"], ["id", 684]]
|
1188
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1189
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1190
|
-
|
1191
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1192
|
-
|
1193
|
-
Sent mail to test@mail.com (1.0ms)
|
1194
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1195
|
-
From: test@mail.com
|
1196
|
-
To: test@mail.com
|
1197
|
-
Message-ID: <584ce40ba958f_36633fefbc43f9f462718@imac-de-matt.mail>
|
1198
|
-
Subject: Invite
|
1199
|
-
Mime-Version: 1.0
|
1200
|
-
Content-Type: text/plain;
|
1201
|
-
charset=UTF-8
|
1202
|
-
Content-Transfer-Encoding: 7bit
|
1203
|
-
|
1204
|
-
Test
|
1205
|
-
|
1206
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1207
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.694254"], ["updated_at", "2016-12-11 05:28:43.694844"], ["id", 684]]
|
1208
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1209
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1210
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.696039"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.696620"], ["id", 685]]
|
1211
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1212
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1213
|
-
|
1214
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1215
|
-
|
1216
|
-
Sent mail to test@mail.com (1.0ms)
|
1217
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1218
|
-
From: test@mail.com
|
1219
|
-
To: test@mail.com
|
1220
|
-
Message-ID: <584ce40baabc5_36633fefbc43f9f4628c3@imac-de-matt.mail>
|
1221
|
-
Subject: Invite
|
1222
|
-
Mime-Version: 1.0
|
1223
|
-
Content-Type: text/plain;
|
1224
|
-
charset=UTF-8
|
1225
|
-
Content-Transfer-Encoding: 7bit
|
1226
|
-
|
1227
|
-
Test
|
1228
|
-
|
1229
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1230
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.699992"], ["updated_at", "2016-12-11 05:28:43.700620"], ["id", 685]]
|
1231
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1232
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1233
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.701901"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.702448"], ["id", 686]]
|
1234
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1235
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1236
|
-
|
1237
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1238
|
-
|
1239
|
-
Sent mail to test@mail.com (1.0ms)
|
1240
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1241
|
-
From: test@mail.com
|
1242
|
-
To: test@mail.com
|
1243
|
-
Message-ID: <584ce40bac225_36633fefbc43f9f4629e9@imac-de-matt.mail>
|
1244
|
-
Subject: Invite
|
1245
|
-
Mime-Version: 1.0
|
1246
|
-
Content-Type: text/plain;
|
1247
|
-
charset=UTF-8
|
1248
|
-
Content-Transfer-Encoding: 7bit
|
1249
|
-
|
1250
|
-
Test
|
1251
|
-
|
1252
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1253
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.705684"], ["updated_at", "2016-12-11 05:28:43.706248"], ["id", 686]]
|
1254
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1255
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1256
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.707425"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.707976"], ["id", 687]]
|
1257
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1258
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1259
|
-
|
1260
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1261
|
-
|
1262
|
-
Sent mail to test@mail.com (1.0ms)
|
1263
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1264
|
-
From: test@mail.com
|
1265
|
-
To: test@mail.com
|
1266
|
-
Message-ID: <584ce40bad787_36633fefbc43f9f4630c8@imac-de-matt.mail>
|
1267
|
-
Subject: Invite
|
1268
|
-
Mime-Version: 1.0
|
1269
|
-
Content-Type: text/plain;
|
1270
|
-
charset=UTF-8
|
1271
|
-
Content-Transfer-Encoding: 7bit
|
1272
|
-
|
1273
|
-
Test
|
1274
|
-
|
1275
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1276
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.711142"], ["updated_at", "2016-12-11 05:28:43.711671"], ["id", 687]]
|
1277
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1278
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1279
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.712912"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.713497"], ["id", 688]]
|
1280
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1281
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1282
|
-
|
1283
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1284
|
-
|
1285
|
-
Sent mail to test@mail.com (1.0ms)
|
1286
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1287
|
-
From: test@mail.com
|
1288
|
-
To: test@mail.com
|
1289
|
-
Message-ID: <584ce40baed3c_36633fefbc43f9f463158@imac-de-matt.mail>
|
1290
|
-
Subject: Invite
|
1291
|
-
Mime-Version: 1.0
|
1292
|
-
Content-Type: text/plain;
|
1293
|
-
charset=UTF-8
|
1294
|
-
Content-Transfer-Encoding: 7bit
|
1295
|
-
|
1296
|
-
Test
|
1297
|
-
|
1298
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1299
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.716705"], ["updated_at", "2016-12-11 05:28:43.717233"], ["id", 688]]
|
1300
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1301
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1302
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.718375"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.718920"], ["id", 689]]
|
1303
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1304
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1305
|
-
|
1306
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1307
|
-
|
1308
|
-
Sent mail to test@mail.com (1.1ms)
|
1309
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1310
|
-
From: test@mail.com
|
1311
|
-
To: test@mail.com
|
1312
|
-
Message-ID: <584ce40bb0216_36633fefbc43f9f46325c@imac-de-matt.mail>
|
1313
|
-
Subject: Invite
|
1314
|
-
Mime-Version: 1.0
|
1315
|
-
Content-Type: text/plain;
|
1316
|
-
charset=UTF-8
|
1317
|
-
Content-Transfer-Encoding: 7bit
|
1318
|
-
|
1319
|
-
Test
|
1320
|
-
|
1321
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1322
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.722063"], ["updated_at", "2016-12-11 05:28:43.722580"], ["id", 689]]
|
1323
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1324
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1325
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.723756"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.724310"], ["id", 690]]
|
1326
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1327
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1328
|
-
|
1329
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1330
|
-
|
1331
|
-
Sent mail to test@mail.com (1.1ms)
|
1332
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1333
|
-
From: test@mail.com
|
1334
|
-
To: test@mail.com
|
1335
|
-
Message-ID: <584ce40bb18c6_36633fefbc43f9f4633d0@imac-de-matt.mail>
|
1336
|
-
Subject: Invite
|
1337
|
-
Mime-Version: 1.0
|
1338
|
-
Content-Type: text/plain;
|
1339
|
-
charset=UTF-8
|
1340
|
-
Content-Transfer-Encoding: 7bit
|
1341
|
-
|
1342
|
-
Test
|
1343
|
-
|
1344
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1345
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.727911"], ["updated_at", "2016-12-11 05:28:43.728552"], ["id", 690]]
|
1346
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1347
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1348
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.729772"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.730334"], ["id", 691]]
|
1349
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1350
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1351
|
-
|
1352
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1353
|
-
|
1354
|
-
Sent mail to test@mail.com (1.1ms)
|
1355
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1356
|
-
From: test@mail.com
|
1357
|
-
To: test@mail.com
|
1358
|
-
Message-ID: <584ce40bb2f61_36633fefbc43f9f46341d@imac-de-matt.mail>
|
1359
|
-
Subject: Invite
|
1360
|
-
Mime-Version: 1.0
|
1361
|
-
Content-Type: text/plain;
|
1362
|
-
charset=UTF-8
|
1363
|
-
Content-Transfer-Encoding: 7bit
|
1364
|
-
|
1365
|
-
Test
|
1366
|
-
|
1367
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1368
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.733681"], ["updated_at", "2016-12-11 05:28:43.734235"], ["id", 691]]
|
1369
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1370
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1371
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.735400"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.736004"], ["id", 692]]
|
1372
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1373
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1374
|
-
|
1375
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1376
|
-
|
1377
|
-
Sent mail to test@mail.com (1.1ms)
|
1378
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1379
|
-
From: test@mail.com
|
1380
|
-
To: test@mail.com
|
1381
|
-
Message-ID: <584ce40bb453e_36633fefbc43f9f46356d@imac-de-matt.mail>
|
1382
|
-
Subject: Invite
|
1383
|
-
Mime-Version: 1.0
|
1384
|
-
Content-Type: text/plain;
|
1385
|
-
charset=UTF-8
|
1386
|
-
Content-Transfer-Encoding: 7bit
|
1387
|
-
|
1388
|
-
Test
|
1389
|
-
|
1390
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1391
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.739305"], ["updated_at", "2016-12-11 05:28:43.739837"], ["id", 692]]
|
1392
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1393
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1394
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.740986"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.741556"], ["id", 693]]
|
1395
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1396
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1397
|
-
|
1398
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1399
|
-
|
1400
|
-
Sent mail to test@mail.com (1.2ms)
|
1401
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1402
|
-
From: test@mail.com
|
1403
|
-
To: test@mail.com
|
1404
|
-
Message-ID: <584ce40bb5acb_36633fefbc43f9f4636d7@imac-de-matt.mail>
|
1405
|
-
Subject: Invite
|
1406
|
-
Mime-Version: 1.0
|
1407
|
-
Content-Type: text/plain;
|
1408
|
-
charset=UTF-8
|
1409
|
-
Content-Transfer-Encoding: 7bit
|
1410
|
-
|
1411
|
-
Test
|
1412
|
-
|
1413
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1414
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.744856"], ["updated_at", "2016-12-11 05:28:43.745391"], ["id", 693]]
|
1415
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1416
|
-
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "complete"]]
|
1417
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "processing"]]
|
1418
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "pending"]]
|
1419
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
1420
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1421
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.749571"], ["updated_at", "2016-12-11 05:28:43.750414"], ["id", 697]]
|
1422
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1423
|
-
[1m[35mSidejobs::Job Load (0.4ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:43.752089' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
1424
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1425
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.752939"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.753532"], ["id", 694]]
|
1426
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1427
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1428
|
-
|
1429
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1430
|
-
|
1431
|
-
Sent mail to test@mail.com (1.2ms)
|
1432
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1433
|
-
From: test@mail.com
|
1434
|
-
To: test@mail.com
|
1435
|
-
Message-ID: <584ce40bb8ae3_36633fefbc43f9f463740@imac-de-matt.mail>
|
1436
|
-
Subject: Invite
|
1437
|
-
Mime-Version: 1.0
|
1438
|
-
Content-Type: text/plain;
|
1439
|
-
charset=UTF-8
|
1440
|
-
Content-Transfer-Encoding: 7bit
|
1441
|
-
|
1442
|
-
Test
|
1443
|
-
|
1444
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1445
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.757139"], ["updated_at", "2016-12-11 05:28:43.757695"], ["id", 694]]
|
1446
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1447
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1448
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.758937"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.759531"], ["id", 695]]
|
1449
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1450
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1451
|
-
|
1452
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1453
|
-
|
1454
|
-
Sent mail to test@mail.com (1.1ms)
|
1455
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1456
|
-
From: test@mail.com
|
1457
|
-
To: test@mail.com
|
1458
|
-
Message-ID: <584ce40bba127_36633fefbc43f9f4638c6@imac-de-matt.mail>
|
1459
|
-
Subject: Invite
|
1460
|
-
Mime-Version: 1.0
|
1461
|
-
Content-Type: text/plain;
|
1462
|
-
charset=UTF-8
|
1463
|
-
Content-Transfer-Encoding: 7bit
|
1464
|
-
|
1465
|
-
Test
|
1466
|
-
|
1467
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1468
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.762786"], ["updated_at", "2016-12-11 05:28:43.763320"], ["id", 695]]
|
1469
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1470
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1471
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.764549"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.765116"], ["id", 696]]
|
1472
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1473
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1474
|
-
|
1475
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1476
|
-
|
1477
|
-
Sent mail to test@mail.com (1.1ms)
|
1478
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1479
|
-
From: test@mail.com
|
1480
|
-
To: test@mail.com
|
1481
|
-
Message-ID: <584ce40bbb73a_36633fefbc43f9f463921@imac-de-matt.mail>
|
1482
|
-
Subject: Invite
|
1483
|
-
Mime-Version: 1.0
|
1484
|
-
Content-Type: text/plain;
|
1485
|
-
charset=UTF-8
|
1486
|
-
Content-Transfer-Encoding: 7bit
|
1487
|
-
|
1488
|
-
Test
|
1489
|
-
|
1490
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1491
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.768457"], ["updated_at", "2016-12-11 05:28:43.768978"], ["id", 696]]
|
1492
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1493
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "complete"]]
|
1494
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "processing"]]
|
1495
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "pending"]]
|
1496
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
1497
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1498
|
-
---------------------------
|
1499
|
-
ProcessorTest: test_retries
|
1500
|
-
---------------------------
|
1501
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1502
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ShareProductsJob\",\"job_id\":\"31245125-e0f6-44d6-a511-9218231e0f24\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-12-11 05:28:43.773911"], ["updated_at", "2016-12-11 05:28:43.773911"]]
|
1503
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1504
|
-
[ActiveJob] Enqueued ShareProductsJob (Job ID: 31245125-e0f6-44d6-a511-9218231e0f24) to Sidejobs(default)
|
1505
|
-
[1m[36mSidejobs::Job Load (0.4ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:43.775478' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
1506
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1507
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.776530"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.777224"], ["id", 698]]
|
1508
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1509
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1510
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "error" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "failing"], ["failed_at", "2016-12-11 05:28:43.778860"], ["error", "Social network unavailable"], ["updated_at", "2016-12-11 05:28:43.779424"], ["id", 698]]
|
1511
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1512
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:43.780785' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
1513
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1514
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.781501"], ["attempts", 2], ["updated_at", "2016-12-11 05:28:43.782143"], ["id", 698]]
|
1515
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1516
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1517
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "failing"], ["failed_at", "2016-12-11 05:28:43.783408"], ["updated_at", "2016-12-11 05:28:43.783895"], ["id", 698]]
|
1518
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1519
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:43.785245' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
1520
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1521
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.785983"], ["attempts", 3], ["updated_at", "2016-12-11 05:28:43.786611"], ["id", 698]]
|
1522
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1523
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1524
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "failing"], ["failed_at", "2016-12-11 05:28:43.788074"], ["updated_at", "2016-12-11 05:28:43.788591"], ["id", 698]]
|
1525
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1526
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:43.789741' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
1527
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1528
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
1529
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1530
|
-
---------------------------
|
1531
|
-
ProcessorTest: test_process
|
1532
|
-
---------------------------
|
1533
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1534
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"15ca2775-6ca8-4d14-a470-fa0f3ea99336\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-11 05:28:43.792389"], ["updated_at", "2016-12-11 05:28:43.792389"]]
|
1535
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1536
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 15ca2775-6ca8-4d14-a470-fa0f3ea99336) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1537
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-11 05:28:43.793881' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
1538
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1539
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-11 05:28:43.794619"], ["attempts", 1], ["updated_at", "2016-12-11 05:28:43.795226"], ["id", 699]]
|
1540
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1541
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1542
|
-
|
1543
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
1544
|
-
|
1545
|
-
Sent mail to test@mail.com (1.2ms)
|
1546
|
-
Date: Sun, 11 Dec 2016 02:28:43 -0300
|
1547
|
-
From: test@mail.com
|
1548
|
-
To: test@mail.com
|
1549
|
-
Message-ID: <584ce40bc2e69_36633fefbc43f9f46404@imac-de-matt.mail>
|
1550
|
-
Subject: Invite
|
1551
|
-
Mime-Version: 1.0
|
1552
|
-
Content-Type: text/plain;
|
1553
|
-
charset=UTF-8
|
1554
|
-
Content-Transfer-Encoding: 7bit
|
1555
|
-
|
1556
|
-
Test
|
1557
|
-
|
1558
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1559
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-11 05:28:43.799008"], ["updated_at", "2016-12-11 05:28:43.799639"], ["id", 699]]
|
1560
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1561
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
1562
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1563
|
-
[1m[35m (0.1ms)[0m BEGIN
|
1564
|
-
----------------------------
|
1565
|
-
GeneratorsTest: test_install
|
1566
|
-
----------------------------
|
1567
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
1568
|
-
[1m[36m (13.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
1569
|
-
[1m[35m (23.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1570
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1571
|
-
Migrating to CreateSidejobs (20161022211612)
|
1572
|
-
[1m[35m (0.2ms)[0m BEGIN
|
1573
|
-
[1m[36m (14.2ms)[0m [1mCREATE TABLE "sidejobs" ("id" serial primary key, "data" jsonb, "queue" character varying, "status" character varying DEFAULT 'pending', "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "error" text, "failed_at" timestamp, "completed_at" timestamp, "processed_at" timestamp, "scheduled_at" timestamp, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
1574
|
-
[1m[35m (6.8ms)[0m CREATE INDEX "index_sidejobs_on_status_and_scheduled_at" ON "sidejobs" ("status", "scheduled_at")
|
1575
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_sidejobs_on_priority" ON "sidejobs" ("priority")[0m
|
1576
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20161022211612"]]
|
1577
|
-
[1m[36m (6.4ms)[0m [1mCOMMIT[0m
|
1578
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1579
|
-
[1m[36m (1.8ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
1580
|
-
FROM pg_constraint c
|
1581
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
1582
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
1583
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
1584
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
1585
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
1586
|
-
WHERE c.contype = 'f'
|
1587
|
-
AND t1.relname = 'sidejobs'
|
1588
|
-
AND t3.nspname = ANY (current_schemas(false))
|
1589
|
-
ORDER BY c.conname
|
1590
|
-
[0m
|
1591
|
-
[1m[36m (167.3ms)[0m [1mDROP DATABASE IF EXISTS "sidejobs_test"[0m
|
1592
|
-
[1m[35m (368.8ms)[0m CREATE DATABASE "sidejobs_test" ENCODING = 'utf8'
|
1593
|
-
[1m[36mSQL (0.4ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
1594
|
-
[1m[35m (4.4ms)[0m CREATE TABLE "sidejobs" ("id" serial primary key, "data" jsonb, "queue" character varying, "status" character varying DEFAULT 'pending', "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "error" text, "failed_at" timestamp, "completed_at" timestamp, "processed_at" timestamp, "scheduled_at" timestamp, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
1595
|
-
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_sidejobs_on_priority" ON "sidejobs" USING btree ("priority")[0m
|
1596
|
-
[1m[35m (1.1ms)[0m CREATE INDEX "index_sidejobs_on_status_and_scheduled_at" ON "sidejobs" USING btree ("status", "scheduled_at")
|
1597
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
1598
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1599
|
-
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1600
|
-
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161022211612')
|
1601
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1602
|
-
[1m[35m (0.2ms)[0m BEGIN
|
1603
|
-
------------------------
|
1604
|
-
DaemonTest: test_process
|
1605
|
-
------------------------
|
1606
|
-
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1607
|
-
------------------------
|
1608
|
-
DaemonTest: test_pulling
|
1609
|
-
------------------------
|
1610
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
1611
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1612
|
-
-------------------------
|
1613
|
-
ProcessorTest: test_batch
|
1614
|
-
-------------------------
|
1615
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
1616
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1617
|
-
---------------------------
|
1618
|
-
ProcessorTest: test_process
|
1619
|
-
---------------------------
|
1620
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [9588d0a6-4cbd-4435-82d3-0ce740c3f012] Performing ActionMailer::DeliveryJob from Inline(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1621
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [9588d0a6-4cbd-4435-82d3-0ce740c3f012] Rendered user_mailer/invite.text.erb (1.1ms)
|
1622
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [9588d0a6-4cbd-4435-82d3-0ce740c3f012]
|
1623
|
-
UserMailer#invite: processed outbound mail in 159.5ms
|
1624
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [9588d0a6-4cbd-4435-82d3-0ce740c3f012]
|
1625
|
-
Sent mail to test@mail.com (6.9ms)
|
1626
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [9588d0a6-4cbd-4435-82d3-0ce740c3f012] Date: Tue, 13 Dec 2016 17:23:19 -0300
|
1627
|
-
From: test@mail.com
|
1628
|
-
To: test@mail.com
|
1629
|
-
Message-ID: <585058b7a156a_103173fcbfc43fa14809c2@imac-de-matt.mail>
|
1630
|
-
Subject: Invite
|
1631
|
-
Mime-Version: 1.0
|
1632
|
-
Content-Type: text/plain;
|
1633
|
-
charset=UTF-8
|
1634
|
-
Content-Transfer-Encoding: 7bit
|
1635
|
-
|
1636
|
-
Test
|
1637
|
-
|
1638
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [9588d0a6-4cbd-4435-82d3-0ce740c3f012] Performed ActionMailer::DeliveryJob from Inline(mailers) in 171.6ms
|
1639
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 9588d0a6-4cbd-4435-82d3-0ce740c3f012) to Inline(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1640
|
-
[1m[35mSidejobs::Job Load (1.1ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:23:19.667757' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
1641
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1642
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
1643
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1644
|
-
---------------------------
|
1645
|
-
ProcessorTest: test_retries
|
1646
|
-
---------------------------
|
1647
|
-
[ActiveJob] [ShareProductsJob] [d7bcb85f-4984-41ac-83ed-f07bfac02f12] Performing ShareProductsJob from Inline(default)
|
1648
|
-
[ActiveJob] [ShareProductsJob] [d7bcb85f-4984-41ac-83ed-f07bfac02f12] Performed ShareProductsJob from Inline(default) in 0.19ms
|
1649
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
1650
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1651
|
-
----------------------------
|
1652
|
-
GeneratorsTest: test_install
|
1653
|
-
----------------------------
|
1654
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
1655
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1656
|
-
-----------------------
|
1657
|
-
QueueTest: test_enqueue
|
1658
|
-
-----------------------
|
1659
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [489f871a-9b19-4d2a-a6ae-ca6e92ac9a13] Performing ActionMailer::DeliveryJob from Inline(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1660
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [489f871a-9b19-4d2a-a6ae-ca6e92ac9a13] Rendered user_mailer/invite.text.erb (0.0ms)
|
1661
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [489f871a-9b19-4d2a-a6ae-ca6e92ac9a13]
|
1662
|
-
UserMailer#invite: processed outbound mail in 0.9ms
|
1663
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [489f871a-9b19-4d2a-a6ae-ca6e92ac9a13]
|
1664
|
-
Sent mail to test@mail.com (1.3ms)
|
1665
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [489f871a-9b19-4d2a-a6ae-ca6e92ac9a13] Date: Tue, 13 Dec 2016 17:23:19 -0300
|
1666
|
-
From: test@mail.com
|
1667
|
-
To: test@mail.com
|
1668
|
-
Message-ID: <585058b7a7b12_103173fcbfc43fa14810c4@imac-de-matt.mail>
|
1669
|
-
Subject: Invite
|
1670
|
-
Mime-Version: 1.0
|
1671
|
-
Content-Type: text/plain;
|
1672
|
-
charset=UTF-8
|
1673
|
-
Content-Transfer-Encoding: 7bit
|
1674
|
-
|
1675
|
-
Test
|
1676
|
-
|
1677
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [489f871a-9b19-4d2a-a6ae-ca6e92ac9a13] Performed ActionMailer::DeliveryJob from Inline(mailers) in 2.47ms
|
1678
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 489f871a-9b19-4d2a-a6ae-ca6e92ac9a13) to Inline(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1679
|
-
[1m[35mSidejobs::Job Load (0.4ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
1680
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
1681
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1682
|
-
[1m[35m (0.2ms)[0m BEGIN
|
1683
|
-
------------------------
|
1684
|
-
DaemonTest: test_process
|
1685
|
-
------------------------
|
1686
|
-
[1m[36mSidejobs::Job Load (1.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:24:04.158159' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
1687
|
-
[1m[36mSidejobs::Job Load (1.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:24:08.196338' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
1688
|
-
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
1689
|
-
------------------------
|
1690
|
-
DaemonTest: test_pulling
|
1691
|
-
------------------------
|
1692
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
1693
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1694
|
-
-----------------------
|
1695
|
-
QueueTest: test_enqueue
|
1696
|
-
-----------------------
|
1697
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1698
|
-
[ActiveJob] [1m[36mSQL (0.7ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"c423a886-5aa8-4c1b-95ae-5b3988443b51\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.197425"], ["updated_at", "2016-12-13 20:24:28.197425"]]
|
1699
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1700
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: c423a886-5aa8-4c1b-95ae-5b3988443b51) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1701
|
-
[1m[36mSidejobs::Job Load (0.5ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1702
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1703
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"7fe5a591-9a9d-4a5a-8c3b-3606dc599814\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["created_at", "2016-12-13 20:24:28.206063"], ["updated_at", "2016-12-13 20:24:28.206063"]]
|
1704
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1705
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: 7fe5a591-9a9d-4a5a-8c3b-3606dc599814) to Sidejobs(high_priority)
|
1706
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1707
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1708
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"c7b95b1d-cf00-4db7-8467-dcada2412b5a\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-12-13 20:24:28.209963"], ["updated_at", "2016-12-13 20:24:28.209963"]]
|
1709
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1710
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: c7b95b1d-cf00-4db7-8467-dcada2412b5a) to Sidejobs(default)
|
1711
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1712
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1713
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"51813574-8ae0-459c-becd-c38b544179c8\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["created_at", "2016-12-13 20:24:28.214123"], ["updated_at", "2016-12-13 20:24:28.214123"]]
|
1714
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1715
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: 51813574-8ae0-459c-becd-c38b544179c8) to Sidejobs(low_priority)
|
1716
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1717
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1718
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"7030e029-5966-4159-8724-b656963e7831\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["created_at", "2016-12-13 20:24:28.223048"], ["updated_at", "2016-12-13 20:24:28.223048"]]
|
1719
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1720
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: 7030e029-5966-4159-8724-b656963e7831) to Sidejobs(other)
|
1721
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1722
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1723
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"753aba9b-a575-4c1f-9c4d-3162e7fe3564\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["scheduled_at", "2016-12-14 06:24:28.225541"], ["created_at", "2016-12-13 20:24:28.226395"], ["updated_at", "2016-12-13 20:24:28.226395"]]
|
1724
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1725
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 753aba9b-a575-4c1f-9c4d-3162e7fe3564) to Sidejobs(mailers) at 2016-12-14 06:24:28 UTC with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1726
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1727
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1728
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"e0e35491-9424-4e6a-bab1-bbd46794c259\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["scheduled_at", "2016-12-14 06:24:28.225541"], ["created_at", "2016-12-13 20:24:28.229297"], ["updated_at", "2016-12-13 20:24:28.229297"]]
|
1729
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1730
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: e0e35491-9424-4e6a-bab1-bbd46794c259) to Sidejobs(high_priority) at 2016-12-14 06:24:28 UTC
|
1731
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1732
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1733
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"c9f1d9b9-34e0-47e6-9c61-166d373b0d4f\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["scheduled_at", "2016-12-14 06:24:28.225541"], ["created_at", "2016-12-13 20:24:28.232092"], ["updated_at", "2016-12-13 20:24:28.232092"]]
|
1734
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1735
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: c9f1d9b9-34e0-47e6-9c61-166d373b0d4f) to Sidejobs(default) at 2016-12-14 06:24:28 UTC
|
1736
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1737
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1738
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"91804713-9d59-4ab4-9734-8ca8d72711c1\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["scheduled_at", "2016-12-14 06:24:28.225541"], ["created_at", "2016-12-13 20:24:28.234816"], ["updated_at", "2016-12-13 20:24:28.234816"]]
|
1739
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1740
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: 91804713-9d59-4ab4-9734-8ca8d72711c1) to Sidejobs(low_priority) at 2016-12-14 06:24:28 UTC
|
1741
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1742
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1743
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"68f02b80-31a0-4f83-9336-70bdfba07f09\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["scheduled_at", "2016-12-14 06:24:28.225541"], ["created_at", "2016-12-13 20:24:28.237507"], ["updated_at", "2016-12-13 20:24:28.237507"]]
|
1744
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1745
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: 68f02b80-31a0-4f83-9336-70bdfba07f09) to Sidejobs(other) at 2016-12-14 06:24:28 UTC
|
1746
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
1747
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
1748
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1749
|
-
----------------------------
|
1750
|
-
GeneratorsTest: test_install
|
1751
|
-
----------------------------
|
1752
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
1753
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
1754
|
-
-------------------------
|
1755
|
-
ProcessorTest: test_batch
|
1756
|
-
-------------------------
|
1757
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1758
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"e36ae247-7725-4c13-9f67-3f2b012de651\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.246258"], ["updated_at", "2016-12-13 20:24:28.246258"]]
|
1759
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1760
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: e36ae247-7725-4c13-9f67-3f2b012de651) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1761
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1762
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"92e643ed-7f63-48be-b77a-0d7a3f36e4a7\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.248630"], ["updated_at", "2016-12-13 20:24:28.248630"]]
|
1763
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1764
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 92e643ed-7f63-48be-b77a-0d7a3f36e4a7) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1765
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1766
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"76cbf4c5-4991-4b63-b8ed-bf8ce2c8ac45\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.251147"], ["updated_at", "2016-12-13 20:24:28.251147"]]
|
1767
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1768
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 76cbf4c5-4991-4b63-b8ed-bf8ce2c8ac45) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1769
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1770
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"eece3fd9-dfaa-4ad8-9aa1-4e8f5c5e27ec\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.253808"], ["updated_at", "2016-12-13 20:24:28.253808"]]
|
1771
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1772
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: eece3fd9-dfaa-4ad8-9aa1-4e8f5c5e27ec) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1773
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1774
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"b6c9dbc8-253d-498d-a366-a078ba6fa567\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.256526"], ["updated_at", "2016-12-13 20:24:28.256526"]]
|
1775
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1776
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: b6c9dbc8-253d-498d-a366-a078ba6fa567) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1777
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1778
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"3e161bb2-e2ee-411b-8889-807d8237aca5\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.259666"], ["updated_at", "2016-12-13 20:24:28.259666"]]
|
1779
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1780
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 3e161bb2-e2ee-411b-8889-807d8237aca5) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1781
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1782
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"1bdd02bf-1cb5-4154-b528-26c207dbb52c\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.262444"], ["updated_at", "2016-12-13 20:24:28.262444"]]
|
1783
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1784
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 1bdd02bf-1cb5-4154-b528-26c207dbb52c) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1785
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1786
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"0c65cfb1-d655-4b24-b1e8-33a88d4ac7a4\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.264782"], ["updated_at", "2016-12-13 20:24:28.264782"]]
|
1787
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1788
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 0c65cfb1-d655-4b24-b1e8-33a88d4ac7a4) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1789
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1790
|
-
[ActiveJob] [1m[36mSQL (0.5ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"3a60b713-4300-4ad7-b403-d48b2c33055d\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.267615"], ["updated_at", "2016-12-13 20:24:28.267615"]]
|
1791
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1792
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 3a60b713-4300-4ad7-b403-d48b2c33055d) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1793
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1794
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"9d5af0f5-404d-47d8-9db7-0f572a996d58\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.270971"], ["updated_at", "2016-12-13 20:24:28.270971"]]
|
1795
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1796
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 9d5af0f5-404d-47d8-9db7-0f572a996d58) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1797
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1798
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"98fc1211-3b39-460e-806c-0d6443cf8f8c\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.273492"], ["updated_at", "2016-12-13 20:24:28.273492"]]
|
1799
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1800
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 98fc1211-3b39-460e-806c-0d6443cf8f8c) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1801
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1802
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"d35f7f3d-8550-49c6-b8e2-40c29233c77f\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.275933"], ["updated_at", "2016-12-13 20:24:28.275933"]]
|
1803
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1804
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: d35f7f3d-8550-49c6-b8e2-40c29233c77f) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1805
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1806
|
-
[ActiveJob] [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"aa1eb8d3-c4b6-43f9-bf57-ce198d7f6ada\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.278249"], ["updated_at", "2016-12-13 20:24:28.278249"]]
|
1807
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1808
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: aa1eb8d3-c4b6-43f9-bf57-ce198d7f6ada) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1809
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1810
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"a0a97263-2dd5-4192-8c34-047408403b6a\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.280138"], ["updated_at", "2016-12-13 20:24:28.280138"]]
|
1811
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1812
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: a0a97263-2dd5-4192-8c34-047408403b6a) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1813
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1814
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"f067ecf3-36aa-4a12-afc3-fb855e905ac5\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.282359"], ["updated_at", "2016-12-13 20:24:28.282359"]]
|
1815
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1816
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: f067ecf3-36aa-4a12-afc3-fb855e905ac5) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1817
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1818
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"40911424-a348-46f9-91ed-32a907b2aa2b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.284420"], ["updated_at", "2016-12-13 20:24:28.284420"]]
|
1819
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1820
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 40911424-a348-46f9-91ed-32a907b2aa2b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1821
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1822
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"aca17d46-92f9-49de-8d59-58844d3f84d9\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.286689"], ["updated_at", "2016-12-13 20:24:28.286689"]]
|
1823
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1824
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: aca17d46-92f9-49de-8d59-58844d3f84d9) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1825
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1826
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"daf62c33-01dd-447d-a647-23fc14b3036b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.289131"], ["updated_at", "2016-12-13 20:24:28.289131"]]
|
1827
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1828
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: daf62c33-01dd-447d-a647-23fc14b3036b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1829
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1830
|
-
[ActiveJob] [1m[36mSQL (0.4ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"b04c51b8-461e-4098-9403-c3ccf0d67f36\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.291187"], ["updated_at", "2016-12-13 20:24:28.291187"]]
|
1831
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1832
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: b04c51b8-461e-4098-9403-c3ccf0d67f36) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1833
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1834
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"d71c71c4-f3af-42e2-a620-1dd529de013d\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.293415"], ["updated_at", "2016-12-13 20:24:28.293415"]]
|
1835
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1836
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: d71c71c4-f3af-42e2-a620-1dd529de013d) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1837
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1838
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"ad4f9879-2920-4318-802d-0dc793a0b6f7\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.295631"], ["updated_at", "2016-12-13 20:24:28.295631"]]
|
1839
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1840
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: ad4f9879-2920-4318-802d-0dc793a0b6f7) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1841
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1842
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"ba189cb7-c8b6-4b47-97d7-48a3b1da057e\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.297667"], ["updated_at", "2016-12-13 20:24:28.297667"]]
|
1843
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1844
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: ba189cb7-c8b6-4b47-97d7-48a3b1da057e) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1845
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1846
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"3c3caa41-6c80-4e81-ab18-1ba9ce1173a5\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.299774"], ["updated_at", "2016-12-13 20:24:28.299774"]]
|
1847
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1848
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 3c3caa41-6c80-4e81-ab18-1ba9ce1173a5) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1849
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1850
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"2ad1b9d2-e2ad-436c-953f-6f8df84c635b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.301817"], ["updated_at", "2016-12-13 20:24:28.301817"]]
|
1851
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1852
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 2ad1b9d2-e2ad-436c-953f-6f8df84c635b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
1853
|
-
[1m[35mSidejobs::Job Load (0.8ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:24:28.305176' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
1854
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1855
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.306871"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.307605"], ["id", 11]]
|
1856
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1857
|
-
Rendered user_mailer/invite.text.erb (0.6ms)
|
1858
|
-
|
1859
|
-
UserMailer#invite: processed outbound mail in 127.2ms
|
1860
|
-
|
1861
|
-
Sent mail to test@mail.com (3.5ms)
|
1862
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
1863
|
-
From: test@mail.com
|
1864
|
-
To: test@mail.com
|
1865
|
-
Message-ID: <585058fc6c3c9_103433fcc2283f9f428353@imac-de-matt.mail>
|
1866
|
-
Subject: Invite
|
1867
|
-
Mime-Version: 1.0
|
1868
|
-
Content-Type: text/plain;
|
1869
|
-
charset=UTF-8
|
1870
|
-
Content-Transfer-Encoding: 7bit
|
1871
|
-
|
1872
|
-
Test
|
1873
|
-
|
1874
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1875
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.444877"], ["updated_at", "2016-12-13 20:24:28.445726"], ["id", 11]]
|
1876
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1877
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1878
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.447414"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.448006"], ["id", 12]]
|
1879
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1880
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1881
|
-
|
1882
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1883
|
-
|
1884
|
-
Sent mail to test@mail.com (1.3ms)
|
1885
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
1886
|
-
From: test@mail.com
|
1887
|
-
To: test@mail.com
|
1888
|
-
Message-ID: <585058fc6e1b2_103433fcc2283f9f42843f@imac-de-matt.mail>
|
1889
|
-
Subject: Invite
|
1890
|
-
Mime-Version: 1.0
|
1891
|
-
Content-Type: text/plain;
|
1892
|
-
charset=UTF-8
|
1893
|
-
Content-Transfer-Encoding: 7bit
|
1894
|
-
|
1895
|
-
Test
|
1896
|
-
|
1897
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1898
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.451877"], ["updated_at", "2016-12-13 20:24:28.452549"], ["id", 12]]
|
1899
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1900
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1901
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.453839"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.454396"], ["id", 13]]
|
1902
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1903
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1904
|
-
|
1905
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1906
|
-
|
1907
|
-
Sent mail to test@mail.com (1.2ms)
|
1908
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
1909
|
-
From: test@mail.com
|
1910
|
-
To: test@mail.com
|
1911
|
-
Message-ID: <585058fc6fa6a_103433fcc2283f9f42852d@imac-de-matt.mail>
|
1912
|
-
Subject: Invite
|
1913
|
-
Mime-Version: 1.0
|
1914
|
-
Content-Type: text/plain;
|
1915
|
-
charset=UTF-8
|
1916
|
-
Content-Transfer-Encoding: 7bit
|
1917
|
-
|
1918
|
-
Test
|
1919
|
-
|
1920
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1921
|
-
[1m[36mSQL (0.5ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.458118"], ["updated_at", "2016-12-13 20:24:28.459321"], ["id", 13]]
|
1922
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1923
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1924
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.461429"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.462231"], ["id", 14]]
|
1925
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1926
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1927
|
-
|
1928
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1929
|
-
|
1930
|
-
Sent mail to test@mail.com (1.1ms)
|
1931
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
1932
|
-
From: test@mail.com
|
1933
|
-
To: test@mail.com
|
1934
|
-
Message-ID: <585058fc71a06_103433fcc2283f9f428652@imac-de-matt.mail>
|
1935
|
-
Subject: Invite
|
1936
|
-
Mime-Version: 1.0
|
1937
|
-
Content-Type: text/plain;
|
1938
|
-
charset=UTF-8
|
1939
|
-
Content-Transfer-Encoding: 7bit
|
1940
|
-
|
1941
|
-
Test
|
1942
|
-
|
1943
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1944
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.466108"], ["updated_at", "2016-12-13 20:24:28.466751"], ["id", 14]]
|
1945
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1946
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1947
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.468119"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.468692"], ["id", 15]]
|
1948
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1949
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1950
|
-
|
1951
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1952
|
-
|
1953
|
-
Sent mail to test@mail.com (1.1ms)
|
1954
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
1955
|
-
From: test@mail.com
|
1956
|
-
To: test@mail.com
|
1957
|
-
Message-ID: <585058fc731f1_103433fcc2283f9f428748@imac-de-matt.mail>
|
1958
|
-
Subject: Invite
|
1959
|
-
Mime-Version: 1.0
|
1960
|
-
Content-Type: text/plain;
|
1961
|
-
charset=UTF-8
|
1962
|
-
Content-Transfer-Encoding: 7bit
|
1963
|
-
|
1964
|
-
Test
|
1965
|
-
|
1966
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1967
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.472249"], ["updated_at", "2016-12-13 20:24:28.472830"], ["id", 15]]
|
1968
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1969
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1970
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.474130"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.474735"], ["id", 16]]
|
1971
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1972
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1973
|
-
|
1974
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
1975
|
-
|
1976
|
-
Sent mail to test@mail.com (1.3ms)
|
1977
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
1978
|
-
From: test@mail.com
|
1979
|
-
To: test@mail.com
|
1980
|
-
Message-ID: <585058fc749fb_103433fcc2283f9f428813@imac-de-matt.mail>
|
1981
|
-
Subject: Invite
|
1982
|
-
Mime-Version: 1.0
|
1983
|
-
Content-Type: text/plain;
|
1984
|
-
charset=UTF-8
|
1985
|
-
Content-Transfer-Encoding: 7bit
|
1986
|
-
|
1987
|
-
Test
|
1988
|
-
|
1989
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1990
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.478448"], ["updated_at", "2016-12-13 20:24:28.479151"], ["id", 16]]
|
1991
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1992
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1993
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.480503"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.481112"], ["id", 17]]
|
1994
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1995
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
1996
|
-
|
1997
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
1998
|
-
|
1999
|
-
Sent mail to test@mail.com (1.2ms)
|
2000
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2001
|
-
From: test@mail.com
|
2002
|
-
To: test@mail.com
|
2003
|
-
Message-ID: <585058fc7628b_103433fcc2283f9f4289f3@imac-de-matt.mail>
|
2004
|
-
Subject: Invite
|
2005
|
-
Mime-Version: 1.0
|
2006
|
-
Content-Type: text/plain;
|
2007
|
-
charset=UTF-8
|
2008
|
-
Content-Transfer-Encoding: 7bit
|
2009
|
-
|
2010
|
-
Test
|
2011
|
-
|
2012
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2013
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.484840"], ["updated_at", "2016-12-13 20:24:28.485448"], ["id", 17]]
|
2014
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2015
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2016
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.486696"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.487338"], ["id", 18]]
|
2017
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2018
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2019
|
-
|
2020
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2021
|
-
|
2022
|
-
Sent mail to test@mail.com (1.1ms)
|
2023
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2024
|
-
From: test@mail.com
|
2025
|
-
To: test@mail.com
|
2026
|
-
Message-ID: <585058fc77a82_103433fcc2283f9f429047@imac-de-matt.mail>
|
2027
|
-
Subject: Invite
|
2028
|
-
Mime-Version: 1.0
|
2029
|
-
Content-Type: text/plain;
|
2030
|
-
charset=UTF-8
|
2031
|
-
Content-Transfer-Encoding: 7bit
|
2032
|
-
|
2033
|
-
Test
|
2034
|
-
|
2035
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2036
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.490765"], ["updated_at", "2016-12-13 20:24:28.491304"], ["id", 18]]
|
2037
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2038
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2039
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.492505"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.493084"], ["id", 19]]
|
2040
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2041
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2042
|
-
|
2043
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2044
|
-
|
2045
|
-
Sent mail to test@mail.com (1.1ms)
|
2046
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2047
|
-
From: test@mail.com
|
2048
|
-
To: test@mail.com
|
2049
|
-
Message-ID: <585058fc79069_103433fcc2283f9f4291b0@imac-de-matt.mail>
|
2050
|
-
Subject: Invite
|
2051
|
-
Mime-Version: 1.0
|
2052
|
-
Content-Type: text/plain;
|
2053
|
-
charset=UTF-8
|
2054
|
-
Content-Transfer-Encoding: 7bit
|
2055
|
-
|
2056
|
-
Test
|
2057
|
-
|
2058
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2059
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.496380"], ["updated_at", "2016-12-13 20:24:28.496909"], ["id", 19]]
|
2060
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2061
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2062
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.498088"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.498639"], ["id", 20]]
|
2063
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2064
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2065
|
-
|
2066
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2067
|
-
|
2068
|
-
Sent mail to test@mail.com (1.1ms)
|
2069
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2070
|
-
From: test@mail.com
|
2071
|
-
To: test@mail.com
|
2072
|
-
Message-ID: <585058fc7a5ec_103433fcc2283f9f42927@imac-de-matt.mail>
|
2073
|
-
Subject: Invite
|
2074
|
-
Mime-Version: 1.0
|
2075
|
-
Content-Type: text/plain;
|
2076
|
-
charset=UTF-8
|
2077
|
-
Content-Transfer-Encoding: 7bit
|
2078
|
-
|
2079
|
-
Test
|
2080
|
-
|
2081
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2082
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.501894"], ["updated_at", "2016-12-13 20:24:28.502438"], ["id", 20]]
|
2083
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2084
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2085
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.503714"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.504337"], ["id", 21]]
|
2086
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2087
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2088
|
-
|
2089
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2090
|
-
|
2091
|
-
Sent mail to test@mail.com (1.1ms)
|
2092
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2093
|
-
From: test@mail.com
|
2094
|
-
To: test@mail.com
|
2095
|
-
Message-ID: <585058fc7bc44_103433fcc2283f9f4293e1@imac-de-matt.mail>
|
2096
|
-
Subject: Invite
|
2097
|
-
Mime-Version: 1.0
|
2098
|
-
Content-Type: text/plain;
|
2099
|
-
charset=UTF-8
|
2100
|
-
Content-Transfer-Encoding: 7bit
|
2101
|
-
|
2102
|
-
Test
|
2103
|
-
|
2104
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2105
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.507632"], ["updated_at", "2016-12-13 20:24:28.508170"], ["id", 21]]
|
2106
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2107
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2108
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.509317"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.509989"], ["id", 22]]
|
2109
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2110
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2111
|
-
|
2112
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2113
|
-
|
2114
|
-
Sent mail to test@mail.com (1.1ms)
|
2115
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2116
|
-
From: test@mail.com
|
2117
|
-
To: test@mail.com
|
2118
|
-
Message-ID: <585058fc7d20e_103433fcc2283f9f4294d2@imac-de-matt.mail>
|
2119
|
-
Subject: Invite
|
2120
|
-
Mime-Version: 1.0
|
2121
|
-
Content-Type: text/plain;
|
2122
|
-
charset=UTF-8
|
2123
|
-
Content-Transfer-Encoding: 7bit
|
2124
|
-
|
2125
|
-
Test
|
2126
|
-
|
2127
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2128
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.513204"], ["updated_at", "2016-12-13 20:24:28.513772"], ["id", 22]]
|
2129
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2130
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2131
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.514885"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.515443"], ["id", 23]]
|
2132
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2133
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2134
|
-
|
2135
|
-
UserMailer#invite: processed outbound mail in 0.5ms
|
2136
|
-
|
2137
|
-
Sent mail to test@mail.com (1.0ms)
|
2138
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2139
|
-
From: test@mail.com
|
2140
|
-
To: test@mail.com
|
2141
|
-
Message-ID: <585058fc7e772_103433fcc2283f9f4295ef@imac-de-matt.mail>
|
2142
|
-
Subject: Invite
|
2143
|
-
Mime-Version: 1.0
|
2144
|
-
Content-Type: text/plain;
|
2145
|
-
charset=UTF-8
|
2146
|
-
Content-Transfer-Encoding: 7bit
|
2147
|
-
|
2148
|
-
Test
|
2149
|
-
|
2150
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2151
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.518634"], ["updated_at", "2016-12-13 20:24:28.519176"], ["id", 23]]
|
2152
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2153
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2154
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.520325"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.520876"], ["id", 24]]
|
2155
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2156
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2157
|
-
|
2158
|
-
UserMailer#invite: processed outbound mail in 0.5ms
|
2159
|
-
|
2160
|
-
Sent mail to test@mail.com (0.9ms)
|
2161
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2162
|
-
From: test@mail.com
|
2163
|
-
To: test@mail.com
|
2164
|
-
Message-ID: <585058fc7fc3d_103433fcc2283f9f4296be@imac-de-matt.mail>
|
2165
|
-
Subject: Invite
|
2166
|
-
Mime-Version: 1.0
|
2167
|
-
Content-Type: text/plain;
|
2168
|
-
charset=UTF-8
|
2169
|
-
Content-Transfer-Encoding: 7bit
|
2170
|
-
|
2171
|
-
Test
|
2172
|
-
|
2173
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2174
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.523921"], ["updated_at", "2016-12-13 20:24:28.524494"], ["id", 24]]
|
2175
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2176
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2177
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.525635"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.526177"], ["id", 25]]
|
2178
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2179
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2180
|
-
|
2181
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2182
|
-
|
2183
|
-
Sent mail to test@mail.com (1.0ms)
|
2184
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2185
|
-
From: test@mail.com
|
2186
|
-
To: test@mail.com
|
2187
|
-
Message-ID: <585058fc8114b_103433fcc2283f9f429726@imac-de-matt.mail>
|
2188
|
-
Subject: Invite
|
2189
|
-
Mime-Version: 1.0
|
2190
|
-
Content-Type: text/plain;
|
2191
|
-
charset=UTF-8
|
2192
|
-
Content-Transfer-Encoding: 7bit
|
2193
|
-
|
2194
|
-
Test
|
2195
|
-
|
2196
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2197
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.529317"], ["updated_at", "2016-12-13 20:24:28.530001"], ["id", 25]]
|
2198
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2199
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2200
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.531218"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.531761"], ["id", 26]]
|
2201
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2202
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2203
|
-
|
2204
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2205
|
-
|
2206
|
-
Sent mail to test@mail.com (1.0ms)
|
2207
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2208
|
-
From: test@mail.com
|
2209
|
-
To: test@mail.com
|
2210
|
-
Message-ID: <585058fc8276f_103433fcc2283f9f4298aa@imac-de-matt.mail>
|
2211
|
-
Subject: Invite
|
2212
|
-
Mime-Version: 1.0
|
2213
|
-
Content-Type: text/plain;
|
2214
|
-
charset=UTF-8
|
2215
|
-
Content-Transfer-Encoding: 7bit
|
2216
|
-
|
2217
|
-
Test
|
2218
|
-
|
2219
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2220
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.534989"], ["updated_at", "2016-12-13 20:24:28.535526"], ["id", 26]]
|
2221
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2222
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2223
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.536666"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.537196"], ["id", 27]]
|
2224
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2225
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2226
|
-
|
2227
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2228
|
-
|
2229
|
-
Sent mail to test@mail.com (1.1ms)
|
2230
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2231
|
-
From: test@mail.com
|
2232
|
-
To: test@mail.com
|
2233
|
-
Message-ID: <585058fc83cb4_103433fcc2283f9f42993f@imac-de-matt.mail>
|
2234
|
-
Subject: Invite
|
2235
|
-
Mime-Version: 1.0
|
2236
|
-
Content-Type: text/plain;
|
2237
|
-
charset=UTF-8
|
2238
|
-
Content-Transfer-Encoding: 7bit
|
2239
|
-
|
2240
|
-
Test
|
2241
|
-
|
2242
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2243
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.540443"], ["updated_at", "2016-12-13 20:24:28.541049"], ["id", 27]]
|
2244
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2245
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2246
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.542262"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.542828"], ["id", 28]]
|
2247
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2248
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2249
|
-
|
2250
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2251
|
-
|
2252
|
-
Sent mail to test@mail.com (1.0ms)
|
2253
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2254
|
-
From: test@mail.com
|
2255
|
-
To: test@mail.com
|
2256
|
-
Message-ID: <585058fc852f6_103433fcc2283f9f4300dc@imac-de-matt.mail>
|
2257
|
-
Subject: Invite
|
2258
|
-
Mime-Version: 1.0
|
2259
|
-
Content-Type: text/plain;
|
2260
|
-
charset=UTF-8
|
2261
|
-
Content-Transfer-Encoding: 7bit
|
2262
|
-
|
2263
|
-
Test
|
2264
|
-
|
2265
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2266
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.546124"], ["updated_at", "2016-12-13 20:24:28.546657"], ["id", 28]]
|
2267
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2268
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2269
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.547794"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.548359"], ["id", 29]]
|
2270
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2271
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2272
|
-
|
2273
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2274
|
-
|
2275
|
-
Sent mail to test@mail.com (1.1ms)
|
2276
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2277
|
-
From: test@mail.com
|
2278
|
-
To: test@mail.com
|
2279
|
-
Message-ID: <585058fc867b6_103433fcc2283f9f430154@imac-de-matt.mail>
|
2280
|
-
Subject: Invite
|
2281
|
-
Mime-Version: 1.0
|
2282
|
-
Content-Type: text/plain;
|
2283
|
-
charset=UTF-8
|
2284
|
-
Content-Transfer-Encoding: 7bit
|
2285
|
-
|
2286
|
-
Test
|
2287
|
-
|
2288
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2289
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.551485"], ["updated_at", "2016-12-13 20:24:28.552011"], ["id", 29]]
|
2290
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2291
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2292
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.553125"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.553770"], ["id", 30]]
|
2293
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2294
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2295
|
-
|
2296
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2297
|
-
|
2298
|
-
Sent mail to test@mail.com (1.2ms)
|
2299
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2300
|
-
From: test@mail.com
|
2301
|
-
To: test@mail.com
|
2302
|
-
Message-ID: <585058fc87e0c_103433fcc2283f9f43022e@imac-de-matt.mail>
|
2303
|
-
Subject: Invite
|
2304
|
-
Mime-Version: 1.0
|
2305
|
-
Content-Type: text/plain;
|
2306
|
-
charset=UTF-8
|
2307
|
-
Content-Transfer-Encoding: 7bit
|
2308
|
-
|
2309
|
-
Test
|
2310
|
-
|
2311
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2312
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.557223"], ["updated_at", "2016-12-13 20:24:28.557795"], ["id", 30]]
|
2313
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2314
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "complete"]]
|
2315
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "processing"]]
|
2316
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "pending"]]
|
2317
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2318
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2319
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.561568"], ["updated_at", "2016-12-13 20:24:28.562207"], ["id", 34]]
|
2320
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2321
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:24:28.563704' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
2322
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2323
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.564466"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.565101"], ["id", 31]]
|
2324
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2325
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2326
|
-
|
2327
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2328
|
-
|
2329
|
-
Sent mail to test@mail.com (1.2ms)
|
2330
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2331
|
-
From: test@mail.com
|
2332
|
-
To: test@mail.com
|
2333
|
-
Message-ID: <585058fc8aa94_103433fcc2283f9f430360@imac-de-matt.mail>
|
2334
|
-
Subject: Invite
|
2335
|
-
Mime-Version: 1.0
|
2336
|
-
Content-Type: text/plain;
|
2337
|
-
charset=UTF-8
|
2338
|
-
Content-Transfer-Encoding: 7bit
|
2339
|
-
|
2340
|
-
Test
|
2341
|
-
|
2342
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2343
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.568670"], ["updated_at", "2016-12-13 20:24:28.569239"], ["id", 31]]
|
2344
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2345
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2346
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.570373"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.570981"], ["id", 32]]
|
2347
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2348
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2349
|
-
|
2350
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2351
|
-
|
2352
|
-
Sent mail to test@mail.com (1.1ms)
|
2353
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2354
|
-
From: test@mail.com
|
2355
|
-
To: test@mail.com
|
2356
|
-
Message-ID: <585058fc8c037_103433fcc2283f9f43046f@imac-de-matt.mail>
|
2357
|
-
Subject: Invite
|
2358
|
-
Mime-Version: 1.0
|
2359
|
-
Content-Type: text/plain;
|
2360
|
-
charset=UTF-8
|
2361
|
-
Content-Transfer-Encoding: 7bit
|
2362
|
-
|
2363
|
-
Test
|
2364
|
-
|
2365
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2366
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.574182"], ["updated_at", "2016-12-13 20:24:28.574774"], ["id", 32]]
|
2367
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2368
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2369
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.575927"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.576495"], ["id", 33]]
|
2370
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2371
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2372
|
-
|
2373
|
-
UserMailer#invite: processed outbound mail in 0.5ms
|
2374
|
-
|
2375
|
-
Sent mail to test@mail.com (1.1ms)
|
2376
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2377
|
-
From: test@mail.com
|
2378
|
-
To: test@mail.com
|
2379
|
-
Message-ID: <585058fc8d5fb_103433fcc2283f9f4305cd@imac-de-matt.mail>
|
2380
|
-
Subject: Invite
|
2381
|
-
Mime-Version: 1.0
|
2382
|
-
Content-Type: text/plain;
|
2383
|
-
charset=UTF-8
|
2384
|
-
Content-Transfer-Encoding: 7bit
|
2385
|
-
|
2386
|
-
Test
|
2387
|
-
|
2388
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2389
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.579758"], ["updated_at", "2016-12-13 20:24:28.580333"], ["id", 33]]
|
2390
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2391
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "complete"]]
|
2392
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "processing"]]
|
2393
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "pending"]]
|
2394
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
2395
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
2396
|
-
---------------------------
|
2397
|
-
ProcessorTest: test_process
|
2398
|
-
---------------------------
|
2399
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2400
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"77c690e3-d50a-4e70-9987-c900e46fb5d8\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-13 20:24:28.584499"], ["updated_at", "2016-12-13 20:24:28.584499"]]
|
2401
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2402
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 77c690e3-d50a-4e70-9987-c900e46fb5d8) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2403
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:24:28.585904' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
2404
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2405
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.586642"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.587218"], ["id", 35]]
|
2406
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2407
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2408
|
-
|
2409
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2410
|
-
|
2411
|
-
Sent mail to test@mail.com (1.0ms)
|
2412
|
-
Date: Tue, 13 Dec 2016 17:24:28 -0300
|
2413
|
-
From: test@mail.com
|
2414
|
-
To: test@mail.com
|
2415
|
-
Message-ID: <585058fc9008c_103433fcc2283f9f4306f1@imac-de-matt.mail>
|
2416
|
-
Subject: Invite
|
2417
|
-
Mime-Version: 1.0
|
2418
|
-
Content-Type: text/plain;
|
2419
|
-
charset=UTF-8
|
2420
|
-
Content-Transfer-Encoding: 7bit
|
2421
|
-
|
2422
|
-
Test
|
2423
|
-
|
2424
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2425
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-13 20:24:28.590585"], ["updated_at", "2016-12-13 20:24:28.591167"], ["id", 35]]
|
2426
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2427
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2428
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2429
|
-
[1m[35m (0.1ms)[0m BEGIN
|
2430
|
-
---------------------------
|
2431
|
-
ProcessorTest: test_retries
|
2432
|
-
---------------------------
|
2433
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2434
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ShareProductsJob\",\"job_id\":\"c861417f-88bc-4fa5-9189-bb1471a48f2d\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-12-13 20:24:28.594767"], ["updated_at", "2016-12-13 20:24:28.594767"]]
|
2435
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2436
|
-
[ActiveJob] Enqueued ShareProductsJob (Job ID: c861417f-88bc-4fa5-9189-bb1471a48f2d) to Sidejobs(default)
|
2437
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:24:28.596466' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
2438
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2439
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.597317"], ["attempts", 1], ["updated_at", "2016-12-13 20:24:28.597920"], ["id", 36]]
|
2440
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2441
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2442
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "error" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "failing"], ["failed_at", "2016-12-13 20:24:28.599461"], ["error", "Social network unavailable"], ["updated_at", "2016-12-13 20:24:28.600057"], ["id", 36]]
|
2443
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2444
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:24:28.601389' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
2445
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2446
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.602073"], ["attempts", 2], ["updated_at", "2016-12-13 20:24:28.602721"], ["id", 36]]
|
2447
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2448
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2449
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "failing"], ["failed_at", "2016-12-13 20:24:28.604081"], ["updated_at", "2016-12-13 20:24:28.604626"], ["id", 36]]
|
2450
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2451
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:24:28.605937' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
2452
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2453
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-13 20:24:28.606589"], ["attempts", 3], ["updated_at", "2016-12-13 20:24:28.607163"], ["id", 36]]
|
2454
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2455
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2456
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "failing"], ["failed_at", "2016-12-13 20:24:28.608605"], ["updated_at", "2016-12-13 20:24:28.609140"], ["id", 36]]
|
2457
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2458
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-13 20:24:28.610305' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
2459
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2460
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2461
|
-
[1m[36mActiveRecord::SchemaMigration Load (26.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2462
|
-
[1m[35m (0.2ms)[0m BEGIN
|
2463
|
-
-----------------------
|
2464
|
-
QueueTest: test_enqueue
|
2465
|
-
-----------------------
|
2466
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2467
|
-
[ActiveJob] [1m[35mSQL (27.0ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"8fa1e99e-7ecf-45a7-876b-3501464fe999\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.456313"], ["updated_at", "2016-12-14 18:37:46.456313"]]
|
2468
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2469
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 8fa1e99e-7ecf-45a7-876b-3501464fe999) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2470
|
-
[1m[35mSidejobs::Job Load (1.7ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2471
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2472
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"e50affaf-2b34-4fcd-b50b-95f8349e7b9e\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["created_at", "2016-12-14 18:37:46.492363"], ["updated_at", "2016-12-14 18:37:46.492363"]]
|
2473
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2474
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: e50affaf-2b34-4fcd-b50b-95f8349e7b9e) to Sidejobs(high_priority)
|
2475
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2476
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2477
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"5358dbea-c809-4c8d-b554-21728ad3d149\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-12-14 18:37:46.495923"], ["updated_at", "2016-12-14 18:37:46.495923"]]
|
2478
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2479
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: 5358dbea-c809-4c8d-b554-21728ad3d149) to Sidejobs(default)
|
2480
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2481
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2482
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"457c318c-3b99-4865-893f-406772371b7f\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["created_at", "2016-12-14 18:37:46.499812"], ["updated_at", "2016-12-14 18:37:46.499812"]]
|
2483
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2484
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: 457c318c-3b99-4865-893f-406772371b7f) to Sidejobs(low_priority)
|
2485
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2486
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2487
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"15ec146a-0c4a-4a32-bbd7-68de0d74644c\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["created_at", "2016-12-14 18:37:46.503372"], ["updated_at", "2016-12-14 18:37:46.503372"]]
|
2488
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2489
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: 15ec146a-0c4a-4a32-bbd7-68de0d74644c) to Sidejobs(other)
|
2490
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2491
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2492
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"057ce4ee-a3b5-45df-a249-1f2148fe5dc3\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["scheduled_at", "2016-12-15 04:37:46.505604"], ["created_at", "2016-12-14 18:37:46.506397"], ["updated_at", "2016-12-14 18:37:46.506397"]]
|
2493
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2494
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 057ce4ee-a3b5-45df-a249-1f2148fe5dc3) to Sidejobs(mailers) at 2016-12-15 04:37:46 UTC with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2495
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2496
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2497
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"f88e6695-d1dc-4c77-9fcf-dd518c24681f\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["scheduled_at", "2016-12-15 04:37:46.505604"], ["created_at", "2016-12-14 18:37:46.513763"], ["updated_at", "2016-12-14 18:37:46.513763"]]
|
2498
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2499
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: f88e6695-d1dc-4c77-9fcf-dd518c24681f) to Sidejobs(high_priority) at 2016-12-15 04:37:46 UTC
|
2500
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2501
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2502
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"e40d9c09-3138-4879-8ca0-3c1ed32b5051\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["scheduled_at", "2016-12-15 04:37:46.505604"], ["created_at", "2016-12-14 18:37:46.516740"], ["updated_at", "2016-12-14 18:37:46.516740"]]
|
2503
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2504
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: e40d9c09-3138-4879-8ca0-3c1ed32b5051) to Sidejobs(default) at 2016-12-15 04:37:46 UTC
|
2505
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2506
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2507
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"98aa6dd9-ea0f-414a-985c-46b7350a43bf\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["scheduled_at", "2016-12-15 04:37:46.505604"], ["created_at", "2016-12-14 18:37:46.519369"], ["updated_at", "2016-12-14 18:37:46.519369"]]
|
2508
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2509
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: 98aa6dd9-ea0f-414a-985c-46b7350a43bf) to Sidejobs(low_priority) at 2016-12-15 04:37:46 UTC
|
2510
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2511
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2512
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"1b005873-36a4-4207-9177-660cd2363c10\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["scheduled_at", "2016-12-15 04:37:46.505604"], ["created_at", "2016-12-14 18:37:46.522015"], ["updated_at", "2016-12-14 18:37:46.522015"]]
|
2513
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2514
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: 1b005873-36a4-4207-9177-660cd2363c10) to Sidejobs(other) at 2016-12-15 04:37:46 UTC
|
2515
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
2516
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
2517
|
-
[1m[35m (0.1ms)[0m BEGIN
|
2518
|
-
----------------------------
|
2519
|
-
GeneratorsTest: test_install
|
2520
|
-
----------------------------
|
2521
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
2522
|
-
[1m[35m (0.2ms)[0m BEGIN
|
2523
|
-
-------------------------
|
2524
|
-
ProcessorTest: test_batch
|
2525
|
-
-------------------------
|
2526
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2527
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"4e976e6a-7e2c-4922-bea6-ac4757d71a04\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.530868"], ["updated_at", "2016-12-14 18:37:46.530868"]]
|
2528
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2529
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 4e976e6a-7e2c-4922-bea6-ac4757d71a04) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2530
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2531
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"d42a4987-48a4-427c-8a3a-d22d2deacb11\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.533256"], ["updated_at", "2016-12-14 18:37:46.533256"]]
|
2532
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2533
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: d42a4987-48a4-427c-8a3a-d22d2deacb11) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2534
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2535
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"40131efa-6599-4f11-9664-87ee58b74a92\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.535209"], ["updated_at", "2016-12-14 18:37:46.535209"]]
|
2536
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2537
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 40131efa-6599-4f11-9664-87ee58b74a92) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2538
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2539
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"20d3d4b9-46e8-407e-ba99-041360395fd5\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.537151"], ["updated_at", "2016-12-14 18:37:46.537151"]]
|
2540
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
2541
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 20d3d4b9-46e8-407e-ba99-041360395fd5) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2542
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2543
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"b750f765-6e97-463e-88f3-945d2ea2fe1f\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.539121"], ["updated_at", "2016-12-14 18:37:46.539121"]]
|
2544
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2545
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: b750f765-6e97-463e-88f3-945d2ea2fe1f) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2546
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2547
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"978556ed-82af-436d-90a3-9a9989fe8546\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.541055"], ["updated_at", "2016-12-14 18:37:46.541055"]]
|
2548
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2549
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 978556ed-82af-436d-90a3-9a9989fe8546) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2550
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2551
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"5809d872-9652-40f2-999b-49e7b90f492c\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.543028"], ["updated_at", "2016-12-14 18:37:46.543028"]]
|
2552
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2553
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 5809d872-9652-40f2-999b-49e7b90f492c) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2554
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2555
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"1b22d950-55be-4b6e-8971-9de8c5dfb420\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.544976"], ["updated_at", "2016-12-14 18:37:46.544976"]]
|
2556
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2557
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 1b22d950-55be-4b6e-8971-9de8c5dfb420) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2558
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2559
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"afb915a1-f9cf-455c-9307-b9b5aab79971\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.546835"], ["updated_at", "2016-12-14 18:37:46.546835"]]
|
2560
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2561
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: afb915a1-f9cf-455c-9307-b9b5aab79971) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2562
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2563
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"4eb9e937-ad7d-49b8-bf8d-349493f61986\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.548751"], ["updated_at", "2016-12-14 18:37:46.548751"]]
|
2564
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2565
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 4eb9e937-ad7d-49b8-bf8d-349493f61986) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2566
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2567
|
-
[ActiveJob] [1m[35mSQL (0.1ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"04267e58-45a8-4718-a201-ae55ba0d3394\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.550749"], ["updated_at", "2016-12-14 18:37:46.550749"]]
|
2568
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2569
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 04267e58-45a8-4718-a201-ae55ba0d3394) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2570
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2571
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"bcaad384-2372-47cc-a49e-a185eea02c2b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.552701"], ["updated_at", "2016-12-14 18:37:46.552701"]]
|
2572
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2573
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: bcaad384-2372-47cc-a49e-a185eea02c2b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2574
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2575
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"db434029-c7d3-4db1-908b-ec1a8afc9f7a\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.554594"], ["updated_at", "2016-12-14 18:37:46.554594"]]
|
2576
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2577
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: db434029-c7d3-4db1-908b-ec1a8afc9f7a) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2578
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2579
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"6ca1af78-6172-45e6-9656-95ed1455174a\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.556555"], ["updated_at", "2016-12-14 18:37:46.556555"]]
|
2580
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2581
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 6ca1af78-6172-45e6-9656-95ed1455174a) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2582
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2583
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"e0e3d8a9-25dc-4a80-8b8a-435cdea6875a\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.558546"], ["updated_at", "2016-12-14 18:37:46.558546"]]
|
2584
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2585
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: e0e3d8a9-25dc-4a80-8b8a-435cdea6875a) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2586
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2587
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"d38979d5-0c29-45d4-8e5a-ac68b98741d9\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.561139"], ["updated_at", "2016-12-14 18:37:46.561139"]]
|
2588
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2589
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: d38979d5-0c29-45d4-8e5a-ac68b98741d9) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2590
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2591
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"b0c347f0-1613-4836-b569-5b4b860f3c8b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.563214"], ["updated_at", "2016-12-14 18:37:46.563214"]]
|
2592
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2593
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: b0c347f0-1613-4836-b569-5b4b860f3c8b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2594
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2595
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"33f20cca-6120-4e91-a4e0-e5a6b39ad933\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.565275"], ["updated_at", "2016-12-14 18:37:46.565275"]]
|
2596
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2597
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 33f20cca-6120-4e91-a4e0-e5a6b39ad933) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2598
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2599
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"56d93cd8-b766-4efb-875a-db290631ddd8\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.567457"], ["updated_at", "2016-12-14 18:37:46.567457"]]
|
2600
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2601
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 56d93cd8-b766-4efb-875a-db290631ddd8) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2602
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2603
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"b8e58e86-9043-47a2-bd2b-38f19fd4d06c\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.569636"], ["updated_at", "2016-12-14 18:37:46.569636"]]
|
2604
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2605
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: b8e58e86-9043-47a2-bd2b-38f19fd4d06c) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2606
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2607
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"372713f0-dbee-425a-831e-5b315aa6e5d5\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.571529"], ["updated_at", "2016-12-14 18:37:46.571529"]]
|
2608
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2609
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 372713f0-dbee-425a-831e-5b315aa6e5d5) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2610
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2611
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"1b221d0f-37f9-401f-8d08-e99a0a4b7837\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.573456"], ["updated_at", "2016-12-14 18:37:46.573456"]]
|
2612
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2613
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 1b221d0f-37f9-401f-8d08-e99a0a4b7837) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2614
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2615
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"08fd0ffa-2e9a-4b00-89af-269b9f80fd2e\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.575418"], ["updated_at", "2016-12-14 18:37:46.575418"]]
|
2616
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2617
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 08fd0ffa-2e9a-4b00-89af-269b9f80fd2e) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2618
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2619
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"5b2085a6-df16-419e-8160-92c958231370\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.577446"], ["updated_at", "2016-12-14 18:37:46.577446"]]
|
2620
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2621
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 5b2085a6-df16-419e-8160-92c958231370) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
2622
|
-
[1m[36mSidejobs::Job Load (28.5ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-14 18:37:46.581730' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
2623
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
2624
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.611552"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.612583"], ["id", 47]]
|
2625
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2626
|
-
Rendered user_mailer/invite.text.erb (1.0ms)
|
2627
|
-
|
2628
|
-
UserMailer#invite: processed outbound mail in 155.0ms
|
2629
|
-
|
2630
|
-
Sent mail to test@mail.com (7.3ms)
|
2631
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2632
|
-
From: test@mail.com
|
2633
|
-
To: test@mail.com
|
2634
|
-
Message-ID: <5851917ac4727_92b3fd71983fa2411865@imac-de-matt.mail>
|
2635
|
-
Subject: Invite
|
2636
|
-
Mime-Version: 1.0
|
2637
|
-
Content-Type: text/plain;
|
2638
|
-
charset=UTF-8
|
2639
|
-
Content-Transfer-Encoding: 7bit
|
2640
|
-
|
2641
|
-
Test
|
2642
|
-
|
2643
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2644
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.807081"], ["updated_at", "2016-12-14 18:37:46.807949"], ["id", 47]]
|
2645
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2646
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2647
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.809706"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.810479"], ["id", 48]]
|
2648
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2649
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2650
|
-
|
2651
|
-
UserMailer#invite: processed outbound mail in 0.9ms
|
2652
|
-
|
2653
|
-
Sent mail to test@mail.com (1.1ms)
|
2654
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2655
|
-
From: test@mail.com
|
2656
|
-
To: test@mail.com
|
2657
|
-
Message-ID: <5851917ac6a94_92b3fd71983fa24119a9@imac-de-matt.mail>
|
2658
|
-
Subject: Invite
|
2659
|
-
Mime-Version: 1.0
|
2660
|
-
Content-Type: text/plain;
|
2661
|
-
charset=UTF-8
|
2662
|
-
Content-Transfer-Encoding: 7bit
|
2663
|
-
|
2664
|
-
Test
|
2665
|
-
|
2666
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2667
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.814371"], ["updated_at", "2016-12-14 18:37:46.814975"], ["id", 48]]
|
2668
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2669
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2670
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.816437"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.816984"], ["id", 49]]
|
2671
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2672
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2673
|
-
|
2674
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2675
|
-
|
2676
|
-
Sent mail to test@mail.com (1.1ms)
|
2677
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2678
|
-
From: test@mail.com
|
2679
|
-
To: test@mail.com
|
2680
|
-
Message-ID: <5851917ac82da_92b3fd71983fa24120bd@imac-de-matt.mail>
|
2681
|
-
Subject: Invite
|
2682
|
-
Mime-Version: 1.0
|
2683
|
-
Content-Type: text/plain;
|
2684
|
-
charset=UTF-8
|
2685
|
-
Content-Transfer-Encoding: 7bit
|
2686
|
-
|
2687
|
-
Test
|
2688
|
-
|
2689
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2690
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.820626"], ["updated_at", "2016-12-14 18:37:46.821363"], ["id", 49]]
|
2691
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2692
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2693
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.822719"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.823332"], ["id", 50]]
|
2694
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2695
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2696
|
-
|
2697
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2698
|
-
|
2699
|
-
Sent mail to test@mail.com (1.3ms)
|
2700
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2701
|
-
From: test@mail.com
|
2702
|
-
To: test@mail.com
|
2703
|
-
Message-ID: <5851917ac9bba_92b3fd71983fa241218a@imac-de-matt.mail>
|
2704
|
-
Subject: Invite
|
2705
|
-
Mime-Version: 1.0
|
2706
|
-
Content-Type: text/plain;
|
2707
|
-
charset=UTF-8
|
2708
|
-
Content-Transfer-Encoding: 7bit
|
2709
|
-
|
2710
|
-
Test
|
2711
|
-
|
2712
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2713
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.827113"], ["updated_at", "2016-12-14 18:37:46.827823"], ["id", 50]]
|
2714
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2715
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2716
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.829159"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.829757"], ["id", 51]]
|
2717
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2718
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2719
|
-
|
2720
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
2721
|
-
|
2722
|
-
Sent mail to test@mail.com (1.4ms)
|
2723
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2724
|
-
From: test@mail.com
|
2725
|
-
To: test@mail.com
|
2726
|
-
Message-ID: <5851917acb656_92b3fd71983fa241221e@imac-de-matt.mail>
|
2727
|
-
Subject: Invite
|
2728
|
-
Mime-Version: 1.0
|
2729
|
-
Content-Type: text/plain;
|
2730
|
-
charset=UTF-8
|
2731
|
-
Content-Transfer-Encoding: 7bit
|
2732
|
-
|
2733
|
-
Test
|
2734
|
-
|
2735
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2736
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.833896"], ["updated_at", "2016-12-14 18:37:46.834643"], ["id", 51]]
|
2737
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2738
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2739
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.836400"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.837111"], ["id", 52]]
|
2740
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2741
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2742
|
-
|
2743
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2744
|
-
|
2745
|
-
Sent mail to test@mail.com (1.2ms)
|
2746
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2747
|
-
From: test@mail.com
|
2748
|
-
To: test@mail.com
|
2749
|
-
Message-ID: <5851917acd275_92b3fd71983fa2412367@imac-de-matt.mail>
|
2750
|
-
Subject: Invite
|
2751
|
-
Mime-Version: 1.0
|
2752
|
-
Content-Type: text/plain;
|
2753
|
-
charset=UTF-8
|
2754
|
-
Content-Transfer-Encoding: 7bit
|
2755
|
-
|
2756
|
-
Test
|
2757
|
-
|
2758
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2759
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.841068"], ["updated_at", "2016-12-14 18:37:46.841829"], ["id", 52]]
|
2760
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2761
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2762
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.843311"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.844022"], ["id", 53]]
|
2763
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2764
|
-
Rendered user_mailer/invite.text.erb (0.1ms)
|
2765
|
-
|
2766
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2767
|
-
|
2768
|
-
Sent mail to test@mail.com (1.3ms)
|
2769
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2770
|
-
From: test@mail.com
|
2771
|
-
To: test@mail.com
|
2772
|
-
Message-ID: <5851917acedfc_92b3fd71983fa241248b@imac-de-matt.mail>
|
2773
|
-
Subject: Invite
|
2774
|
-
Mime-Version: 1.0
|
2775
|
-
Content-Type: text/plain;
|
2776
|
-
charset=UTF-8
|
2777
|
-
Content-Transfer-Encoding: 7bit
|
2778
|
-
|
2779
|
-
Test
|
2780
|
-
|
2781
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2782
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.848158"], ["updated_at", "2016-12-14 18:37:46.848882"], ["id", 53]]
|
2783
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2784
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2785
|
-
[1m[36mSQL (0.1ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.850274"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.850846"], ["id", 54]]
|
2786
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2787
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2788
|
-
|
2789
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2790
|
-
|
2791
|
-
Sent mail to test@mail.com (1.2ms)
|
2792
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2793
|
-
From: test@mail.com
|
2794
|
-
To: test@mail.com
|
2795
|
-
Message-ID: <5851917ad065e_92b3fd71983fa24125cc@imac-de-matt.mail>
|
2796
|
-
Subject: Invite
|
2797
|
-
Mime-Version: 1.0
|
2798
|
-
Content-Type: text/plain;
|
2799
|
-
charset=UTF-8
|
2800
|
-
Content-Transfer-Encoding: 7bit
|
2801
|
-
|
2802
|
-
Test
|
2803
|
-
|
2804
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2805
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.854285"], ["updated_at", "2016-12-14 18:37:46.854805"], ["id", 54]]
|
2806
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2807
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2808
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.855972"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.856522"], ["id", 55]]
|
2809
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2810
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2811
|
-
|
2812
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2813
|
-
|
2814
|
-
Sent mail to test@mail.com (1.1ms)
|
2815
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2816
|
-
From: test@mail.com
|
2817
|
-
To: test@mail.com
|
2818
|
-
Message-ID: <5851917ad1d01_92b3fd71983fa24126ee@imac-de-matt.mail>
|
2819
|
-
Subject: Invite
|
2820
|
-
Mime-Version: 1.0
|
2821
|
-
Content-Type: text/plain;
|
2822
|
-
charset=UTF-8
|
2823
|
-
Content-Transfer-Encoding: 7bit
|
2824
|
-
|
2825
|
-
Test
|
2826
|
-
|
2827
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2828
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.860061"], ["updated_at", "2016-12-14 18:37:46.860638"], ["id", 55]]
|
2829
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2830
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2831
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.861915"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.862490"], ["id", 56]]
|
2832
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2833
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2834
|
-
|
2835
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2836
|
-
|
2837
|
-
Sent mail to test@mail.com (1.2ms)
|
2838
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2839
|
-
From: test@mail.com
|
2840
|
-
To: test@mail.com
|
2841
|
-
Message-ID: <5851917ad33b8_92b3fd71983fa2412739@imac-de-matt.mail>
|
2842
|
-
Subject: Invite
|
2843
|
-
Mime-Version: 1.0
|
2844
|
-
Content-Type: text/plain;
|
2845
|
-
charset=UTF-8
|
2846
|
-
Content-Transfer-Encoding: 7bit
|
2847
|
-
|
2848
|
-
Test
|
2849
|
-
|
2850
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2851
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.865946"], ["updated_at", "2016-12-14 18:37:46.866628"], ["id", 56]]
|
2852
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2853
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2854
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.868037"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.868606"], ["id", 57]]
|
2855
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
2856
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2857
|
-
|
2858
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2859
|
-
|
2860
|
-
Sent mail to test@mail.com (1.1ms)
|
2861
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2862
|
-
From: test@mail.com
|
2863
|
-
To: test@mail.com
|
2864
|
-
Message-ID: <5851917ad4c52_92b3fd71983fa2412897@imac-de-matt.mail>
|
2865
|
-
Subject: Invite
|
2866
|
-
Mime-Version: 1.0
|
2867
|
-
Content-Type: text/plain;
|
2868
|
-
charset=UTF-8
|
2869
|
-
Content-Transfer-Encoding: 7bit
|
2870
|
-
|
2871
|
-
Test
|
2872
|
-
|
2873
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2874
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.872127"], ["updated_at", "2016-12-14 18:37:46.872690"], ["id", 57]]
|
2875
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2876
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2877
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.873859"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.874411"], ["id", 58]]
|
2878
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2879
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2880
|
-
|
2881
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2882
|
-
|
2883
|
-
Sent mail to test@mail.com (1.1ms)
|
2884
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2885
|
-
From: test@mail.com
|
2886
|
-
To: test@mail.com
|
2887
|
-
Message-ID: <5851917ad61ab_92b3fd71983fa24129e8@imac-de-matt.mail>
|
2888
|
-
Subject: Invite
|
2889
|
-
Mime-Version: 1.0
|
2890
|
-
Content-Type: text/plain;
|
2891
|
-
charset=UTF-8
|
2892
|
-
Content-Transfer-Encoding: 7bit
|
2893
|
-
|
2894
|
-
Test
|
2895
|
-
|
2896
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2897
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.877616"], ["updated_at", "2016-12-14 18:37:46.878145"], ["id", 58]]
|
2898
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2899
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2900
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.879298"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.879863"], ["id", 59]]
|
2901
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2902
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2903
|
-
|
2904
|
-
UserMailer#invite: processed outbound mail in 0.5ms
|
2905
|
-
|
2906
|
-
Sent mail to test@mail.com (1.2ms)
|
2907
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2908
|
-
From: test@mail.com
|
2909
|
-
To: test@mail.com
|
2910
|
-
Message-ID: <5851917ad76f5_92b3fd71983fa2413054@imac-de-matt.mail>
|
2911
|
-
Subject: Invite
|
2912
|
-
Mime-Version: 1.0
|
2913
|
-
Content-Type: text/plain;
|
2914
|
-
charset=UTF-8
|
2915
|
-
Content-Transfer-Encoding: 7bit
|
2916
|
-
|
2917
|
-
Test
|
2918
|
-
|
2919
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2920
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.883138"], ["updated_at", "2016-12-14 18:37:46.883794"], ["id", 59]]
|
2921
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2922
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2923
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.885039"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.885600"], ["id", 60]]
|
2924
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2925
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2926
|
-
|
2927
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2928
|
-
|
2929
|
-
Sent mail to test@mail.com (1.4ms)
|
2930
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2931
|
-
From: test@mail.com
|
2932
|
-
To: test@mail.com
|
2933
|
-
Message-ID: <5851917ad8e6e_92b3fd71983fa241316b@imac-de-matt.mail>
|
2934
|
-
Subject: Invite
|
2935
|
-
Mime-Version: 1.0
|
2936
|
-
Content-Type: text/plain;
|
2937
|
-
charset=UTF-8
|
2938
|
-
Content-Transfer-Encoding: 7bit
|
2939
|
-
|
2940
|
-
Test
|
2941
|
-
|
2942
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2943
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.889155"], ["updated_at", "2016-12-14 18:37:46.889810"], ["id", 60]]
|
2944
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2945
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2946
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.891015"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.891578"], ["id", 61]]
|
2947
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2948
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2949
|
-
|
2950
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
2951
|
-
|
2952
|
-
Sent mail to test@mail.com (1.2ms)
|
2953
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2954
|
-
From: test@mail.com
|
2955
|
-
To: test@mail.com
|
2956
|
-
Message-ID: <5851917ada645_92b3fd71983fa241324d@imac-de-matt.mail>
|
2957
|
-
Subject: Invite
|
2958
|
-
Mime-Version: 1.0
|
2959
|
-
Content-Type: text/plain;
|
2960
|
-
charset=UTF-8
|
2961
|
-
Content-Transfer-Encoding: 7bit
|
2962
|
-
|
2963
|
-
Test
|
2964
|
-
|
2965
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2966
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.895247"], ["updated_at", "2016-12-14 18:37:46.895831"], ["id", 61]]
|
2967
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2968
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2969
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.897061"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.897616"], ["id", 62]]
|
2970
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2971
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2972
|
-
|
2973
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
2974
|
-
|
2975
|
-
Sent mail to test@mail.com (1.1ms)
|
2976
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
2977
|
-
From: test@mail.com
|
2978
|
-
To: test@mail.com
|
2979
|
-
Message-ID: <5851917adbe08_92b3fd71983fa24133ae@imac-de-matt.mail>
|
2980
|
-
Subject: Invite
|
2981
|
-
Mime-Version: 1.0
|
2982
|
-
Content-Type: text/plain;
|
2983
|
-
charset=UTF-8
|
2984
|
-
Content-Transfer-Encoding: 7bit
|
2985
|
-
|
2986
|
-
Test
|
2987
|
-
|
2988
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2989
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.901272"], ["updated_at", "2016-12-14 18:37:46.901872"], ["id", 62]]
|
2990
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2991
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2992
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.903086"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.903626"], ["id", 63]]
|
2993
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2994
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
2995
|
-
|
2996
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
2997
|
-
|
2998
|
-
Sent mail to test@mail.com (1.0ms)
|
2999
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
3000
|
-
From: test@mail.com
|
3001
|
-
To: test@mail.com
|
3002
|
-
Message-ID: <5851917add3c1_92b3fd71983fa2413455@imac-de-matt.mail>
|
3003
|
-
Subject: Invite
|
3004
|
-
Mime-Version: 1.0
|
3005
|
-
Content-Type: text/plain;
|
3006
|
-
charset=UTF-8
|
3007
|
-
Content-Transfer-Encoding: 7bit
|
3008
|
-
|
3009
|
-
Test
|
3010
|
-
|
3011
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3012
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.906799"], ["updated_at", "2016-12-14 18:37:46.907321"], ["id", 63]]
|
3013
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3014
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3015
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.908548"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.909142"], ["id", 64]]
|
3016
|
-
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
3017
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
3018
|
-
|
3019
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3020
|
-
|
3021
|
-
Sent mail to test@mail.com (1.2ms)
|
3022
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
3023
|
-
From: test@mail.com
|
3024
|
-
To: test@mail.com
|
3025
|
-
Message-ID: <5851917adeb4f_92b3fd71983fa241358e@imac-de-matt.mail>
|
3026
|
-
Subject: Invite
|
3027
|
-
Mime-Version: 1.0
|
3028
|
-
Content-Type: text/plain;
|
3029
|
-
charset=UTF-8
|
3030
|
-
Content-Transfer-Encoding: 7bit
|
3031
|
-
|
3032
|
-
Test
|
3033
|
-
|
3034
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
3035
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.912930"], ["updated_at", "2016-12-14 18:37:46.913679"], ["id", 64]]
|
3036
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3037
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
3038
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.915117"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.915759"], ["id", 65]]
|
3039
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3040
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
3041
|
-
|
3042
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
3043
|
-
|
3044
|
-
Sent mail to test@mail.com (1.2ms)
|
3045
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
3046
|
-
From: test@mail.com
|
3047
|
-
To: test@mail.com
|
3048
|
-
Message-ID: <5851917ae0548_92b3fd71983fa24136c2@imac-de-matt.mail>
|
3049
|
-
Subject: Invite
|
3050
|
-
Mime-Version: 1.0
|
3051
|
-
Content-Type: text/plain;
|
3052
|
-
charset=UTF-8
|
3053
|
-
Content-Transfer-Encoding: 7bit
|
3054
|
-
|
3055
|
-
Test
|
3056
|
-
|
3057
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3058
|
-
[1m[35mSQL (0.3ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.919670"], ["updated_at", "2016-12-14 18:37:46.920406"], ["id", 65]]
|
3059
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3060
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3061
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.921822"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.922453"], ["id", 66]]
|
3062
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3063
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
3064
|
-
|
3065
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3066
|
-
|
3067
|
-
Sent mail to test@mail.com (1.3ms)
|
3068
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
3069
|
-
From: test@mail.com
|
3070
|
-
To: test@mail.com
|
3071
|
-
Message-ID: <5851917ae1f3b_92b3fd71983fa24137b7@imac-de-matt.mail>
|
3072
|
-
Subject: Invite
|
3073
|
-
Mime-Version: 1.0
|
3074
|
-
Content-Type: text/plain;
|
3075
|
-
charset=UTF-8
|
3076
|
-
Content-Transfer-Encoding: 7bit
|
3077
|
-
|
3078
|
-
Test
|
3079
|
-
|
3080
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3081
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.926299"], ["updated_at", "2016-12-14 18:37:46.927146"], ["id", 66]]
|
3082
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3083
|
-
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "complete"]]
|
3084
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "processing"]]
|
3085
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "pending"]]
|
3086
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3087
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3088
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.931479"], ["updated_at", "2016-12-14 18:37:46.932277"], ["id", 70]]
|
3089
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3090
|
-
[1m[36mSidejobs::Job Load (0.4ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-14 18:37:46.934104' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
3091
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3092
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.935055"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.935801"], ["id", 67]]
|
3093
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3094
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
3095
|
-
|
3096
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
3097
|
-
|
3098
|
-
Sent mail to test@mail.com (1.2ms)
|
3099
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
3100
|
-
From: test@mail.com
|
3101
|
-
To: test@mail.com
|
3102
|
-
Message-ID: <5851917ae54ee_92b3fd71983fa2413826@imac-de-matt.mail>
|
3103
|
-
Subject: Invite
|
3104
|
-
Mime-Version: 1.0
|
3105
|
-
Content-Type: text/plain;
|
3106
|
-
charset=UTF-8
|
3107
|
-
Content-Transfer-Encoding: 7bit
|
3108
|
-
|
3109
|
-
Test
|
3110
|
-
|
3111
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3112
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.939977"], ["updated_at", "2016-12-14 18:37:46.940767"], ["id", 67]]
|
3113
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3114
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3115
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.942079"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.942627"], ["id", 68]]
|
3116
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3117
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
3118
|
-
|
3119
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3120
|
-
|
3121
|
-
Sent mail to test@mail.com (1.3ms)
|
3122
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
3123
|
-
From: test@mail.com
|
3124
|
-
To: test@mail.com
|
3125
|
-
Message-ID: <5851917ae6d3d_92b3fd71983fa24139d7@imac-de-matt.mail>
|
3126
|
-
Subject: Invite
|
3127
|
-
Mime-Version: 1.0
|
3128
|
-
Content-Type: text/plain;
|
3129
|
-
charset=UTF-8
|
3130
|
-
Content-Transfer-Encoding: 7bit
|
3131
|
-
|
3132
|
-
Test
|
3133
|
-
|
3134
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3135
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.946366"], ["updated_at", "2016-12-14 18:37:46.947006"], ["id", 68]]
|
3136
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3137
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3138
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.948196"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.948865"], ["id", 69]]
|
3139
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3140
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
3141
|
-
|
3142
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3143
|
-
|
3144
|
-
Sent mail to test@mail.com (1.2ms)
|
3145
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
3146
|
-
From: test@mail.com
|
3147
|
-
To: test@mail.com
|
3148
|
-
Message-ID: <5851917ae85ef_92b3fd71983fa2414074@imac-de-matt.mail>
|
3149
|
-
Subject: Invite
|
3150
|
-
Mime-Version: 1.0
|
3151
|
-
Content-Type: text/plain;
|
3152
|
-
charset=UTF-8
|
3153
|
-
Content-Transfer-Encoding: 7bit
|
3154
|
-
|
3155
|
-
Test
|
3156
|
-
|
3157
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3158
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.952495"], ["updated_at", "2016-12-14 18:37:46.953056"], ["id", 69]]
|
3159
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3160
|
-
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "complete"]]
|
3161
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "processing"]]
|
3162
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "pending"]]
|
3163
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
3164
|
-
[1m[35m (0.1ms)[0m BEGIN
|
3165
|
-
---------------------------
|
3166
|
-
ProcessorTest: test_process
|
3167
|
-
---------------------------
|
3168
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3169
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"25a8e115-5aac-47f2-bae9-9d15e66f2d4b\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 18:37:46.957177"], ["updated_at", "2016-12-14 18:37:46.957177"]]
|
3170
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3171
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 25a8e115-5aac-47f2-bae9-9d15e66f2d4b) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3172
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-14 18:37:46.958644' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
3173
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3174
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.959372"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.959968"], ["id", 71]]
|
3175
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3176
|
-
Rendered user_mailer/invite.text.erb (0.0ms)
|
3177
|
-
|
3178
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3179
|
-
|
3180
|
-
Sent mail to test@mail.com (1.3ms)
|
3181
|
-
Date: Wed, 14 Dec 2016 15:37:46 -0300
|
3182
|
-
From: test@mail.com
|
3183
|
-
To: test@mail.com
|
3184
|
-
Message-ID: <5851917aeb13a_92b3fd71983fa2414187@imac-de-matt.mail>
|
3185
|
-
Subject: Invite
|
3186
|
-
Mime-Version: 1.0
|
3187
|
-
Content-Type: text/plain;
|
3188
|
-
charset=UTF-8
|
3189
|
-
Content-Transfer-Encoding: 7bit
|
3190
|
-
|
3191
|
-
Test
|
3192
|
-
|
3193
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3194
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "completed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "complete"], ["completed_at", "2016-12-14 18:37:46.963663"], ["updated_at", "2016-12-14 18:37:46.964321"], ["id", 71]]
|
3195
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3196
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3197
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
3198
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3199
|
-
---------------------------
|
3200
|
-
ProcessorTest: test_retries
|
3201
|
-
---------------------------
|
3202
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3203
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ShareProductsJob\",\"job_id\":\"0e0a4a5c-c49f-40df-aa96-acca9900de7d\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-12-14 18:37:46.968548"], ["updated_at", "2016-12-14 18:37:46.968548"]]
|
3204
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3205
|
-
[ActiveJob] Enqueued ShareProductsJob (Job ID: 0e0a4a5c-c49f-40df-aa96-acca9900de7d) to Sidejobs(default)
|
3206
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-14 18:37:46.970013' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
3207
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3208
|
-
[1m[36mSQL (0.3ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.970785"], ["attempts", 1], ["updated_at", "2016-12-14 18:37:46.971370"], ["id", 72]]
|
3209
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3210
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3211
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "error" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "failing"], ["failed_at", "2016-12-14 18:37:46.972954"], ["error", "Social network unavailable"], ["updated_at", "2016-12-14 18:37:46.973510"], ["id", 72]]
|
3212
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3213
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-14 18:37:46.974971' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
3214
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3215
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5 [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.975680"], ["attempts", 2], ["updated_at", "2016-12-14 18:37:46.976308"], ["id", 72]]
|
3216
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3217
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3218
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4[0m [["status", "failing"], ["failed_at", "2016-12-14 18:37:46.977676"], ["updated_at", "2016-12-14 18:37:46.978279"], ["id", 72]]
|
3219
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3220
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-14 18:37:46.979573' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20[0m
|
3221
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3222
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "attempts" = $3, "updated_at" = $4 WHERE "sidejobs"."id" = $5[0m [["status", "processing"], ["processed_at", "2016-12-14 18:37:46.980323"], ["attempts", 3], ["updated_at", "2016-12-14 18:37:46.980938"], ["id", 72]]
|
3223
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3224
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3225
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "failed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "failing"], ["failed_at", "2016-12-14 18:37:46.982387"], ["updated_at", "2016-12-14 18:37:46.982942"], ["id", 72]]
|
3226
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3227
|
-
[1m[35mSidejobs::Job Load (0.3ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-14 18:37:46.984148' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
3228
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3229
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
3230
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3231
|
-
------------------------
|
3232
|
-
DaemonTest: test_process
|
3233
|
-
------------------------
|
3234
|
-
[1m[35mSidejobs::Job Load (1.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-14 18:37:47.010632' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
3235
|
-
[1m[35mSidejobs::Job Load (1.1ms)[0m SELECT "sidejobs".* FROM "sidejobs" WHERE "sidejobs"."status" IN ('pending', 'failing') AND (attempts < 3) AND (scheduled_at <= '2016-12-14 18:37:51.022509' OR scheduled_at IS NULL) ORDER BY "sidejobs"."priority" DESC LIMIT 20
|
3236
|
-
[1m[35m (0.1ms)[0m BEGIN
|
3237
|
-
------------------------
|
3238
|
-
DaemonTest: test_pulling
|
3239
|
-
------------------------
|
3240
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
3241
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3242
|
-
[1m[35m (0.2ms)[0m BEGIN
|
3243
|
-
------------------------
|
3244
|
-
DaemonTest: test_process
|
3245
|
-
------------------------
|
3246
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3247
|
-
------------------------
|
3248
|
-
DaemonTest: test_pulling
|
3249
|
-
------------------------
|
3250
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
3251
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3252
|
-
----------------------------
|
3253
|
-
GeneratorsTest: test_install
|
3254
|
-
----------------------------
|
3255
|
-
[1m[35m (0.2ms)[0m ROLLBACK
|
3256
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3257
|
-
-----------------------
|
3258
|
-
QueueTest: test_enqueue
|
3259
|
-
-----------------------
|
3260
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
3261
|
-
[ActiveJob] [1m[36mSQL (0.6ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"ce622557-279e-451a-bb62-fec8d85db44a\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.461744"], ["updated_at", "2016-12-14 19:09:03.461744"]]
|
3262
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3263
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: ce622557-279e-451a-bb62-fec8d85db44a) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3264
|
-
[1m[36mSidejobs::Job Load (0.5ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3265
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
3266
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"4eaf57d0-482b-4940-bba9-8860e405a61a\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["created_at", "2016-12-14 19:09:03.470226"], ["updated_at", "2016-12-14 19:09:03.470226"]]
|
3267
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3268
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: 4eaf57d0-482b-4940-bba9-8860e405a61a) to Sidejobs(high_priority)
|
3269
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3270
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3271
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"0a150057-8166-4300-adf7-fb1ef4ecb432\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-12-14 19:09:03.474562"], ["updated_at", "2016-12-14 19:09:03.474562"]]
|
3272
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3273
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: 0a150057-8166-4300-adf7-fb1ef4ecb432) to Sidejobs(default)
|
3274
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3275
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3276
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"99e866a4-2e8a-4c69-95e8-1e51f05f3db2\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["created_at", "2016-12-14 19:09:03.478548"], ["updated_at", "2016-12-14 19:09:03.478548"]]
|
3277
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
3278
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: 99e866a4-2e8a-4c69-95e8-1e51f05f3db2) to Sidejobs(low_priority)
|
3279
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3280
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3281
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"f188912c-2234-46b6-b52e-e494e9e2761a\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["created_at", "2016-12-14 19:09:03.487969"], ["updated_at", "2016-12-14 19:09:03.487969"]]
|
3282
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3283
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: f188912c-2234-46b6-b52e-e494e9e2761a) to Sidejobs(other)
|
3284
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3285
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3286
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"cb4d8d5e-1352-45f0-b3b3-5aa036e2de44\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["scheduled_at", "2016-12-15 05:09:03.490195"], ["created_at", "2016-12-14 19:09:03.491026"], ["updated_at", "2016-12-14 19:09:03.491026"]]
|
3287
|
-
[ActiveJob] [1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
3288
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: cb4d8d5e-1352-45f0-b3b3-5aa036e2de44) to Sidejobs(mailers) at 2016-12-15 05:09:03 UTC with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3289
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3290
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3291
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"ChargeSubscriptionsJob\",\"job_id\":\"1ad73eae-5046-41ea-bceb-43a99cfc69d8\",\"queue_name\":\"high_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "high_priority"], ["priority", 60], ["scheduled_at", "2016-12-15 05:09:03.490195"], ["created_at", "2016-12-14 19:09:03.494017"], ["updated_at", "2016-12-14 19:09:03.494017"]]
|
3292
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3293
|
-
[ActiveJob] Enqueued ChargeSubscriptionsJob (Job ID: 1ad73eae-5046-41ea-bceb-43a99cfc69d8) to Sidejobs(high_priority) at 2016-12-15 05:09:03 UTC
|
3294
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3295
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3296
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"SendNewslettersJob\",\"job_id\":\"90a5cca2-d383-44d0-9d18-c8853b1387aa\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["scheduled_at", "2016-12-15 05:09:03.490195"], ["created_at", "2016-12-14 19:09:03.496696"], ["updated_at", "2016-12-14 19:09:03.496696"]]
|
3297
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3298
|
-
[ActiveJob] Enqueued SendNewslettersJob (Job ID: 90a5cca2-d383-44d0-9d18-c8853b1387aa) to Sidejobs(default) at 2016-12-15 05:09:03 UTC
|
3299
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3300
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3301
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["data", "{\"job_class\":\"UpdateExchangesJob\",\"job_id\":\"20bb623b-5f25-40d1-a9dc-43aa2eb79deb\",\"queue_name\":\"low_priority\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "low_priority"], ["priority", 20], ["scheduled_at", "2016-12-15 05:09:03.490195"], ["created_at", "2016-12-14 19:09:03.499341"], ["updated_at", "2016-12-14 19:09:03.499341"]]
|
3302
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3303
|
-
[ActiveJob] Enqueued UpdateExchangesJob (Job ID: 20bb623b-5f25-40d1-a9dc-43aa2eb79deb) to Sidejobs(low_priority) at 2016-12-15 05:09:03 UTC
|
3304
|
-
[1m[36mSidejobs::Job Load (0.3ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3305
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3306
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "scheduled_at", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ClearGuestUsersJob\",\"job_id\":\"136985ad-f76d-441b-9a72-08d798f2f415\",\"queue_name\":\"other\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "other"], ["scheduled_at", "2016-12-15 05:09:03.490195"], ["created_at", "2016-12-14 19:09:03.502084"], ["updated_at", "2016-12-14 19:09:03.502084"]]
|
3307
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3308
|
-
[ActiveJob] Enqueued ClearGuestUsersJob (Job ID: 136985ad-f76d-441b-9a72-08d798f2f415) to Sidejobs(other) at 2016-12-15 05:09:03 UTC
|
3309
|
-
[1m[36mSidejobs::Job Load (0.2ms)[0m [1mSELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1[0m
|
3310
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
3311
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3312
|
-
-------------------------
|
3313
|
-
ProcessorTest: test_batch
|
3314
|
-
-------------------------
|
3315
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3316
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"62c462a7-f5a3-420d-bda9-3b2f29b7ada4\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.506011"], ["updated_at", "2016-12-14 19:09:03.506011"]]
|
3317
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3318
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 62c462a7-f5a3-420d-bda9-3b2f29b7ada4) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3319
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3320
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"bfca346e-ce38-496a-8f2c-55b0c085d314\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.508080"], ["updated_at", "2016-12-14 19:09:03.508080"]]
|
3321
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3322
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: bfca346e-ce38-496a-8f2c-55b0c085d314) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3323
|
-
[ActiveJob] [1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
3324
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"1b1c8051-78a8-4d49-8818-2c036aa33932\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.510142"], ["updated_at", "2016-12-14 19:09:03.510142"]]
|
3325
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3326
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 1b1c8051-78a8-4d49-8818-2c036aa33932) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3327
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3328
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"1959e676-176a-4171-9018-a2c09225ab12\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.512239"], ["updated_at", "2016-12-14 19:09:03.512239"]]
|
3329
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3330
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 1959e676-176a-4171-9018-a2c09225ab12) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3331
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3332
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"de17dec6-e3bc-4c50-8f29-fb983b08aebf\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.514329"], ["updated_at", "2016-12-14 19:09:03.514329"]]
|
3333
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3334
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: de17dec6-e3bc-4c50-8f29-fb983b08aebf) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3335
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3336
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"54c4369f-16d4-442d-a967-cf2900f5fed0\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.516393"], ["updated_at", "2016-12-14 19:09:03.516393"]]
|
3337
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3338
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 54c4369f-16d4-442d-a967-cf2900f5fed0) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3339
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3340
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"abe6597c-8460-40e7-99cd-ad79bc8201e8\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.518466"], ["updated_at", "2016-12-14 19:09:03.518466"]]
|
3341
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3342
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: abe6597c-8460-40e7-99cd-ad79bc8201e8) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3343
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3344
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"99e59ff2-11ab-4bc2-b43d-ee604fc85e75\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.520485"], ["updated_at", "2016-12-14 19:09:03.520485"]]
|
3345
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3346
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 99e59ff2-11ab-4bc2-b43d-ee604fc85e75) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3347
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3348
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"ccf76adc-bf9e-46f9-8e4a-7298c61587e2\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.522386"], ["updated_at", "2016-12-14 19:09:03.522386"]]
|
3349
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3350
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: ccf76adc-bf9e-46f9-8e4a-7298c61587e2) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3351
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3352
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"5cdd00e6-dbc7-4b27-88ad-62829534364a\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.524347"], ["updated_at", "2016-12-14 19:09:03.524347"]]
|
3353
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3354
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 5cdd00e6-dbc7-4b27-88ad-62829534364a) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3355
|
-
[ActiveJob] [1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
3356
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"7a8f166b-1706-4e3c-9740-ba77318295a0\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.526855"], ["updated_at", "2016-12-14 19:09:03.526855"]]
|
3357
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3358
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 7a8f166b-1706-4e3c-9740-ba77318295a0) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3359
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3360
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"74999634-3245-4de0-87c2-b85b8aefb684\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.528987"], ["updated_at", "2016-12-14 19:09:03.528987"]]
|
3361
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3362
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 74999634-3245-4de0-87c2-b85b8aefb684) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3363
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3364
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"1e9d0522-cd61-4f30-bd81-4035ede65b42\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.531080"], ["updated_at", "2016-12-14 19:09:03.531080"]]
|
3365
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3366
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 1e9d0522-cd61-4f30-bd81-4035ede65b42) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3367
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3368
|
-
[ActiveJob] [1m[35mSQL (0.1ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"11dff333-1da2-4cfc-a5a9-7b37c6bcd3f2\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.532959"], ["updated_at", "2016-12-14 19:09:03.532959"]]
|
3369
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3370
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 11dff333-1da2-4cfc-a5a9-7b37c6bcd3f2) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3371
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3372
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"7062cc78-82fa-492b-8694-ed7ee3e5eea0\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.534931"], ["updated_at", "2016-12-14 19:09:03.534931"]]
|
3373
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3374
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 7062cc78-82fa-492b-8694-ed7ee3e5eea0) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3375
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3376
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"5b6e503f-ba41-4b3c-a42a-64ccadd92811\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.537616"], ["updated_at", "2016-12-14 19:09:03.537616"]]
|
3377
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3378
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 5b6e503f-ba41-4b3c-a42a-64ccadd92811) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3379
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3380
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"860ffd1b-6eed-49c9-abe0-e467023b75f6\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.539773"], ["updated_at", "2016-12-14 19:09:03.539773"]]
|
3381
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3382
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 860ffd1b-6eed-49c9-abe0-e467023b75f6) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3383
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3384
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"7c128362-f2a5-4229-a09d-954533240b9d\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.541778"], ["updated_at", "2016-12-14 19:09:03.541778"]]
|
3385
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3386
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 7c128362-f2a5-4229-a09d-954533240b9d) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3387
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3388
|
-
[ActiveJob] [1m[36mSQL (0.3ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"fc4bbf02-d2cc-43c4-bf0b-b1601e947366\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.543842"], ["updated_at", "2016-12-14 19:09:03.543842"]]
|
3389
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3390
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: fc4bbf02-d2cc-43c4-bf0b-b1601e947366) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3391
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3392
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"3fe81234-c498-4e01-9599-1fa7b82a8397\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.545850"], ["updated_at", "2016-12-14 19:09:03.545850"]]
|
3393
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3394
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 3fe81234-c498-4e01-9599-1fa7b82a8397) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3395
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3396
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"f960d5c9-6cb0-416b-8a85-46ebf2f96cf4\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.547819"], ["updated_at", "2016-12-14 19:09:03.547819"]]
|
3397
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3398
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: f960d5c9-6cb0-416b-8a85-46ebf2f96cf4) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3399
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3400
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"fbfd8888-e664-47e5-b50f-0a29642122d5\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.549811"], ["updated_at", "2016-12-14 19:09:03.549811"]]
|
3401
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3402
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: fbfd8888-e664-47e5-b50f-0a29642122d5) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3403
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3404
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"721c6eb7-5dbf-4573-a8fd-90676e312901\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.551848"], ["updated_at", "2016-12-14 19:09:03.551848"]]
|
3405
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3406
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 721c6eb7-5dbf-4573-a8fd-90676e312901) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3407
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3408
|
-
[ActiveJob] [1m[35mSQL (0.2ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"a0cb494b-9029-4107-bf4f-bdd49cb17018\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.553842"], ["updated_at", "2016-12-14 19:09:03.553842"]]
|
3409
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3410
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: a0cb494b-9029-4107-bf4f-bdd49cb17018) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3411
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [62c462a7-f5a3-420d-bda9-3b2f29b7ada4] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3412
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [62c462a7-f5a3-420d-bda9-3b2f29b7ada4] Rendered user_mailer/invite.text.erb (1.1ms)
|
3413
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [62c462a7-f5a3-420d-bda9-3b2f29b7ada4]
|
3414
|
-
UserMailer#invite: processed outbound mail in 146.8ms
|
3415
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [62c462a7-f5a3-420d-bda9-3b2f29b7ada4]
|
3416
|
-
Sent mail to test@mail.com (7.5ms)
|
3417
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [62c462a7-f5a3-420d-bda9-3b2f29b7ada4] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3418
|
-
From: test@mail.com
|
3419
|
-
To: test@mail.com
|
3420
|
-
Message-ID: <585198cfafdb5_10a83fef1a03fa0448644@imac-de-matt.mail>
|
3421
|
-
Subject: Invite
|
3422
|
-
Mime-Version: 1.0
|
3423
|
-
Content-Type: text/plain;
|
3424
|
-
charset=UTF-8
|
3425
|
-
Content-Transfer-Encoding: 7bit
|
3426
|
-
|
3427
|
-
Test
|
3428
|
-
|
3429
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [62c462a7-f5a3-420d-bda9-3b2f29b7ada4] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 159.0ms
|
3430
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [bfca346e-ce38-496a-8f2c-55b0c085d314] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3431
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [bfca346e-ce38-496a-8f2c-55b0c085d314] Rendered user_mailer/invite.text.erb (0.0ms)
|
3432
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [bfca346e-ce38-496a-8f2c-55b0c085d314]
|
3433
|
-
UserMailer#invite: processed outbound mail in 0.8ms
|
3434
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [bfca346e-ce38-496a-8f2c-55b0c085d314]
|
3435
|
-
Sent mail to test@mail.com (1.2ms)
|
3436
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [bfca346e-ce38-496a-8f2c-55b0c085d314] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3437
|
-
From: test@mail.com
|
3438
|
-
To: test@mail.com
|
3439
|
-
Message-ID: <585198cfb210a_10a83fef1a03fa04487c@imac-de-matt.mail>
|
3440
|
-
Subject: Invite
|
3441
|
-
Mime-Version: 1.0
|
3442
|
-
Content-Type: text/plain;
|
3443
|
-
charset=UTF-8
|
3444
|
-
Content-Transfer-Encoding: 7bit
|
3445
|
-
|
3446
|
-
Test
|
3447
|
-
|
3448
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [bfca346e-ce38-496a-8f2c-55b0c085d314] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.18ms
|
3449
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1b1c8051-78a8-4d49-8818-2c036aa33932] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3450
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1b1c8051-78a8-4d49-8818-2c036aa33932] Rendered user_mailer/invite.text.erb (0.0ms)
|
3451
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1b1c8051-78a8-4d49-8818-2c036aa33932]
|
3452
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3453
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1b1c8051-78a8-4d49-8818-2c036aa33932]
|
3454
|
-
Sent mail to test@mail.com (1.0ms)
|
3455
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1b1c8051-78a8-4d49-8818-2c036aa33932] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3456
|
-
From: test@mail.com
|
3457
|
-
To: test@mail.com
|
3458
|
-
Message-ID: <585198cfb384b_10a83fef1a03fa0448869@imac-de-matt.mail>
|
3459
|
-
Subject: Invite
|
3460
|
-
Mime-Version: 1.0
|
3461
|
-
Content-Type: text/plain;
|
3462
|
-
charset=UTF-8
|
3463
|
-
Content-Transfer-Encoding: 7bit
|
3464
|
-
|
3465
|
-
Test
|
3466
|
-
|
3467
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1b1c8051-78a8-4d49-8818-2c036aa33932] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.87ms
|
3468
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1959e676-176a-4171-9018-a2c09225ab12] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3469
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1959e676-176a-4171-9018-a2c09225ab12] Rendered user_mailer/invite.text.erb (0.0ms)
|
3470
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1959e676-176a-4171-9018-a2c09225ab12]
|
3471
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3472
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1959e676-176a-4171-9018-a2c09225ab12]
|
3473
|
-
Sent mail to test@mail.com (1.2ms)
|
3474
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1959e676-176a-4171-9018-a2c09225ab12] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3475
|
-
From: test@mail.com
|
3476
|
-
To: test@mail.com
|
3477
|
-
Message-ID: <585198cfb506f_10a83fef1a03fa0448932@imac-de-matt.mail>
|
3478
|
-
Subject: Invite
|
3479
|
-
Mime-Version: 1.0
|
3480
|
-
Content-Type: text/plain;
|
3481
|
-
charset=UTF-8
|
3482
|
-
Content-Transfer-Encoding: 7bit
|
3483
|
-
|
3484
|
-
Test
|
3485
|
-
|
3486
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1959e676-176a-4171-9018-a2c09225ab12] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.1ms
|
3487
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [de17dec6-e3bc-4c50-8f29-fb983b08aebf] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3488
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [de17dec6-e3bc-4c50-8f29-fb983b08aebf] Rendered user_mailer/invite.text.erb (0.1ms)
|
3489
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [de17dec6-e3bc-4c50-8f29-fb983b08aebf]
|
3490
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3491
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [de17dec6-e3bc-4c50-8f29-fb983b08aebf]
|
3492
|
-
Sent mail to test@mail.com (1.2ms)
|
3493
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [de17dec6-e3bc-4c50-8f29-fb983b08aebf] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3494
|
-
From: test@mail.com
|
3495
|
-
To: test@mail.com
|
3496
|
-
Message-ID: <585198cfb6cd7_10a83fef1a03fa0449027@imac-de-matt.mail>
|
3497
|
-
Subject: Invite
|
3498
|
-
Mime-Version: 1.0
|
3499
|
-
Content-Type: text/plain;
|
3500
|
-
charset=UTF-8
|
3501
|
-
Content-Transfer-Encoding: 7bit
|
3502
|
-
|
3503
|
-
Test
|
3504
|
-
|
3505
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [de17dec6-e3bc-4c50-8f29-fb983b08aebf] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.29ms
|
3506
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [54c4369f-16d4-442d-a967-cf2900f5fed0] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3507
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [54c4369f-16d4-442d-a967-cf2900f5fed0] Rendered user_mailer/invite.text.erb (0.0ms)
|
3508
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [54c4369f-16d4-442d-a967-cf2900f5fed0]
|
3509
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3510
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [54c4369f-16d4-442d-a967-cf2900f5fed0]
|
3511
|
-
Sent mail to test@mail.com (1.1ms)
|
3512
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [54c4369f-16d4-442d-a967-cf2900f5fed0] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3513
|
-
From: test@mail.com
|
3514
|
-
To: test@mail.com
|
3515
|
-
Message-ID: <585198cfb854b_10a83fef1a03fa044914d@imac-de-matt.mail>
|
3516
|
-
Subject: Invite
|
3517
|
-
Mime-Version: 1.0
|
3518
|
-
Content-Type: text/plain;
|
3519
|
-
charset=UTF-8
|
3520
|
-
Content-Transfer-Encoding: 7bit
|
3521
|
-
|
3522
|
-
Test
|
3523
|
-
|
3524
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [54c4369f-16d4-442d-a967-cf2900f5fed0] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.08ms
|
3525
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [abe6597c-8460-40e7-99cd-ad79bc8201e8] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3526
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [abe6597c-8460-40e7-99cd-ad79bc8201e8] Rendered user_mailer/invite.text.erb (0.0ms)
|
3527
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [abe6597c-8460-40e7-99cd-ad79bc8201e8]
|
3528
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3529
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [abe6597c-8460-40e7-99cd-ad79bc8201e8]
|
3530
|
-
Sent mail to test@mail.com (1.2ms)
|
3531
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [abe6597c-8460-40e7-99cd-ad79bc8201e8] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3532
|
-
From: test@mail.com
|
3533
|
-
To: test@mail.com
|
3534
|
-
Message-ID: <585198cfb9d10_10a83fef1a03fa04492bc@imac-de-matt.mail>
|
3535
|
-
Subject: Invite
|
3536
|
-
Mime-Version: 1.0
|
3537
|
-
Content-Type: text/plain;
|
3538
|
-
charset=UTF-8
|
3539
|
-
Content-Transfer-Encoding: 7bit
|
3540
|
-
|
3541
|
-
Test
|
3542
|
-
|
3543
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [abe6597c-8460-40e7-99cd-ad79bc8201e8] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.22ms
|
3544
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [99e59ff2-11ab-4bc2-b43d-ee604fc85e75] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3545
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [99e59ff2-11ab-4bc2-b43d-ee604fc85e75] Rendered user_mailer/invite.text.erb (0.0ms)
|
3546
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [99e59ff2-11ab-4bc2-b43d-ee604fc85e75]
|
3547
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3548
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [99e59ff2-11ab-4bc2-b43d-ee604fc85e75]
|
3549
|
-
Sent mail to test@mail.com (1.1ms)
|
3550
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [99e59ff2-11ab-4bc2-b43d-ee604fc85e75] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3551
|
-
From: test@mail.com
|
3552
|
-
To: test@mail.com
|
3553
|
-
Message-ID: <585198cfbb67d_10a83fef1a03fa04493d@imac-de-matt.mail>
|
3554
|
-
Subject: Invite
|
3555
|
-
Mime-Version: 1.0
|
3556
|
-
Content-Type: text/plain;
|
3557
|
-
charset=UTF-8
|
3558
|
-
Content-Transfer-Encoding: 7bit
|
3559
|
-
|
3560
|
-
Test
|
3561
|
-
|
3562
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [99e59ff2-11ab-4bc2-b43d-ee604fc85e75] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.06ms
|
3563
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [ccf76adc-bf9e-46f9-8e4a-7298c61587e2] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3564
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [ccf76adc-bf9e-46f9-8e4a-7298c61587e2] Rendered user_mailer/invite.text.erb (0.0ms)
|
3565
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [ccf76adc-bf9e-46f9-8e4a-7298c61587e2]
|
3566
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3567
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [ccf76adc-bf9e-46f9-8e4a-7298c61587e2]
|
3568
|
-
Sent mail to test@mail.com (1.0ms)
|
3569
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [ccf76adc-bf9e-46f9-8e4a-7298c61587e2] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3570
|
-
From: test@mail.com
|
3571
|
-
To: test@mail.com
|
3572
|
-
Message-ID: <585198cfbcce7_10a83fef1a03fa04494d9@imac-de-matt.mail>
|
3573
|
-
Subject: Invite
|
3574
|
-
Mime-Version: 1.0
|
3575
|
-
Content-Type: text/plain;
|
3576
|
-
charset=UTF-8
|
3577
|
-
Content-Transfer-Encoding: 7bit
|
3578
|
-
|
3579
|
-
Test
|
3580
|
-
|
3581
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [ccf76adc-bf9e-46f9-8e4a-7298c61587e2] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.75ms
|
3582
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5cdd00e6-dbc7-4b27-88ad-62829534364a] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3583
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5cdd00e6-dbc7-4b27-88ad-62829534364a] Rendered user_mailer/invite.text.erb (0.0ms)
|
3584
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5cdd00e6-dbc7-4b27-88ad-62829534364a]
|
3585
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3586
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5cdd00e6-dbc7-4b27-88ad-62829534364a]
|
3587
|
-
Sent mail to test@mail.com (1.0ms)
|
3588
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5cdd00e6-dbc7-4b27-88ad-62829534364a] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3589
|
-
From: test@mail.com
|
3590
|
-
To: test@mail.com
|
3591
|
-
Message-ID: <585198cfbe2e4_10a83fef1a03fa04495ea@imac-de-matt.mail>
|
3592
|
-
Subject: Invite
|
3593
|
-
Mime-Version: 1.0
|
3594
|
-
Content-Type: text/plain;
|
3595
|
-
charset=UTF-8
|
3596
|
-
Content-Transfer-Encoding: 7bit
|
3597
|
-
|
3598
|
-
Test
|
3599
|
-
|
3600
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5cdd00e6-dbc7-4b27-88ad-62829534364a] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.81ms
|
3601
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7a8f166b-1706-4e3c-9740-ba77318295a0] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3602
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7a8f166b-1706-4e3c-9740-ba77318295a0] Rendered user_mailer/invite.text.erb (0.0ms)
|
3603
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7a8f166b-1706-4e3c-9740-ba77318295a0]
|
3604
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3605
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7a8f166b-1706-4e3c-9740-ba77318295a0]
|
3606
|
-
Sent mail to test@mail.com (1.0ms)
|
3607
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7a8f166b-1706-4e3c-9740-ba77318295a0] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3608
|
-
From: test@mail.com
|
3609
|
-
To: test@mail.com
|
3610
|
-
Message-ID: <585198cfbf8d3_10a83fef1a03fa0449667@imac-de-matt.mail>
|
3611
|
-
Subject: Invite
|
3612
|
-
Mime-Version: 1.0
|
3613
|
-
Content-Type: text/plain;
|
3614
|
-
charset=UTF-8
|
3615
|
-
Content-Transfer-Encoding: 7bit
|
3616
|
-
|
3617
|
-
Test
|
3618
|
-
|
3619
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7a8f166b-1706-4e3c-9740-ba77318295a0] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.81ms
|
3620
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [74999634-3245-4de0-87c2-b85b8aefb684] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3621
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [74999634-3245-4de0-87c2-b85b8aefb684] Rendered user_mailer/invite.text.erb (0.0ms)
|
3622
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [74999634-3245-4de0-87c2-b85b8aefb684]
|
3623
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3624
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [74999634-3245-4de0-87c2-b85b8aefb684]
|
3625
|
-
Sent mail to test@mail.com (1.0ms)
|
3626
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [74999634-3245-4de0-87c2-b85b8aefb684] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3627
|
-
From: test@mail.com
|
3628
|
-
To: test@mail.com
|
3629
|
-
Message-ID: <585198cfc0ef0_10a83fef1a03fa04497c6@imac-de-matt.mail>
|
3630
|
-
Subject: Invite
|
3631
|
-
Mime-Version: 1.0
|
3632
|
-
Content-Type: text/plain;
|
3633
|
-
charset=UTF-8
|
3634
|
-
Content-Transfer-Encoding: 7bit
|
3635
|
-
|
3636
|
-
Test
|
3637
|
-
|
3638
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [74999634-3245-4de0-87c2-b85b8aefb684] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.91ms
|
3639
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1e9d0522-cd61-4f30-bd81-4035ede65b42] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3640
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1e9d0522-cd61-4f30-bd81-4035ede65b42] Rendered user_mailer/invite.text.erb (0.0ms)
|
3641
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1e9d0522-cd61-4f30-bd81-4035ede65b42]
|
3642
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3643
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1e9d0522-cd61-4f30-bd81-4035ede65b42]
|
3644
|
-
Sent mail to test@mail.com (1.0ms)
|
3645
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1e9d0522-cd61-4f30-bd81-4035ede65b42] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3646
|
-
From: test@mail.com
|
3647
|
-
To: test@mail.com
|
3648
|
-
Message-ID: <585198cfc2530_10a83fef1a03fa0449858@imac-de-matt.mail>
|
3649
|
-
Subject: Invite
|
3650
|
-
Mime-Version: 1.0
|
3651
|
-
Content-Type: text/plain;
|
3652
|
-
charset=UTF-8
|
3653
|
-
Content-Transfer-Encoding: 7bit
|
3654
|
-
|
3655
|
-
Test
|
3656
|
-
|
3657
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [1e9d0522-cd61-4f30-bd81-4035ede65b42] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.96ms
|
3658
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [11dff333-1da2-4cfc-a5a9-7b37c6bcd3f2] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3659
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [11dff333-1da2-4cfc-a5a9-7b37c6bcd3f2] Rendered user_mailer/invite.text.erb (0.0ms)
|
3660
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [11dff333-1da2-4cfc-a5a9-7b37c6bcd3f2]
|
3661
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3662
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [11dff333-1da2-4cfc-a5a9-7b37c6bcd3f2]
|
3663
|
-
Sent mail to test@mail.com (1.0ms)
|
3664
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [11dff333-1da2-4cfc-a5a9-7b37c6bcd3f2] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3665
|
-
From: test@mail.com
|
3666
|
-
To: test@mail.com
|
3667
|
-
Message-ID: <585198cfc3aab_10a83fef1a03fa04499ea@imac-de-matt.mail>
|
3668
|
-
Subject: Invite
|
3669
|
-
Mime-Version: 1.0
|
3670
|
-
Content-Type: text/plain;
|
3671
|
-
charset=UTF-8
|
3672
|
-
Content-Transfer-Encoding: 7bit
|
3673
|
-
|
3674
|
-
Test
|
3675
|
-
|
3676
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [11dff333-1da2-4cfc-a5a9-7b37c6bcd3f2] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.83ms
|
3677
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7062cc78-82fa-492b-8694-ed7ee3e5eea0] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3678
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7062cc78-82fa-492b-8694-ed7ee3e5eea0] Rendered user_mailer/invite.text.erb (0.0ms)
|
3679
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7062cc78-82fa-492b-8694-ed7ee3e5eea0]
|
3680
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3681
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7062cc78-82fa-492b-8694-ed7ee3e5eea0]
|
3682
|
-
Sent mail to test@mail.com (1.0ms)
|
3683
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7062cc78-82fa-492b-8694-ed7ee3e5eea0] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3684
|
-
From: test@mail.com
|
3685
|
-
To: test@mail.com
|
3686
|
-
Message-ID: <585198cfc4f72_10a83fef1a03fa0450013@imac-de-matt.mail>
|
3687
|
-
Subject: Invite
|
3688
|
-
Mime-Version: 1.0
|
3689
|
-
Content-Type: text/plain;
|
3690
|
-
charset=UTF-8
|
3691
|
-
Content-Transfer-Encoding: 7bit
|
3692
|
-
|
3693
|
-
Test
|
3694
|
-
|
3695
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7062cc78-82fa-492b-8694-ed7ee3e5eea0] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.82ms
|
3696
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5b6e503f-ba41-4b3c-a42a-64ccadd92811] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3697
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5b6e503f-ba41-4b3c-a42a-64ccadd92811] Rendered user_mailer/invite.text.erb (0.0ms)
|
3698
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5b6e503f-ba41-4b3c-a42a-64ccadd92811]
|
3699
|
-
UserMailer#invite: processed outbound mail in 0.5ms
|
3700
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5b6e503f-ba41-4b3c-a42a-64ccadd92811]
|
3701
|
-
Sent mail to test@mail.com (1.1ms)
|
3702
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5b6e503f-ba41-4b3c-a42a-64ccadd92811] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3703
|
-
From: test@mail.com
|
3704
|
-
To: test@mail.com
|
3705
|
-
Message-ID: <585198cfc6463_10a83fef1a03fa045016b@imac-de-matt.mail>
|
3706
|
-
Subject: Invite
|
3707
|
-
Mime-Version: 1.0
|
3708
|
-
Content-Type: text/plain;
|
3709
|
-
charset=UTF-8
|
3710
|
-
Content-Transfer-Encoding: 7bit
|
3711
|
-
|
3712
|
-
Test
|
3713
|
-
|
3714
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [5b6e503f-ba41-4b3c-a42a-64ccadd92811] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.84ms
|
3715
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [860ffd1b-6eed-49c9-abe0-e467023b75f6] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3716
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [860ffd1b-6eed-49c9-abe0-e467023b75f6] Rendered user_mailer/invite.text.erb (0.0ms)
|
3717
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [860ffd1b-6eed-49c9-abe0-e467023b75f6]
|
3718
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3719
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [860ffd1b-6eed-49c9-abe0-e467023b75f6]
|
3720
|
-
Sent mail to test@mail.com (1.2ms)
|
3721
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [860ffd1b-6eed-49c9-abe0-e467023b75f6] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3722
|
-
From: test@mail.com
|
3723
|
-
To: test@mail.com
|
3724
|
-
Message-ID: <585198cfc7af7_10a83fef1a03fa045029e@imac-de-matt.mail>
|
3725
|
-
Subject: Invite
|
3726
|
-
Mime-Version: 1.0
|
3727
|
-
Content-Type: text/plain;
|
3728
|
-
charset=UTF-8
|
3729
|
-
Content-Transfer-Encoding: 7bit
|
3730
|
-
|
3731
|
-
Test
|
3732
|
-
|
3733
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [860ffd1b-6eed-49c9-abe0-e467023b75f6] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.97ms
|
3734
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7c128362-f2a5-4229-a09d-954533240b9d] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3735
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7c128362-f2a5-4229-a09d-954533240b9d] Rendered user_mailer/invite.text.erb (0.0ms)
|
3736
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7c128362-f2a5-4229-a09d-954533240b9d]
|
3737
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3738
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7c128362-f2a5-4229-a09d-954533240b9d]
|
3739
|
-
Sent mail to test@mail.com (1.1ms)
|
3740
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7c128362-f2a5-4229-a09d-954533240b9d] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3741
|
-
From: test@mail.com
|
3742
|
-
To: test@mail.com
|
3743
|
-
Message-ID: <585198cfc9345_10a83fef1a03fa0450376@imac-de-matt.mail>
|
3744
|
-
Subject: Invite
|
3745
|
-
Mime-Version: 1.0
|
3746
|
-
Content-Type: text/plain;
|
3747
|
-
charset=UTF-8
|
3748
|
-
Content-Transfer-Encoding: 7bit
|
3749
|
-
|
3750
|
-
Test
|
3751
|
-
|
3752
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [7c128362-f2a5-4229-a09d-954533240b9d] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.07ms
|
3753
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fc4bbf02-d2cc-43c4-bf0b-b1601e947366] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3754
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fc4bbf02-d2cc-43c4-bf0b-b1601e947366] Rendered user_mailer/invite.text.erb (0.0ms)
|
3755
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fc4bbf02-d2cc-43c4-bf0b-b1601e947366]
|
3756
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3757
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fc4bbf02-d2cc-43c4-bf0b-b1601e947366]
|
3758
|
-
Sent mail to test@mail.com (1.1ms)
|
3759
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fc4bbf02-d2cc-43c4-bf0b-b1601e947366] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3760
|
-
From: test@mail.com
|
3761
|
-
To: test@mail.com
|
3762
|
-
Message-ID: <585198cfca9fa_10a83fef1a03fa045041a@imac-de-matt.mail>
|
3763
|
-
Subject: Invite
|
3764
|
-
Mime-Version: 1.0
|
3765
|
-
Content-Type: text/plain;
|
3766
|
-
charset=UTF-8
|
3767
|
-
Content-Transfer-Encoding: 7bit
|
3768
|
-
|
3769
|
-
Test
|
3770
|
-
|
3771
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fc4bbf02-d2cc-43c4-bf0b-b1601e947366] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.95ms
|
3772
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [3fe81234-c498-4e01-9599-1fa7b82a8397] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3773
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [3fe81234-c498-4e01-9599-1fa7b82a8397] Rendered user_mailer/invite.text.erb (0.0ms)
|
3774
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [3fe81234-c498-4e01-9599-1fa7b82a8397]
|
3775
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3776
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [3fe81234-c498-4e01-9599-1fa7b82a8397]
|
3777
|
-
Sent mail to test@mail.com (1.1ms)
|
3778
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [3fe81234-c498-4e01-9599-1fa7b82a8397] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3779
|
-
From: test@mail.com
|
3780
|
-
To: test@mail.com
|
3781
|
-
Message-ID: <585198cfcc04c_10a83fef1a03fa045051d@imac-de-matt.mail>
|
3782
|
-
Subject: Invite
|
3783
|
-
Mime-Version: 1.0
|
3784
|
-
Content-Type: text/plain;
|
3785
|
-
charset=UTF-8
|
3786
|
-
Content-Transfer-Encoding: 7bit
|
3787
|
-
|
3788
|
-
Test
|
3789
|
-
|
3790
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [3fe81234-c498-4e01-9599-1fa7b82a8397] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.0ms
|
3791
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "complete"]]
|
3792
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "processing"]]
|
3793
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "pending"]]
|
3794
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
3795
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3796
|
-
[1m[35mSQL (0.2ms)[0m UPDATE "sidejobs" SET "status" = $1, "processed_at" = $2, "updated_at" = $3 WHERE "sidejobs"."id" = $4 [["status", "processing"], ["processed_at", "2016-12-14 19:09:03.840592"], ["updated_at", "2016-12-14 19:09:03.841222"], ["id", 106]]
|
3797
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3798
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [f960d5c9-6cb0-416b-8a85-46ebf2f96cf4] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3799
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [f960d5c9-6cb0-416b-8a85-46ebf2f96cf4] Rendered user_mailer/invite.text.erb (0.0ms)
|
3800
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [f960d5c9-6cb0-416b-8a85-46ebf2f96cf4]
|
3801
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3802
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [f960d5c9-6cb0-416b-8a85-46ebf2f96cf4]
|
3803
|
-
Sent mail to test@mail.com (1.2ms)
|
3804
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [f960d5c9-6cb0-416b-8a85-46ebf2f96cf4] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3805
|
-
From: test@mail.com
|
3806
|
-
To: test@mail.com
|
3807
|
-
Message-ID: <585198cfcebb8_10a83fef1a03fa04506f3@imac-de-matt.mail>
|
3808
|
-
Subject: Invite
|
3809
|
-
Mime-Version: 1.0
|
3810
|
-
Content-Type: text/plain;
|
3811
|
-
charset=UTF-8
|
3812
|
-
Content-Transfer-Encoding: 7bit
|
3813
|
-
|
3814
|
-
Test
|
3815
|
-
|
3816
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [f960d5c9-6cb0-416b-8a85-46ebf2f96cf4] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.06ms
|
3817
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fbfd8888-e664-47e5-b50f-0a29642122d5] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3818
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fbfd8888-e664-47e5-b50f-0a29642122d5] Rendered user_mailer/invite.text.erb (0.0ms)
|
3819
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fbfd8888-e664-47e5-b50f-0a29642122d5]
|
3820
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3821
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fbfd8888-e664-47e5-b50f-0a29642122d5]
|
3822
|
-
Sent mail to test@mail.com (1.1ms)
|
3823
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fbfd8888-e664-47e5-b50f-0a29642122d5] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3824
|
-
From: test@mail.com
|
3825
|
-
To: test@mail.com
|
3826
|
-
Message-ID: <585198cfd01c6_10a83fef1a03fa0450712@imac-de-matt.mail>
|
3827
|
-
Subject: Invite
|
3828
|
-
Mime-Version: 1.0
|
3829
|
-
Content-Type: text/plain;
|
3830
|
-
charset=UTF-8
|
3831
|
-
Content-Transfer-Encoding: 7bit
|
3832
|
-
|
3833
|
-
Test
|
3834
|
-
|
3835
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [fbfd8888-e664-47e5-b50f-0a29642122d5] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.89ms
|
3836
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [721c6eb7-5dbf-4573-a8fd-90676e312901] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3837
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [721c6eb7-5dbf-4573-a8fd-90676e312901] Rendered user_mailer/invite.text.erb (0.0ms)
|
3838
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [721c6eb7-5dbf-4573-a8fd-90676e312901]
|
3839
|
-
UserMailer#invite: processed outbound mail in 0.6ms
|
3840
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [721c6eb7-5dbf-4573-a8fd-90676e312901]
|
3841
|
-
Sent mail to test@mail.com (1.1ms)
|
3842
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [721c6eb7-5dbf-4573-a8fd-90676e312901] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3843
|
-
From: test@mail.com
|
3844
|
-
To: test@mail.com
|
3845
|
-
Message-ID: <585198cfd17fc_10a83fef1a03fa04508c0@imac-de-matt.mail>
|
3846
|
-
Subject: Invite
|
3847
|
-
Mime-Version: 1.0
|
3848
|
-
Content-Type: text/plain;
|
3849
|
-
charset=UTF-8
|
3850
|
-
Content-Transfer-Encoding: 7bit
|
3851
|
-
|
3852
|
-
Test
|
3853
|
-
|
3854
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [721c6eb7-5dbf-4573-a8fd-90676e312901] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 1.87ms
|
3855
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "complete"]]
|
3856
|
-
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1 [["status", "processing"]]
|
3857
|
-
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "sidejobs" WHERE "sidejobs"."status" = $1[0m [["status", "pending"]]
|
3858
|
-
[1m[35m (0.1ms)[0m ROLLBACK
|
3859
|
-
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3860
|
-
---------------------------
|
3861
|
-
ProcessorTest: test_process
|
3862
|
-
---------------------------
|
3863
|
-
[ActiveJob] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3864
|
-
[ActiveJob] [1m[36mSQL (0.2ms)[0m [1mINSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["data", "{\"job_class\":\"ActionMailer::DeliveryJob\",\"job_id\":\"85508a8b-a319-4387-94cd-f643997ddc7d\",\"queue_name\":\"mailers\",\"arguments\":[\"UserMailer\",\"invite\",\"deliver_now\",\"test@mail.com\"],\"locale\":\"en\"}"], ["queue", "mailers"], ["priority", 80], ["created_at", "2016-12-14 19:09:03.863499"], ["updated_at", "2016-12-14 19:09:03.863499"]]
|
3865
|
-
[ActiveJob] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3866
|
-
[ActiveJob] Enqueued ActionMailer::DeliveryJob (Job ID: 85508a8b-a319-4387-94cd-f643997ddc7d) to Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3867
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [85508a8b-a319-4387-94cd-f643997ddc7d] Performing ActionMailer::DeliveryJob from Sidejobs(mailers) with arguments: "UserMailer", "invite", "deliver_now", "test@mail.com"
|
3868
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [85508a8b-a319-4387-94cd-f643997ddc7d] Rendered user_mailer/invite.text.erb (0.0ms)
|
3869
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [85508a8b-a319-4387-94cd-f643997ddc7d]
|
3870
|
-
UserMailer#invite: processed outbound mail in 0.7ms
|
3871
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [85508a8b-a319-4387-94cd-f643997ddc7d]
|
3872
|
-
Sent mail to test@mail.com (1.2ms)
|
3873
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [85508a8b-a319-4387-94cd-f643997ddc7d] Date: Wed, 14 Dec 2016 16:09:03 -0300
|
3874
|
-
From: test@mail.com
|
3875
|
-
To: test@mail.com
|
3876
|
-
Message-ID: <585198cfd43ad_10a83fef1a03fa0450953@imac-de-matt.mail>
|
3877
|
-
Subject: Invite
|
3878
|
-
Mime-Version: 1.0
|
3879
|
-
Content-Type: text/plain;
|
3880
|
-
charset=UTF-8
|
3881
|
-
Content-Transfer-Encoding: 7bit
|
3882
|
-
|
3883
|
-
Test
|
3884
|
-
|
3885
|
-
[ActiveJob] [ActionMailer::DeliveryJob] [85508a8b-a319-4387-94cd-f643997ddc7d] Performed ActionMailer::DeliveryJob from Sidejobs(mailers) in 2.17ms
|
3886
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
3887
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
3888
|
-
[1m[35m (0.1ms)[0m BEGIN
|
3889
|
-
---------------------------
|
3890
|
-
ProcessorTest: test_retries
|
3891
|
-
---------------------------
|
3892
|
-
[ActiveJob] [1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
3893
|
-
[ActiveJob] [1m[35mSQL (0.3ms)[0m INSERT INTO "sidejobs" ("data", "queue", "priority", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["data", "{\"job_class\":\"ShareProductsJob\",\"job_id\":\"ce63f2d8-dfce-43de-bfb9-e92356a02df4\",\"queue_name\":\"default\",\"arguments\":[],\"locale\":\"en\"}"], ["queue", "default"], ["priority", 40], ["created_at", "2016-12-14 19:09:03.874991"], ["updated_at", "2016-12-14 19:09:03.874991"]]
|
3894
|
-
[ActiveJob] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3895
|
-
[ActiveJob] Enqueued ShareProductsJob (Job ID: ce63f2d8-dfce-43de-bfb9-e92356a02df4) to Sidejobs(default)
|
3896
|
-
[ActiveJob] [ShareProductsJob] [ce63f2d8-dfce-43de-bfb9-e92356a02df4] Performing ShareProductsJob from Sidejobs(default)
|
3897
|
-
[ActiveJob] [ShareProductsJob] [ce63f2d8-dfce-43de-bfb9-e92356a02df4] Performed ShareProductsJob from Sidejobs(default) in 0.14ms
|
3898
|
-
[ActiveJob] [ShareProductsJob] [ce63f2d8-dfce-43de-bfb9-e92356a02df4] Performing ShareProductsJob from Sidejobs(default)
|
3899
|
-
[ActiveJob] [ShareProductsJob] [ce63f2d8-dfce-43de-bfb9-e92356a02df4] Performed ShareProductsJob from Sidejobs(default) in 0.09ms
|
3900
|
-
[ActiveJob] [ShareProductsJob] [ce63f2d8-dfce-43de-bfb9-e92356a02df4] Performing ShareProductsJob from Sidejobs(default)
|
3901
|
-
[ActiveJob] [ShareProductsJob] [ce63f2d8-dfce-43de-bfb9-e92356a02df4] Performed ShareProductsJob from Sidejobs(default) in 0.09ms
|
3902
|
-
[1m[35mSidejobs::Job Load (0.2ms)[0m SELECT "sidejobs".* FROM "sidejobs" ORDER BY "sidejobs"."id" DESC LIMIT 1
|
3903
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|