job_notifier 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8846c5a155f12bb0b0bba794e3aeef365ff05ce1
4
- data.tar.gz: 8a5a7870c94482917fc14a86f29c530fa3ad49e8
3
+ metadata.gz: 23588c8481f36a1ec27b32d28edf34f36cbc7404
4
+ data.tar.gz: b67e5ff9c6721b907b2145cf4d9c60f95b1437c2
5
5
  SHA512:
6
- metadata.gz: df9005c6d05c3b8b51979cde56e5500f57b60ca3d16837354d22574976fc971f929474a16612a3667dcd5cc66cb7ea6e47a986bd80d8d1ca8ddd3db41a2b63a2
7
- data.tar.gz: ec6bcbb4259efbbb04fa63f97e1885b0fedd63085861f05ee48ba25f5d94b9bbce8ae1c188bba705e5e68ea0cd44cad01635f5b88c430dd5dbfad75794286cbd
6
+ metadata.gz: 196db14b32abea714b5945bd8864f3da8c434eb9e92892b0eb78902fa2d1f80592badbe397ab88c59e74a406dc7751e07322505fb2ab87cbfdb40be48293bca9
7
+ data.tar.gz: 244113a9a3dac857cb0d103f90c78253ade942d4be0f9372ef01b6e6612d6c9d7cc279de6f89567d43bead3eb9cbfab29294fd54d4e170ef9571752edbb782b1
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ### v1.2.2
6
+
7
+ ##### Changed
8
+
9
+ - Rails dependency version more flexible.
10
+ - Colorize dependency version more flexible.
11
+
5
12
  ### v1.2.1
6
13
 
7
14
  ##### Changed
data/Gemfile.lock CHANGED
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- job_notifier (1.2.1)
5
- colorize (~> 0.7, >= 0.7.7)
6
- enumerize (~> 1.0)
7
- rails (~> 4.2, >= 4.2.0)
4
+ job_notifier (1.2.2)
5
+ colorize (>= 0.7.7)
6
+ enumerize (>= 1.0)
7
+ rails (>= 4.2.0)
8
8
  silencer (= 1.0.0.rc3)
9
9
 
10
10
  GEM
@@ -57,7 +57,7 @@ GEM
57
57
  tins (~> 1.6)
58
58
  diff-lcs (1.3)
59
59
  docile (1.1.5)
60
- enumerize (1.1.1)
60
+ enumerize (2.0.1)
61
61
  activesupport (>= 3.2)
62
62
  erubis (2.7.0)
63
63
  factory_girl (4.5.0)
@@ -71,7 +71,7 @@ GEM
71
71
  json (2.0.3)
72
72
  loofah (2.0.3)
73
73
  nokogiri (>= 1.5.9)
74
- mail (2.6.4)
74
+ mail (2.6.5)
75
75
  mime-types (>= 1.16, < 4)
76
76
  method_source (0.8.2)
77
77
  mime-types (3.1)
data/job_notifier.gemspec CHANGED
@@ -17,9 +17,9 @@ Gem::Specification.new do |s|
17
17
  s.files = `git ls-files`.split($/).reject { |fn| fn.start_with? "spec" }
18
18
  s.test_files = Dir["spec/**/*"]
19
19
 
20
- s.add_dependency "rails", "~> 4.2", ">= 4.2.0"
21
- s.add_dependency "enumerize", "~> 1.0"
22
- s.add_dependency "colorize", "~> 0.7", ">= 0.7.7"
20
+ s.add_dependency "rails", ">= 4.2.0"
21
+ s.add_dependency "enumerize", ">= 1.0"
22
+ s.add_dependency "colorize", ">= 0.7.7"
23
23
  s.add_dependency "silencer", "1.0.0.rc3"
24
24
 
25
25
  s.add_development_dependency "pry"
@@ -1,3 +1,3 @@
1
1
  module JobNotifier
2
- VERSION = "1.2.1"
2
+ VERSION = "1.2.2"
3
3
  end
@@ -1,6 +1,6 @@
1
-  (5.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1
+  (4.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
2
   (0.1ms) select sqlite_version(*)
3
-  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
4
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
5
  Migrating to CreateJobNotifierJobs (20160401185325)
6
6
   (0.1ms) begin transaction
@@ -16,7 +16,7 @@ Migrating to CreateJobNotifierJobs (20160401185325)
16
16
 
17
17
   (0.1ms) CREATE INDEX "index_job_notifier_jobs_on_job_id" ON "job_notifier_jobs" ("job_id")
18
18
  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160401185325"]]
19
-  (1.5ms) commit transaction
19
+  (1.8ms) commit transaction
20
20
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
21
   (0.1ms)  SELECT sql
22
22
  FROM sqlite_master
@@ -35,20 +35,22 @@ Migrating to CreateJobNotifierJobs (20160401185325)
35
35
  WHERE name='index_job_notifier_jobs_on_identifier' AND type='index'
36
36
 
37
37
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
38
-  (0.1ms) begin transaction
38
+  (0.3ms) begin transaction
39
39
   (0.1ms) rollback transaction
40
40
   (0.1ms) begin transaction
41
41
   (0.1ms) rollback transaction
42
-  (0.0ms) begin transaction
43
-  (0.0ms) rollback transaction
44
-  (0.0ms) begin transaction
42
+  (0.1ms) begin transaction
45
43
   (0.0ms) rollback transaction
46
-  (0.0ms) begin transaction
44
+  (0.1ms) begin transaction
47
45
   (0.0ms) rollback transaction
46
+  (0.1ms) begin transaction
47
+  (0.1ms) rollback transaction
48
48
   (0.0ms) begin transaction
49
49
   (0.0ms) rollback transaction
50
+  (0.1ms) begin transaction
51
+  (0.1ms) rollback transaction
50
52
   (0.0ms) begin transaction
51
-  (0.0ms) rollback transaction
53
+  (0.1ms) rollback transaction
52
54
   (0.1ms) begin transaction
53
55
   (0.1ms) rollback transaction
54
56
   (0.1ms) begin transaction
@@ -56,257 +58,255 @@ Migrating to CreateJobNotifierJobs (20160401185325)
56
58
   (0.1ms) begin transaction
57
59
   (0.0ms) rollback transaction
58
60
   (0.0ms) begin transaction
59
-  (0.1ms) rollback transaction
60
-  (0.0ms) begin transaction
61
61
   (0.0ms) rollback transaction
62
62
   (0.0ms) begin transaction
63
-  (0.0ms) rollback transaction
64
-  (0.1ms) begin transaction
65
-  (0.0ms) rollback transaction
66
-  (0.1ms) begin transaction
67
63
   (0.1ms) rollback transaction
68
64
   (0.1ms) begin transaction
69
65
   (0.1ms) rollback transaction
70
66
   (0.0ms) begin transaction
71
-  (0.0ms) rollback transaction
72
-  (0.0ms) begin transaction
73
67
   (0.1ms) rollback transaction
74
-  (0.0ms) begin transaction
68
+  (0.1ms) begin transaction
75
69
   (0.1ms) rollback transaction
76
70
   (0.1ms) begin transaction
71
+  (0.1ms) rollback transaction
72
+  (0.1ms) begin transaction
73
+  (0.1ms) rollback transaction
74
+  (0.1ms) begin transaction
75
+  (0.1ms) rollback transaction
76
+  (0.0ms) begin transaction
77
77
   (0.1ms) SELECT COUNT(*) FROM "job_notifier_jobs"
78
78
  [ActiveJob]  (0.1ms) SAVEPOINT active_record_1
79
- [ActiveJob] SQL (0.3ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "c22aeab6-40d4-46ac-a237-e512e3d3fa80"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.372863"], ["updated_at", "2017-05-10 16:09:02.372863"]]
79
+ [ActiveJob] SQL (0.3ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "d9d02bef-0053-4bc8-9e14-f8bbf69d3e57"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.569234"], ["updated_at", "2017-06-01 18:04:31.569234"]]
80
80
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
81
- [ActiveJob] [ImageUploadJob] [c22aeab6-40d4-46ac-a237-e512e3d3fa80] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
82
- [ActiveJob] [ImageUploadJob] [c22aeab6-40d4-46ac-a237-e512e3d3fa80] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "c22aeab6-40d4-46ac-a237-e512e3d3fa80"]]
83
- [ActiveJob] [ImageUploadJob] [c22aeab6-40d4-46ac-a237-e512e3d3fa80] SQL (0.2ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
84
- [ActiveJob] [ImageUploadJob] [c22aeab6-40d4-46ac-a237-e512e3d3fa80] Performed ImageUploadJob from Inline(default) in 8.67ms
85
- [ActiveJob] Enqueued ImageUploadJob (Job ID: c22aeab6-40d4-46ac-a237-e512e3d3fa80) to Inline(default) with arguments: "param1", "param2"
81
+ [ActiveJob] [ImageUploadJob] [d9d02bef-0053-4bc8-9e14-f8bbf69d3e57] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
82
+ [ActiveJob] [ImageUploadJob] [d9d02bef-0053-4bc8-9e14-f8bbf69d3e57] JobNotifier::Job Load (0.2ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "d9d02bef-0053-4bc8-9e14-f8bbf69d3e57"]]
83
+ [ActiveJob] [ImageUploadJob] [d9d02bef-0053-4bc8-9e14-f8bbf69d3e57] SQL (0.2ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
84
+ [ActiveJob] [ImageUploadJob] [d9d02bef-0053-4bc8-9e14-f8bbf69d3e57] Performed ImageUploadJob from Inline(default) in 13.9ms
85
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: d9d02bef-0053-4bc8-9e14-f8bbf69d3e57) to Inline(default) with arguments: "param1", "param2"
86
86
   (0.1ms) SELECT COUNT(*) FROM "job_notifier_jobs"
87
87
   (0.2ms) rollback transaction
88
88
   (0.0ms) begin transaction
89
89
   (0.0ms) rollback transaction
90
90
   (0.0ms) begin transaction
91
91
  [ActiveJob]  (0.0ms) SAVEPOINT active_record_1
92
- [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "7d40a7f7-bae9-4b0b-90bd-5a13c2ec13d1"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.388402"], ["updated_at", "2017-05-10 16:09:02.388402"]]
93
- [ActiveJob]  (0.0ms) RELEASE SAVEPOINT active_record_1
94
- [ActiveJob] [ImageUploadJob] [7d40a7f7-bae9-4b0b-90bd-5a13c2ec13d1] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
95
- [ActiveJob] [ImageUploadJob] [7d40a7f7-bae9-4b0b-90bd-5a13c2ec13d1] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "7d40a7f7-bae9-4b0b-90bd-5a13c2ec13d1"]]
96
- [ActiveJob] [ImageUploadJob] [7d40a7f7-bae9-4b0b-90bd-5a13c2ec13d1] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
97
- [ActiveJob] [ImageUploadJob] [7d40a7f7-bae9-4b0b-90bd-5a13c2ec13d1] Performed ImageUploadJob from Inline(default) in 0.83ms
98
- [ActiveJob] Enqueued ImageUploadJob (Job ID: 7d40a7f7-bae9-4b0b-90bd-5a13c2ec13d1) to Inline(default) with arguments: "param1", "param2"
92
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "2b529e92-dd86-42fc-91e8-04a2bbdfd41d"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.591659"], ["updated_at", "2017-06-01 18:04:31.591659"]]
93
+ [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
94
+ [ActiveJob] [ImageUploadJob] [2b529e92-dd86-42fc-91e8-04a2bbdfd41d] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
95
+ [ActiveJob] [ImageUploadJob] [2b529e92-dd86-42fc-91e8-04a2bbdfd41d] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "2b529e92-dd86-42fc-91e8-04a2bbdfd41d"]]
96
+ [ActiveJob] [ImageUploadJob] [2b529e92-dd86-42fc-91e8-04a2bbdfd41d] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
97
+ [ActiveJob] [ImageUploadJob] [2b529e92-dd86-42fc-91e8-04a2bbdfd41d] Performed ImageUploadJob from Inline(default) in 0.89ms
98
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 2b529e92-dd86-42fc-91e8-04a2bbdfd41d) to Inline(default) with arguments: "param1", "param2"
99
99
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
100
100
   (0.1ms) rollback transaction
101
101
   (0.0ms) begin transaction
102
102
  [ActiveJob]  (0.1ms) SAVEPOINT active_record_1
103
- [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "6c84a8f0-4733-40f1-9329-455b65034698"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.393332"], ["updated_at", "2017-05-10 16:09:02.393332"]]
103
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "4e24a181-36c0-41f0-aa43-bdc3350e21db"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.596751"], ["updated_at", "2017-06-01 18:04:31.596751"]]
104
104
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
105
- [ActiveJob] [ImageUploadJob] [6c84a8f0-4733-40f1-9329-455b65034698] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
106
- [ActiveJob] [ImageUploadJob] [6c84a8f0-4733-40f1-9329-455b65034698] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "6c84a8f0-4733-40f1-9329-455b65034698"]]
107
- [ActiveJob] [ImageUploadJob] [6c84a8f0-4733-40f1-9329-455b65034698] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
108
- [ActiveJob] [ImageUploadJob] [6c84a8f0-4733-40f1-9329-455b65034698] Performed ImageUploadJob from Inline(default) in 0.88ms
109
- [ActiveJob] Enqueued ImageUploadJob (Job ID: 6c84a8f0-4733-40f1-9329-455b65034698) to Inline(default) with arguments: "param1", "param2"
105
+ [ActiveJob] [ImageUploadJob] [4e24a181-36c0-41f0-aa43-bdc3350e21db] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
106
+ [ActiveJob] [ImageUploadJob] [4e24a181-36c0-41f0-aa43-bdc3350e21db] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "4e24a181-36c0-41f0-aa43-bdc3350e21db"]]
107
+ [ActiveJob] [ImageUploadJob] [4e24a181-36c0-41f0-aa43-bdc3350e21db] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
108
+ [ActiveJob] [ImageUploadJob] [4e24a181-36c0-41f0-aa43-bdc3350e21db] Performed ImageUploadJob from Inline(default) in 0.85ms
109
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 4e24a181-36c0-41f0-aa43-bdc3350e21db) to Inline(default) with arguments: "param1", "param2"
110
110
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
111
111
   (0.1ms) rollback transaction
112
112
   (0.1ms) begin transaction
113
113
  [ActiveJob]  (0.1ms) SAVEPOINT active_record_1
114
- [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "033b580f-7fda-47aa-b9d6-f2a9135a9bc6"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.397832"], ["updated_at", "2017-05-10 16:09:02.397832"]]
114
+ [ActiveJob] SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "35535e03-6789-4d7f-b749-b5227a4fbf4f"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.601404"], ["updated_at", "2017-06-01 18:04:31.601404"]]
115
115
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
116
- [ActiveJob] [ImageUploadJob] [033b580f-7fda-47aa-b9d6-f2a9135a9bc6] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
117
- [ActiveJob] [ImageUploadJob] [033b580f-7fda-47aa-b9d6-f2a9135a9bc6] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "033b580f-7fda-47aa-b9d6-f2a9135a9bc6"]]
118
- [ActiveJob] [ImageUploadJob] [033b580f-7fda-47aa-b9d6-f2a9135a9bc6] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
119
- [ActiveJob] [ImageUploadJob] [033b580f-7fda-47aa-b9d6-f2a9135a9bc6] Performed ImageUploadJob from Inline(default) in 0.86ms
120
- [ActiveJob] Enqueued ImageUploadJob (Job ID: 033b580f-7fda-47aa-b9d6-f2a9135a9bc6) to Inline(default) with arguments: "param1", "param2"
116
+ [ActiveJob] [ImageUploadJob] [35535e03-6789-4d7f-b749-b5227a4fbf4f] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
117
+ [ActiveJob] [ImageUploadJob] [35535e03-6789-4d7f-b749-b5227a4fbf4f] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "35535e03-6789-4d7f-b749-b5227a4fbf4f"]]
118
+ [ActiveJob] [ImageUploadJob] [35535e03-6789-4d7f-b749-b5227a4fbf4f] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
119
+ [ActiveJob] [ImageUploadJob] [35535e03-6789-4d7f-b749-b5227a4fbf4f] Performed ImageUploadJob from Inline(default) in 0.85ms
120
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 35535e03-6789-4d7f-b749-b5227a4fbf4f) to Inline(default) with arguments: "param1", "param2"
121
121
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
122
-  (0.1ms) rollback transaction
123
-  (0.0ms) begin transaction
122
+  (0.2ms) rollback transaction
123
+  (0.1ms) begin transaction
124
124
  [ActiveJob]  (0.1ms) SAVEPOINT active_record_1
125
- [ActiveJob] SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "1b035924-c810-45c3-8a66-e6beb791624e"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.402336"], ["updated_at", "2017-05-10 16:09:02.402336"]]
125
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "b454a5b0-8708-4e1d-91fe-15d3f1c66991"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.605883"], ["updated_at", "2017-06-01 18:04:31.605883"]]
126
126
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
127
- [ActiveJob] [ImageUploadJob] [1b035924-c810-45c3-8a66-e6beb791624e] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
128
- [ActiveJob] [ImageUploadJob] [1b035924-c810-45c3-8a66-e6beb791624e] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "1b035924-c810-45c3-8a66-e6beb791624e"]]
129
- [ActiveJob] [ImageUploadJob] [1b035924-c810-45c3-8a66-e6beb791624e] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
130
- [ActiveJob] [ImageUploadJob] [1b035924-c810-45c3-8a66-e6beb791624e] Performed ImageUploadJob from Inline(default) in 0.89ms
131
- [ActiveJob] Enqueued ImageUploadJob (Job ID: 1b035924-c810-45c3-8a66-e6beb791624e) to Inline(default) with arguments: "param1", "param2"
127
+ [ActiveJob] [ImageUploadJob] [b454a5b0-8708-4e1d-91fe-15d3f1c66991] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
128
+ [ActiveJob] [ImageUploadJob] [b454a5b0-8708-4e1d-91fe-15d3f1c66991] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "b454a5b0-8708-4e1d-91fe-15d3f1c66991"]]
129
+ [ActiveJob] [ImageUploadJob] [b454a5b0-8708-4e1d-91fe-15d3f1c66991] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
130
+ [ActiveJob] [ImageUploadJob] [b454a5b0-8708-4e1d-91fe-15d3f1c66991] Performed ImageUploadJob from Inline(default) in 0.91ms
131
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: b454a5b0-8708-4e1d-91fe-15d3f1c66991) to Inline(default) with arguments: "param1", "param2"
132
132
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
133
133
   (0.1ms) rollback transaction
134
-  (0.1ms) begin transaction
134
+  (0.0ms) begin transaction
135
135
  [ActiveJob]  (0.0ms) SAVEPOINT active_record_1
136
- [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "bcd5d0b7-7c4e-42ae-abdb-86178664033a"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.406884"], ["updated_at", "2017-05-10 16:09:02.406884"]]
136
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "2eb3387d-aff8-43a6-9c8d-e4565a8da685"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.610426"], ["updated_at", "2017-06-01 18:04:31.610426"]]
137
137
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
138
- [ActiveJob] [ImageUploadJob] [bcd5d0b7-7c4e-42ae-abdb-86178664033a] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
139
- [ActiveJob] [ImageUploadJob] [bcd5d0b7-7c4e-42ae-abdb-86178664033a] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "bcd5d0b7-7c4e-42ae-abdb-86178664033a"]]
140
- [ActiveJob] [ImageUploadJob] [bcd5d0b7-7c4e-42ae-abdb-86178664033a] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
141
- [ActiveJob] [ImageUploadJob] [bcd5d0b7-7c4e-42ae-abdb-86178664033a] Performed ImageUploadJob from Inline(default) in 0.84ms
142
- [ActiveJob] Enqueued ImageUploadJob (Job ID: bcd5d0b7-7c4e-42ae-abdb-86178664033a) to Inline(default) with arguments: "param1", "param2"
138
+ [ActiveJob] [ImageUploadJob] [2eb3387d-aff8-43a6-9c8d-e4565a8da685] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
139
+ [ActiveJob] [ImageUploadJob] [2eb3387d-aff8-43a6-9c8d-e4565a8da685] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "2eb3387d-aff8-43a6-9c8d-e4565a8da685"]]
140
+ [ActiveJob] [ImageUploadJob] [2eb3387d-aff8-43a6-9c8d-e4565a8da685] SQL (0.2ms) UPDATE "job_notifier_jobs" SET "result" = 'photo loaded! with param1 and param2', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
141
+ [ActiveJob] [ImageUploadJob] [2eb3387d-aff8-43a6-9c8d-e4565a8da685] Performed ImageUploadJob from Inline(default) in 0.93ms
142
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 2eb3387d-aff8-43a6-9c8d-e4565a8da685) to Inline(default) with arguments: "param1", "param2"
143
143
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
144
144
   (0.1ms) rollback transaction
145
145
   (0.1ms) begin transaction
146
146
   (0.1ms) SELECT COUNT(*) FROM "job_notifier_jobs"
147
147
  [ActiveJob]  (0.0ms) SAVEPOINT active_record_1
148
- [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "7587a40a-8029-4422-bbb4-63808d6cf943"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.412072"], ["updated_at", "2017-05-10 16:09:02.412072"]]
148
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "ba86d546-514d-4ec5-a4e1-9f9c933c12bb"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.615545"], ["updated_at", "2017-06-01 18:04:31.615545"]]
149
149
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
150
- [ActiveJob] [ImageUploadJob] [7587a40a-8029-4422-bbb4-63808d6cf943] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
151
- [ActiveJob] [ImageUploadJob] [7587a40a-8029-4422-bbb4-63808d6cf943] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "7587a40a-8029-4422-bbb4-63808d6cf943"]]
152
- [ActiveJob] [ImageUploadJob] [7587a40a-8029-4422-bbb4-63808d6cf943] SQL (0.2ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
153
- [ActiveJob] [ImageUploadJob] [7587a40a-8029-4422-bbb4-63808d6cf943] Performed ImageUploadJob from Inline(default) in 0.94ms
154
- [ActiveJob] Enqueued ImageUploadJob (Job ID: 7587a40a-8029-4422-bbb4-63808d6cf943) to Inline(default) with arguments: "param1", "param2"
150
+ [ActiveJob] [ImageUploadJob] [ba86d546-514d-4ec5-a4e1-9f9c933c12bb] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
151
+ [ActiveJob] [ImageUploadJob] [ba86d546-514d-4ec5-a4e1-9f9c933c12bb] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "ba86d546-514d-4ec5-a4e1-9f9c933c12bb"]]
152
+ [ActiveJob] [ImageUploadJob] [ba86d546-514d-4ec5-a4e1-9f9c933c12bb] SQL (0.2ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
153
+ [ActiveJob] [ImageUploadJob] [ba86d546-514d-4ec5-a4e1-9f9c933c12bb] Performed ImageUploadJob from Inline(default) in 0.97ms
154
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: ba86d546-514d-4ec5-a4e1-9f9c933c12bb) to Inline(default) with arguments: "param1", "param2"
155
155
   (0.1ms) SELECT COUNT(*) FROM "job_notifier_jobs"
156
156
   (0.1ms) rollback transaction
157
157
   (0.1ms) begin transaction
158
158
   (0.0ms) rollback transaction
159
159
   (0.1ms) begin transaction
160
160
  [ActiveJob]  (0.1ms) SAVEPOINT active_record_1
161
- [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "57476c94-b57a-42f3-ab4f-445db193da4c"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.417158"], ["updated_at", "2017-05-10 16:09:02.417158"]]
161
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "8796c461-8f1b-43aa-89d8-96fff45da603"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.620835"], ["updated_at", "2017-06-01 18:04:31.620835"]]
162
162
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
163
- [ActiveJob] [ImageUploadJob] [57476c94-b57a-42f3-ab4f-445db193da4c] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
164
- [ActiveJob] [ImageUploadJob] [57476c94-b57a-42f3-ab4f-445db193da4c] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "57476c94-b57a-42f3-ab4f-445db193da4c"]]
165
- [ActiveJob] [ImageUploadJob] [57476c94-b57a-42f3-ab4f-445db193da4c] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
166
- [ActiveJob] [ImageUploadJob] [57476c94-b57a-42f3-ab4f-445db193da4c] Performed ImageUploadJob from Inline(default) in 0.89ms
167
- [ActiveJob] Enqueued ImageUploadJob (Job ID: 57476c94-b57a-42f3-ab4f-445db193da4c) to Inline(default) with arguments: "param1", "param2"
163
+ [ActiveJob] [ImageUploadJob] [8796c461-8f1b-43aa-89d8-96fff45da603] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
164
+ [ActiveJob] [ImageUploadJob] [8796c461-8f1b-43aa-89d8-96fff45da603] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "8796c461-8f1b-43aa-89d8-96fff45da603"]]
165
+ [ActiveJob] [ImageUploadJob] [8796c461-8f1b-43aa-89d8-96fff45da603] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
166
+ [ActiveJob] [ImageUploadJob] [8796c461-8f1b-43aa-89d8-96fff45da603] Performed ImageUploadJob from Inline(default) in 0.88ms
167
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 8796c461-8f1b-43aa-89d8-96fff45da603) to Inline(default) with arguments: "param1", "param2"
168
168
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
169
169
   (0.1ms) rollback transaction
170
170
   (0.1ms) begin transaction
171
171
  [ActiveJob]  (0.1ms) SAVEPOINT active_record_1
172
- [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "7180e1a4-3343-4d94-8c07-eccfbb3e4b74"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.421748"], ["updated_at", "2017-05-10 16:09:02.421748"]]
172
+ [ActiveJob] SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "0d18cb9d-bbbf-46c8-9379-92445162ed86"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.625312"], ["updated_at", "2017-06-01 18:04:31.625312"]]
173
173
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
174
- [ActiveJob] [ImageUploadJob] [7180e1a4-3343-4d94-8c07-eccfbb3e4b74] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
175
- [ActiveJob] [ImageUploadJob] [7180e1a4-3343-4d94-8c07-eccfbb3e4b74] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "7180e1a4-3343-4d94-8c07-eccfbb3e4b74"]]
176
- [ActiveJob] [ImageUploadJob] [7180e1a4-3343-4d94-8c07-eccfbb3e4b74] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
177
- [ActiveJob] [ImageUploadJob] [7180e1a4-3343-4d94-8c07-eccfbb3e4b74] Performed ImageUploadJob from Inline(default) in 0.86ms
178
- [ActiveJob] Enqueued ImageUploadJob (Job ID: 7180e1a4-3343-4d94-8c07-eccfbb3e4b74) to Inline(default) with arguments: "param1", "param2"
174
+ [ActiveJob] [ImageUploadJob] [0d18cb9d-bbbf-46c8-9379-92445162ed86] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
175
+ [ActiveJob] [ImageUploadJob] [0d18cb9d-bbbf-46c8-9379-92445162ed86] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "0d18cb9d-bbbf-46c8-9379-92445162ed86"]]
176
+ [ActiveJob] [ImageUploadJob] [0d18cb9d-bbbf-46c8-9379-92445162ed86] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
177
+ [ActiveJob] [ImageUploadJob] [0d18cb9d-bbbf-46c8-9379-92445162ed86] Performed ImageUploadJob from Inline(default) in 0.88ms
178
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 0d18cb9d-bbbf-46c8-9379-92445162ed86) to Inline(default) with arguments: "param1", "param2"
179
179
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
180
180
   (0.1ms) rollback transaction
181
181
   (0.1ms) begin transaction
182
- [ActiveJob]  (0.1ms) SAVEPOINT active_record_1
183
- [ActiveJob] SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "53c4c6d7-7fde-4b67-870b-5a7d568fb77d"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.426309"], ["updated_at", "2017-05-10 16:09:02.426309"]]
184
- [ActiveJob]  (0.0ms) RELEASE SAVEPOINT active_record_1
185
- [ActiveJob] [ImageUploadJob] [53c4c6d7-7fde-4b67-870b-5a7d568fb77d] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
186
- [ActiveJob] [ImageUploadJob] [53c4c6d7-7fde-4b67-870b-5a7d568fb77d] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "53c4c6d7-7fde-4b67-870b-5a7d568fb77d"]]
187
- [ActiveJob] [ImageUploadJob] [53c4c6d7-7fde-4b67-870b-5a7d568fb77d] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
188
- [ActiveJob] [ImageUploadJob] [53c4c6d7-7fde-4b67-870b-5a7d568fb77d] Performed ImageUploadJob from Inline(default) in 0.86ms
189
- [ActiveJob] Enqueued ImageUploadJob (Job ID: 53c4c6d7-7fde-4b67-870b-5a7d568fb77d) to Inline(default) with arguments: "param1", "param2"
182
+ [ActiveJob]  (0.0ms) SAVEPOINT active_record_1
183
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "33cbc6ab-f785-4be7-b00f-44bf12b9450f"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.629916"], ["updated_at", "2017-06-01 18:04:31.629916"]]
184
+ [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
185
+ [ActiveJob] [ImageUploadJob] [33cbc6ab-f785-4be7-b00f-44bf12b9450f] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
186
+ [ActiveJob] [ImageUploadJob] [33cbc6ab-f785-4be7-b00f-44bf12b9450f] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "33cbc6ab-f785-4be7-b00f-44bf12b9450f"]]
187
+ [ActiveJob] [ImageUploadJob] [33cbc6ab-f785-4be7-b00f-44bf12b9450f] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
188
+ [ActiveJob] [ImageUploadJob] [33cbc6ab-f785-4be7-b00f-44bf12b9450f] Performed ImageUploadJob from Inline(default) in 0.91ms
189
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 33cbc6ab-f785-4be7-b00f-44bf12b9450f) to Inline(default) with arguments: "param1", "param2"
190
190
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
191
191
   (0.1ms) rollback transaction
192
192
   (0.0ms) begin transaction
193
193
  [ActiveJob]  (0.0ms) SAVEPOINT active_record_1
194
- [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "9925798c-5126-4357-83f7-d6ba225bc766"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.430773"], ["updated_at", "2017-05-10 16:09:02.430773"]]
194
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "49598b8f-fe61-415f-a25c-a06569f97ec6"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.634417"], ["updated_at", "2017-06-01 18:04:31.634417"]]
195
195
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
196
- [ActiveJob] [ImageUploadJob] [9925798c-5126-4357-83f7-d6ba225bc766] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
197
- [ActiveJob] [ImageUploadJob] [9925798c-5126-4357-83f7-d6ba225bc766] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "9925798c-5126-4357-83f7-d6ba225bc766"]]
198
- [ActiveJob] [ImageUploadJob] [9925798c-5126-4357-83f7-d6ba225bc766] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
199
- [ActiveJob] [ImageUploadJob] [9925798c-5126-4357-83f7-d6ba225bc766] Performed ImageUploadJob from Inline(default) in 0.85ms
200
- [ActiveJob] Enqueued ImageUploadJob (Job ID: 9925798c-5126-4357-83f7-d6ba225bc766) to Inline(default) with arguments: "param1", "param2"
196
+ [ActiveJob] [ImageUploadJob] [49598b8f-fe61-415f-a25c-a06569f97ec6] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
197
+ [ActiveJob] [ImageUploadJob] [49598b8f-fe61-415f-a25c-a06569f97ec6] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "49598b8f-fe61-415f-a25c-a06569f97ec6"]]
198
+ [ActiveJob] [ImageUploadJob] [49598b8f-fe61-415f-a25c-a06569f97ec6] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
199
+ [ActiveJob] [ImageUploadJob] [49598b8f-fe61-415f-a25c-a06569f97ec6] Performed ImageUploadJob from Inline(default) in 0.89ms
200
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 49598b8f-fe61-415f-a25c-a06569f97ec6) to Inline(default) with arguments: "param1", "param2"
201
201
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
202
202
   (0.1ms) rollback transaction
203
203
   (0.0ms) begin transaction
204
204
  [ActiveJob]  (0.0ms) SAVEPOINT active_record_1
205
- [ActiveJob] SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "d3e32bca-bc5d-477f-a754-c9c136c5498b"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.435287"], ["updated_at", "2017-05-10 16:09:02.435287"]]
205
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "47809b16-03a1-4041-b16f-05f5be45b594"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.638873"], ["updated_at", "2017-06-01 18:04:31.638873"]]
206
206
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
207
- [ActiveJob] [ImageUploadJob] [d3e32bca-bc5d-477f-a754-c9c136c5498b] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
208
- [ActiveJob] [ImageUploadJob] [d3e32bca-bc5d-477f-a754-c9c136c5498b] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "d3e32bca-bc5d-477f-a754-c9c136c5498b"]]
209
- [ActiveJob] [ImageUploadJob] [d3e32bca-bc5d-477f-a754-c9c136c5498b] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
210
- [ActiveJob] [ImageUploadJob] [d3e32bca-bc5d-477f-a754-c9c136c5498b] Performed ImageUploadJob from Inline(default) in 0.88ms
211
- [ActiveJob] Enqueued ImageUploadJob (Job ID: d3e32bca-bc5d-477f-a754-c9c136c5498b) to Inline(default) with arguments: "param1", "param2"
207
+ [ActiveJob] [ImageUploadJob] [47809b16-03a1-4041-b16f-05f5be45b594] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
208
+ [ActiveJob] [ImageUploadJob] [47809b16-03a1-4041-b16f-05f5be45b594] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "47809b16-03a1-4041-b16f-05f5be45b594"]]
209
+ [ActiveJob] [ImageUploadJob] [47809b16-03a1-4041-b16f-05f5be45b594] SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = '{:error=>"invalid photo url"}', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
210
+ [ActiveJob] [ImageUploadJob] [47809b16-03a1-4041-b16f-05f5be45b594] Performed ImageUploadJob from Inline(default) in 0.94ms
211
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 47809b16-03a1-4041-b16f-05f5be45b594) to Inline(default) with arguments: "param1", "param2"
212
212
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
213
213
   (0.1ms) rollback transaction
214
-  (0.0ms) begin transaction
214
+  (0.1ms) begin transaction
215
215
  [ActiveJob]  (0.0ms) SAVEPOINT active_record_1
216
- [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "7a10286a-3b83-414b-ba59-a50c86f49b67"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-05-10 16:09:02.440043"], ["updated_at", "2017-05-10 16:09:02.440043"]]
216
+ [ActiveJob] SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("identifier", "job_id", "job_class", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["identifier", "233698cbf6ed55f7bb456956230a55af"], ["job_id", "8030d144-7812-4f54-9490-6a39c6019436"], ["job_class", "ImageUploadJob"], ["status", "pending"], ["created_at", "2017-06-01 18:04:31.643552"], ["updated_at", "2017-06-01 18:04:31.643552"]]
217
217
  [ActiveJob]  (0.1ms) RELEASE SAVEPOINT active_record_1
218
- [ActiveJob] [ImageUploadJob] [7a10286a-3b83-414b-ba59-a50c86f49b67] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
219
- [ActiveJob] [ImageUploadJob] [7a10286a-3b83-414b-ba59-a50c86f49b67] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "7a10286a-3b83-414b-ba59-a50c86f49b67"]]
220
- [ActiveJob] [ImageUploadJob] [7a10286a-3b83-414b-ba59-a50c86f49b67] SQL (0.2ms) UPDATE "job_notifier_jobs" SET "result" = 'unknown', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
221
- [ActiveJob] [ImageUploadJob] [7a10286a-3b83-414b-ba59-a50c86f49b67] Performed ImageUploadJob from Inline(default) in 1.15ms
218
+ [ActiveJob] [ImageUploadJob] [8030d144-7812-4f54-9490-6a39c6019436] Performing ImageUploadJob from Inline(default) with arguments: "param1", "param2"
219
+ [ActiveJob] [ImageUploadJob] [8030d144-7812-4f54-9490-6a39c6019436] JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "8030d144-7812-4f54-9490-6a39c6019436"]]
220
+ [ActiveJob] [ImageUploadJob] [8030d144-7812-4f54-9490-6a39c6019436] SQL (0.2ms) UPDATE "job_notifier_jobs" SET "result" = 'unknown', "status" = 'failed', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
221
+ [ActiveJob] [ImageUploadJob] [8030d144-7812-4f54-9490-6a39c6019436] Performed ImageUploadJob from Inline(default) in 1.15ms
222
222
   (0.1ms) SELECT COUNT(*) FROM "job_notifier_jobs"
223
223
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "233698cbf6ed55f7bb456956230a55af"]]
224
224
   (0.1ms) rollback transaction
225
225
   (0.1ms) begin transaction
226
- [ActiveJob] [ImageUploadJob] [e00aba05-ce99-4bb0-a29f-09bab633e99e] Performing ImageUploadJob from Inline(default)
227
- [ActiveJob] [ImageUploadJob] [e00aba05-ce99-4bb0-a29f-09bab633e99e] Performed ImageUploadJob from Inline(default) in 0.03ms
228
- [ActiveJob] Enqueued ImageUploadJob (Job ID: e00aba05-ce99-4bb0-a29f-09bab633e99e) to Inline(default)
229
-  (0.1ms) rollback transaction
230
-  (0.0ms) begin transaction
226
+ [ActiveJob] [ImageUploadJob] [2cbe055d-a99c-4924-a59d-22cf6a0be732] Performing ImageUploadJob from Inline(default)
227
+ [ActiveJob] [ImageUploadJob] [2cbe055d-a99c-4924-a59d-22cf6a0be732] Performed ImageUploadJob from Inline(default) in 0.06ms
228
+ [ActiveJob] Enqueued ImageUploadJob (Job ID: 2cbe055d-a99c-4924-a59d-22cf6a0be732) to Inline(default)
231
229
   (0.0ms) rollback transaction
232
-  (0.0ms) begin transaction
230
+  (0.1ms) begin transaction
231
+  (0.0ms) rollback transaction
232
+  (0.1ms) begin transaction
233
233
   (0.1ms) SAVEPOINT active_record_1
234
- SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.448168"], ["updated_at", "2017-05-10 16:09:02.448168"]]
235
-  (0.0ms) RELEASE SAVEPOINT active_record_1
234
+ SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.651809"], ["updated_at", "2017-06-01 18:04:31.651809"]]
235
+  (0.1ms) RELEASE SAVEPOINT active_record_1
236
236
   (0.1ms) SAVEPOINT active_record_1
237
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.450081"], ["updated_at", "2017-05-10 16:09:02.450081"]]
238
-  (0.1ms) RELEASE SAVEPOINT active_record_1
239
-  (0.0ms) SAVEPOINT active_record_1
240
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["notified", "t"], ["created_at", "2017-05-10 16:09:02.451883"], ["updated_at", "2017-05-10 16:09:02.451883"]]
237
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.653723"], ["updated_at", "2017-06-01 18:04:31.653723"]]
238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
239
+  (0.1ms) SAVEPOINT active_record_1
240
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["notified", "t"], ["created_at", "2017-06-01 18:04:31.655476"], ["updated_at", "2017-06-01 18:04:31.655476"]]
241
241
   (0.1ms) RELEASE SAVEPOINT active_record_1
242
242
   (0.1ms) SELECT COUNT(*) FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? AND "job_notifier_jobs"."notified" = ? [["identifier", "jcm14n"], ["notified", "f"]]
243
243
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."identifier" = ? AND "job_notifier_jobs"."notified" = ? ORDER BY "job_notifier_jobs"."id" ASC LIMIT 1 [["identifier", "jcm14n"], ["notified", "f"]]
244
244
   (0.1ms) rollback transaction
245
245
   (0.0ms) begin transaction
246
-  (0.0ms) SAVEPOINT active_record_1
247
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.455789"], ["updated_at", "2017-05-10 16:09:02.455789"]]
246
+  (0.1ms) SAVEPOINT active_record_1
247
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.659417"], ["updated_at", "2017-06-01 18:04:31.659417"]]
248
248
   (0.0ms) RELEASE SAVEPOINT active_record_1
249
249
   (0.0ms) SAVEPOINT active_record_1
250
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.457555"], ["updated_at", "2017-05-10 16:09:02.457555"]]
251
-  (0.0ms) RELEASE SAVEPOINT active_record_1
252
-  (0.0ms) SAVEPOINT active_record_1
253
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["notified", "t"], ["created_at", "2017-05-10 16:09:02.459369"], ["updated_at", "2017-05-10 16:09:02.459369"]]
250
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.661237"], ["updated_at", "2017-06-01 18:04:31.661237"]]
251
+  (0.1ms) RELEASE SAVEPOINT active_record_1
252
+  (0.1ms) SAVEPOINT active_record_1
253
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["notified", "t"], ["created_at", "2017-06-01 18:04:31.662997"], ["updated_at", "2017-06-01 18:04:31.662997"]]
254
254
   (0.1ms) RELEASE SAVEPOINT active_record_1
255
- JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 2]]
255
+ JobNotifier::Job Load (0.2ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 2]]
256
256
   (0.1ms) rollback transaction
257
-  (0.1ms) begin transaction
257
+  (0.0ms) begin transaction
258
258
   (0.0ms) SAVEPOINT active_record_1
259
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.462627"], ["updated_at", "2017-05-10 16:09:02.462627"]]
259
+ SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.666369"], ["updated_at", "2017-06-01 18:04:31.666369"]]
260
260
   (0.1ms) RELEASE SAVEPOINT active_record_1
261
261
   (0.0ms) SAVEPOINT active_record_1
262
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.464449"], ["updated_at", "2017-05-10 16:09:02.464449"]]
262
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.668224"], ["updated_at", "2017-06-01 18:04:31.668224"]]
263
263
   (0.1ms) RELEASE SAVEPOINT active_record_1
264
264
   (0.0ms) SAVEPOINT active_record_1
265
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["notified", "t"], ["created_at", "2017-05-10 16:09:02.466255"], ["updated_at", "2017-05-10 16:09:02.466255"]]
266
-  (0.0ms) RELEASE SAVEPOINT active_record_1
265
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["notified", "t"], ["created_at", "2017-06-01 18:04:31.670071"], ["updated_at", "2017-06-01 18:04:31.670071"]]
266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
267
267
  JobNotifier::Job Load (0.0ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 3]]
268
268
   (0.1ms) rollback transaction
269
-  (0.0ms) begin transaction
269
+  (0.1ms) begin transaction
270
270
   (0.0ms) SAVEPOINT active_record_1
271
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.469367"], ["updated_at", "2017-05-10 16:09:02.469367"]]
271
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.673328"], ["updated_at", "2017-06-01 18:04:31.673328"]]
272
272
   (0.0ms) RELEASE SAVEPOINT active_record_1
273
-  (0.7ms) SAVEPOINT active_record_1
274
- SQL (0.4ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.478443"], ["updated_at", "2017-05-10 16:09:02.478443"]]
273
+  (0.0ms) SAVEPOINT active_record_1
274
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.675132"], ["updated_at", "2017-06-01 18:04:31.675132"]]
275
275
   (0.1ms) RELEASE SAVEPOINT active_record_1
276
- SQL (0.3ms) UPDATE "job_notifier_jobs" SET "notified" = 't' WHERE "job_notifier_jobs"."identifier" = ? AND "job_notifier_jobs"."notified" = ? [["identifier", "jcm14n"], ["notified", "f"]]
277
- JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 1]]
278
-  (0.3ms) rollback transaction
279
-  (0.2ms) begin transaction
280
-  (0.2ms) SAVEPOINT active_record_1
281
- SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.499218"], ["updated_at", "2017-05-10 16:09:02.499218"]]
282
-  (0.0ms) RELEASE SAVEPOINT active_record_1
283
-  (0.1ms) SAVEPOINT active_record_1
284
- SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-05-10 16:09:02.502020"], ["updated_at", "2017-05-10 16:09:02.502020"]]
285
-  (0.2ms) RELEASE SAVEPOINT active_record_1
286
- SQL (0.2ms) UPDATE "job_notifier_jobs" SET "notified" = 't' WHERE "job_notifier_jobs"."identifier" = ? AND "job_notifier_jobs"."notified" = ? [["identifier", "jcm14n"], ["notified", "f"]]
287
- JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 2]]
288
-  (0.2ms) rollback transaction
289
-  (0.1ms) begin transaction
290
-  (0.1ms) SAVEPOINT active_record_1
291
- SQL (0.3ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "job_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "MyString"], ["result", "MyText"], ["notified", "t"], ["job_id", "hd70oj"], ["created_at", "2017-05-10 16:09:02.507213"], ["updated_at", "2017-05-10 16:09:02.507213"]]
292
-  (0.1ms) RELEASE SAVEPOINT active_record_1
293
- JobNotifier::Job Load (0.2ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "hd70oj"]]
294
- SQL (0.2ms) UPDATE "job_notifier_jobs" SET "result" = 'success', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
276
+ SQL (0.1ms) UPDATE "job_notifier_jobs" SET "notified" = 't' WHERE "job_notifier_jobs"."identifier" = ? AND "job_notifier_jobs"."notified" = ? [["identifier", "jcm14n"], ["notified", "f"]]
295
277
  JobNotifier::Job Load (0.0ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 1]]
296
-  (0.2ms) rollback transaction
278
+  (0.1ms) rollback transaction
297
279
   (0.0ms) begin transaction
298
280
   (0.1ms) SAVEPOINT active_record_1
299
- SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "job_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "MyString"], ["result", "MyText"], ["notified", "t"], ["job_id", "hd70oj"], ["created_at", "2017-05-10 16:09:02.513171"], ["updated_at", "2017-05-10 16:09:02.513171"]]
281
+ SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "jcm14n"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.678971"], ["updated_at", "2017-06-01 18:04:31.678971"]]
300
282
   (0.1ms) RELEASE SAVEPOINT active_record_1
301
- JobNotifier::Job Load (0.2ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "hd70oj"]]
302
- SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'success', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
303
- JobNotifier::Job Load (0.0ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 1]]
283
+  (0.1ms) SAVEPOINT active_record_1
284
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "otro"], ["result", "MyText"], ["created_at", "2017-06-01 18:04:31.680840"], ["updated_at", "2017-06-01 18:04:31.680840"]]
285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
286
+ SQL (0.1ms) UPDATE "job_notifier_jobs" SET "notified" = 't' WHERE "job_notifier_jobs"."identifier" = ? AND "job_notifier_jobs"."notified" = ? [["identifier", "jcm14n"], ["notified", "f"]]
287
+ JobNotifier::Job Load (0.0ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 2]]
304
288
   (0.1ms) rollback transaction
305
289
   (0.1ms) begin transaction
306
290
   (0.0ms) SAVEPOINT active_record_1
307
- SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "job_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "MyString"], ["result", "MyText"], ["notified", "t"], ["job_id", "hd70oj"], ["created_at", "2017-05-10 16:09:02.518634"], ["updated_at", "2017-05-10 16:09:02.518634"]]
291
+ SQL (0.2ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "job_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "MyString"], ["result", "MyText"], ["notified", "t"], ["job_id", "hd70oj"], ["created_at", "2017-06-01 18:04:31.684429"], ["updated_at", "2017-06-01 18:04:31.684429"]]
308
292
   (0.1ms) RELEASE SAVEPOINT active_record_1
309
293
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "hd70oj"]]
310
- SQL (0.2ms) UPDATE "job_notifier_jobs" SET "result" = 'success', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
294
+ SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'success', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
311
295
  JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 1]]
312
296
   (0.1ms) rollback transaction
297
+  (0.1ms) begin transaction
298
+  (0.1ms) SAVEPOINT active_record_1
299
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "job_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "MyString"], ["result", "MyText"], ["notified", "t"], ["job_id", "hd70oj"], ["created_at", "2017-06-01 18:04:31.688888"], ["updated_at", "2017-06-01 18:04:31.688888"]]
300
+  (0.0ms) RELEASE SAVEPOINT active_record_1
301
+ JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "hd70oj"]]
302
+ SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'success', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
303
+ JobNotifier::Job Load (0.0ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 1]]
304
+  (0.1ms) rollback transaction
305
+  (0.0ms) begin transaction
306
+  (0.0ms) SAVEPOINT active_record_1
307
+ SQL (0.1ms) INSERT INTO "job_notifier_jobs" ("status", "identifier", "result", "notified", "job_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["status", "pending"], ["identifier", "MyString"], ["result", "MyText"], ["notified", "t"], ["job_id", "hd70oj"], ["created_at", "2017-06-01 18:04:31.693195"], ["updated_at", "2017-06-01 18:04:31.693195"]]
308
+  (0.1ms) RELEASE SAVEPOINT active_record_1
309
+ JobNotifier::Job Load (0.1ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."job_id" = ? LIMIT 1 [["job_id", "hd70oj"]]
310
+ SQL (0.1ms) UPDATE "job_notifier_jobs" SET "result" = 'success', "status" = 'finished', "notified" = 'f' WHERE "job_notifier_jobs"."id" = ? [["id", 1]]
311
+ JobNotifier::Job Load (0.0ms) SELECT "job_notifier_jobs".* FROM "job_notifier_jobs" WHERE "job_notifier_jobs"."id" = ? LIMIT 1 [["id", 1]]
312
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: job_notifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Platanus
@@ -10,15 +10,12 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-05-10 00:00:00.000000000 Z
13
+ date: 2017-06-01 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - "~>"
20
- - !ruby/object:Gem::Version
21
- version: '4.2'
22
19
  - - ">="
23
20
  - !ruby/object:Gem::Version
24
21
  version: 4.2.0
@@ -26,9 +23,6 @@ dependencies:
26
23
  prerelease: false
27
24
  version_requirements: !ruby/object:Gem::Requirement
28
25
  requirements:
29
- - - "~>"
30
- - !ruby/object:Gem::Version
31
- version: '4.2'
32
26
  - - ">="
33
27
  - !ruby/object:Gem::Version
34
28
  version: 4.2.0
@@ -36,23 +30,20 @@ dependencies:
36
30
  name: enumerize
37
31
  requirement: !ruby/object:Gem::Requirement
38
32
  requirements:
39
- - - "~>"
33
+ - - ">="
40
34
  - !ruby/object:Gem::Version
41
35
  version: '1.0'
42
36
  type: :runtime
43
37
  prerelease: false
44
38
  version_requirements: !ruby/object:Gem::Requirement
45
39
  requirements:
46
- - - "~>"
40
+ - - ">="
47
41
  - !ruby/object:Gem::Version
48
42
  version: '1.0'
49
43
  - !ruby/object:Gem::Dependency
50
44
  name: colorize
51
45
  requirement: !ruby/object:Gem::Requirement
52
46
  requirements:
53
- - - "~>"
54
- - !ruby/object:Gem::Version
55
- version: '0.7'
56
47
  - - ">="
57
48
  - !ruby/object:Gem::Version
58
49
  version: 0.7.7
@@ -60,9 +51,6 @@ dependencies:
60
51
  prerelease: false
61
52
  version_requirements: !ruby/object:Gem::Requirement
62
53
  requirements:
63
- - - "~>"
64
- - !ruby/object:Gem::Version
65
- version: '0.7'
66
54
  - - ">="
67
55
  - !ruby/object:Gem::Version
68
56
  version: 0.7.7