dallal 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +33 -0
  5. data/app/assets/javascripts/dallal/application.js +13 -0
  6. data/app/assets/stylesheets/dallal/application.css +15 -0
  7. data/app/controllers/dallal/application_controller.rb +5 -0
  8. data/app/helpers/dallal/application_helper.rb +4 -0
  9. data/app/jobs/dallal/dallal_job.rb +13 -0
  10. data/app/mailers/dallal/mailer.rb +36 -0
  11. data/app/views/layouts/dallal/application.html.erb +14 -0
  12. data/app/views/layouts/mailer.html.erb +5 -0
  13. data/app/views/layouts/mailer.text.erb +1 -0
  14. data/config/routes.rb +2 -0
  15. data/lib/dallal/abstract_interface.rb +30 -0
  16. data/lib/dallal/configuration.rb +54 -0
  17. data/lib/dallal/engine.rb +22 -0
  18. data/lib/dallal/events/event_publisher.rb +8 -0
  19. data/lib/dallal/events/event_subscriber.rb +33 -0
  20. data/lib/dallal/events/events.rb +5 -0
  21. data/lib/dallal/events/observer.rb +57 -0
  22. data/lib/dallal/events/publisher.rb +44 -0
  23. data/lib/dallal/events/subscriber.rb +16 -0
  24. data/lib/dallal/file_loader.rb +15 -0
  25. data/lib/dallal/notification.rb +79 -0
  26. data/lib/dallal/notifiers/email_notifier.rb +28 -0
  27. data/lib/dallal/notifiers/notifier.rb +33 -0
  28. data/lib/dallal/notifiers/sms_notifier.rb +15 -0
  29. data/lib/dallal/result.rb +21 -0
  30. data/lib/dallal/version.rb +3 -0
  31. data/lib/dallal.rb +41 -0
  32. data/lib/generators/dallal/install/USAGE +2 -0
  33. data/lib/generators/dallal/install/install_generator.rb +11 -0
  34. data/lib/generators/dallal/install/templates/dallal.rb +16 -0
  35. data/lib/generators/dallal/notification/USAGE +2 -0
  36. data/lib/generators/dallal/notification/notification_generator.rb +44 -0
  37. data/lib/generators/dallal/notification/templates/migration.rb +10 -0
  38. data/lib/generators/dallal/notification/templates/model.rb +2 -0
  39. data/lib/generators/dallal/notifiers/USAGE +2 -0
  40. data/lib/generators/dallal/notifiers/notifiers_generator.rb +56 -0
  41. data/lib/generators/dallal/notifiers/templates/email_notifier.rb +2 -0
  42. data/lib/generators/dallal/notifiers/templates/email_notifier_migration.rb +7 -0
  43. data/lib/generators/dallal/notifiers/templates/sms_notifier.rb +2 -0
  44. data/lib/generators/dallal/notifiers/templates/sms_notifier_migration.rb +7 -0
  45. data/lib/tasks/user_notification_tasks.rake +4 -0
  46. data/spec/dallal/configuration_spec.rb +56 -0
  47. data/spec/dallal/dallal_spec.rb +23 -0
  48. data/spec/dallal/events/event_publisher_spec.rb +7 -0
  49. data/spec/dallal/events/event_subscriber_spec.rb +92 -0
  50. data/spec/dallal/events/observer_spec.rb +117 -0
  51. data/spec/dallal/events/publisher_spec.rb +14 -0
  52. data/spec/dallal/events/subscriber_spec.rb +4 -0
  53. data/spec/dallal/notification_spec.rb +152 -0
  54. data/spec/dallal/notifiers/notifier_spec.rb +27 -0
  55. data/spec/dummy/README.rdoc +28 -0
  56. data/spec/dummy/Rakefile +6 -0
  57. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  58. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  59. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  60. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  61. data/spec/dummy/app/models/post.rb +4 -0
  62. data/spec/dummy/app/models/user.rb +4 -0
  63. data/spec/dummy/app/notifiers/comment_notifier.rb +0 -0
  64. data/spec/dummy/app/notifiers/post_notifier.rb +9 -0
  65. data/spec/dummy/app/notifiers/user_notifier.rb +2 -0
  66. data/spec/dummy/app/views/dallal/mailer/posts/register.html.erb +5 -0
  67. data/spec/dummy/app/views/dallal/mailer/posts/register_subject.html.erb +1 -0
  68. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  69. data/spec/dummy/bin/bundle +3 -0
  70. data/spec/dummy/bin/rails +4 -0
  71. data/spec/dummy/bin/rake +4 -0
  72. data/spec/dummy/bin/setup +29 -0
  73. data/spec/dummy/config/application.rb +32 -0
  74. data/spec/dummy/config/boot.rb +5 -0
  75. data/spec/dummy/config/database.yml +25 -0
  76. data/spec/dummy/config/environment.rb +5 -0
  77. data/spec/dummy/config/environments/development.rb +41 -0
  78. data/spec/dummy/config/environments/production.rb +79 -0
  79. data/spec/dummy/config/environments/test.rb +42 -0
  80. data/spec/dummy/config/initializers/assets.rb +11 -0
  81. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  82. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  83. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  84. data/spec/dummy/config/initializers/inflections.rb +16 -0
  85. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  86. data/spec/dummy/config/initializers/session_store.rb +3 -0
  87. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  88. data/spec/dummy/config/locales/en.yml +23 -0
  89. data/spec/dummy/config/routes.rb +4 -0
  90. data/spec/dummy/config/secrets.yml +22 -0
  91. data/spec/dummy/config.ru +4 -0
  92. data/spec/dummy/db/development.sqlite3 +0 -0
  93. data/spec/dummy/db/migrate/20160801191053_create_users.rb +10 -0
  94. data/spec/dummy/db/migrate/20160803174036_create_posts.rb +11 -0
  95. data/spec/dummy/db/schema.rb +38 -0
  96. data/spec/dummy/db/test.sqlite3 +0 -0
  97. data/spec/dummy/log/test.log +2057 -0
  98. data/spec/dummy/public/404.html +67 -0
  99. data/spec/dummy/public/422.html +67 -0
  100. data/spec/dummy/public/500.html +66 -0
  101. data/spec/dummy/public/favicon.ico +0 -0
  102. data/spec/dummy/spec/factories/posts.rb +7 -0
  103. data/spec/dummy/spec/factories/users.rb +6 -0
  104. data/spec/dummy/spec/models/post_spec.rb +5 -0
  105. data/spec/dummy/spec/models/user_spec.rb +5 -0
  106. data/spec/factories/posts.rb +7 -0
  107. data/spec/factories/users.rb +6 -0
  108. data/spec/jobs/dallal/dallal_job_spec.rb +14 -0
  109. data/spec/mailers/dallal/mailer_spec.rb +7 -0
  110. data/spec/mailers/previews/dallal/mailer_preview.rb +6 -0
  111. data/spec/rails_helper.rb +26 -0
  112. data/spec/spec_helper.rb +92 -0
  113. metadata +295 -0
@@ -0,0 +1,2057 @@
1
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
+  (143.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
3
+  (0.3ms) select sqlite_version(*)
4
+  (408.3ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
5
+  (165.4ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6
+  (165.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
7
+  (144.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
8
+  (154.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
+  (0.4ms) SELECT version FROM "schema_migrations"
10
+  (145.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
11
+  (144.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
12
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
+  (229.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
15
+  (0.1ms) select sqlite_version(*)
16
+  (154.4ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
17
+  (188.5ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
18
+  (155.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
19
+  (144.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
20
+  (143.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
21
+  (0.3ms) SELECT version FROM "schema_migrations"
22
+  (143.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
23
+  (167.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
24
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26
+  (491.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
27
+  (0.2ms) select sqlite_version(*)
28
+  (176.3ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
29
+  (143.2ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
30
+  (165.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
31
+  (176.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
32
+  (143.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
+  (0.3ms) SELECT version FROM "schema_migrations"
34
+  (166.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
35
+  (166.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
36
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
37
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
38
+  (310.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
39
+  (0.3ms) select sqlite_version(*)
40
+  (165.0ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
41
+  (165.1ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
42
+  (165.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
43
+  (155.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
44
+  (178.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
+  (0.3ms) SELECT version FROM "schema_migrations"
46
+  (176.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
47
+  (133.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
48
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
49
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
50
+  (199.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
51
+  (0.3ms) select sqlite_version(*)
52
+  (143.0ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
53
+  (343.0ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
54
+  (131.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
55
+  (133.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
56
+  (165.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
57
+  (0.4ms) SELECT version FROM "schema_migrations"
58
+  (176.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
59
+  (166.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
60
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
61
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
62
+  (217.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
63
+  (0.2ms) select sqlite_version(*)
64
+  (136.2ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
65
+  (154.1ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
66
+  (154.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
67
+  (382.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
68
+  (387.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
69
+  (0.3ms) SELECT version FROM "schema_migrations"
70
+  (222.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
71
+  (233.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
72
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
73
+  (0.1ms) begin transaction
74
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:28.383527"], ["updated_at", "2016-08-04 18:01:28.383527"]]
75
+ [ActiveJob] [Dallal::DallalJob] [23068206-2127-41ca-857f-3cb7e185c20a] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 12, "create"
76
+ [ActiveJob] [Dallal::DallalJob] [23068206-2127-41ca-857f-3cb7e185c20a] Performed Dallal::DallalJob from Inline(default) in 59.93ms
77
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 23068206-2127-41ca-857f-3cb7e185c20a) to Inline(default) with arguments: "User", 12, "create"
78
+  (159.9ms) commit transaction
79
+  (0.2ms) begin transaction
80
+  (0.1ms) commit transaction
81
+ [ActiveJob] [Dallal::DallalJob] [7c726d48-888d-461b-a4ba-5027fcd4adda] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
82
+ [ActiveJob] [Dallal::DallalJob] [7c726d48-888d-461b-a4ba-5027fcd4adda] Performed Dallal::DallalJob from Inline(default) in 1.31ms
83
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 7c726d48-888d-461b-a4ba-5027fcd4adda) to Inline(default) with arguments: "User", 1, "create"
84
+  (0.1ms) begin transaction
85
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:28.672420"], ["updated_at", "2016-08-04 18:01:28.672420"]]
86
+  (192.7ms) commit transaction
87
+  (0.2ms) begin transaction
88
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:28.899621"], ["updated_at", "2016-08-04 18:01:28.899621"]]
89
+  (154.6ms) commit transaction
90
+  (0.2ms) begin transaction
91
+  (0.1ms) commit transaction
92
+  (0.1ms) begin transaction
93
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:29.063873"], ["updated_at", "2016-08-04 18:01:29.063873"]]
94
+  (156.8ms) commit transaction
95
+  (0.2ms) begin transaction
96
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:29.238104"], ["updated_at", "2016-08-04 18:01:29.238104"]]
97
+  (139.2ms) commit transaction
98
+  (0.1ms) begin transaction
99
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 5], ["created_at", "2016-08-04 18:01:29.430478"], ["updated_at", "2016-08-04 18:01:29.430478"]]
100
+  (225.6ms) commit transaction
101
+  (0.2ms) begin transaction
102
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:29.666158"], ["updated_at", "2016-08-04 18:01:29.666158"]]
103
+  (145.5ms) commit transaction
104
+  (0.2ms) begin transaction
105
+ SQL (0.6ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 6], ["created_at", "2016-08-04 18:01:29.818326"], ["updated_at", "2016-08-04 18:01:29.818326"]]
106
+  (126.6ms) commit transaction
107
+  (0.2ms) begin transaction
108
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:29.953240"], ["updated_at", "2016-08-04 18:01:29.953240"]]
109
+  (137.4ms) commit transaction
110
+  (0.2ms) begin transaction
111
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 7], ["created_at", "2016-08-04 18:01:30.096191"], ["updated_at", "2016-08-04 18:01:30.096191"]]
112
+  (174.4ms) commit transaction
113
+  (0.2ms) begin transaction
114
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:30.278497"], ["updated_at", "2016-08-04 18:01:30.278497"]]
115
+  (158.8ms) commit transaction
116
+  (0.2ms) begin transaction
117
+ SQL (0.7ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 8], ["created_at", "2016-08-04 18:01:30.443447"], ["updated_at", "2016-08-04 18:01:30.443447"]]
118
+  (237.7ms) commit transaction
119
+  (0.2ms) begin transaction
120
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:30.690340"], ["updated_at", "2016-08-04 18:01:30.690340"]]
121
+  (181.3ms) commit transaction
122
+  (0.2ms) begin transaction
123
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 9], ["created_at", "2016-08-04 18:01:30.878215"], ["updated_at", "2016-08-04 18:01:30.878215"]]
124
+  (149.6ms) commit transaction
125
+  (0.2ms) begin transaction
126
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:31.035634"], ["updated_at", "2016-08-04 18:01:31.035634"]]
127
+  (181.1ms) commit transaction
128
+  (0.1ms) begin transaction
129
+ SQL (0.2ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 10], ["created_at", "2016-08-04 18:01:31.222386"], ["updated_at", "2016-08-04 18:01:31.222386"]]
130
+  (130.3ms) commit transaction
131
+  (0.1ms) begin transaction
132
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:31.358438"], ["updated_at", "2016-08-04 18:01:31.358438"]]
133
+  (149.4ms) commit transaction
134
+  (0.2ms) begin transaction
135
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 11], ["created_at", "2016-08-04 18:01:31.513183"], ["updated_at", "2016-08-04 18:01:31.513183"]]
136
+  (128.0ms) commit transaction
137
+  (0.3ms) begin transaction
138
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:31.646127"], ["updated_at", "2016-08-04 18:01:31.646127"]]
139
+  (139.5ms) commit transaction
140
+  (0.2ms) begin transaction
141
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 12], ["created_at", "2016-08-04 18:01:31.792187"], ["updated_at", "2016-08-04 18:01:31.792187"]]
142
+  (127.3ms) commit transaction
143
+  (0.2ms) begin transaction
144
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:31.926767"], ["updated_at", "2016-08-04 18:01:31.926767"]]
145
+  (137.8ms) commit transaction
146
+  (0.2ms) begin transaction
147
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 13], ["created_at", "2016-08-04 18:01:32.071036"], ["updated_at", "2016-08-04 18:01:32.071036"]]
148
+  (127.0ms) commit transaction
149
+  (0.2ms) begin transaction
150
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:32.205644"], ["updated_at", "2016-08-04 18:01:32.205644"]]
151
+  (148.7ms) commit transaction
152
+  (0.2ms) begin transaction
153
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 14], ["created_at", "2016-08-04 18:01:32.360292"], ["updated_at", "2016-08-04 18:01:32.360292"]]
154
+  (161.3ms) commit transaction
155
+  (0.3ms) begin transaction
156
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:32.528872"], ["updated_at", "2016-08-04 18:01:32.528872"]]
157
+  (172.5ms) commit transaction
158
+  (0.2ms) begin transaction
159
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 15], ["created_at", "2016-08-04 18:01:32.707771"], ["updated_at", "2016-08-04 18:01:32.707771"]]
160
+  (160.6ms) commit transaction
161
+  (0.2ms) begin transaction
162
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:32.875804"], ["updated_at", "2016-08-04 18:01:32.875804"]]
163
+  (159.8ms) commit transaction
164
+  (0.2ms) begin transaction
165
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 16], ["created_at", "2016-08-04 18:01:33.041712"], ["updated_at", "2016-08-04 18:01:33.041712"]]
166
+  (127.6ms) commit transaction
167
+  (0.2ms) begin transaction
168
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:33.176102"], ["updated_at", "2016-08-04 18:01:33.176102"]]
169
+  (149.7ms) commit transaction
170
+  (0.2ms) begin transaction
171
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 17], ["created_at", "2016-08-04 18:01:33.331662"], ["updated_at", "2016-08-04 18:01:33.331662"]]
172
+  (161.1ms) commit transaction
173
+  (0.2ms) begin transaction
174
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:33.512551"], ["updated_at", "2016-08-04 18:01:33.512551"]]
175
+  (147.4ms) commit transaction
176
+  (0.2ms) begin transaction
177
+ SQL (0.6ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:33.667478"], ["updated_at", "2016-08-04 18:01:33.667478"]]
178
+  (137.0ms) commit transaction
179
+  (0.3ms) begin transaction
180
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:33.812892"], ["updated_at", "2016-08-04 18:01:33.812892"]]
181
+  (147.5ms) commit transaction
182
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
183
+  (0.1ms) begin transaction
184
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:01:34.003200"], ["updated_at", "2016-08-04 18:01:34.003200"]]
185
+  (180.7ms) commit transaction
186
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 21]]
187
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
188
+  (362.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
189
+  (0.2ms) select sqlite_version(*)
190
+  (218.7ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
191
+  (254.0ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
192
+  (366.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
193
+  (757.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
194
+  (621.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
195
+  (0.3ms) SELECT version FROM "schema_migrations"
196
+  (421.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
197
+  (444.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
198
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
199
+  (0.1ms) begin transaction
200
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:12.460151"], ["updated_at", "2016-08-04 18:03:12.460151"]]
201
+ [ActiveJob] [Dallal::DallalJob] [e18a65ab-4dcf-4456-b57f-910e589ae9a6] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
202
+ [ActiveJob] [Dallal::DallalJob] [e18a65ab-4dcf-4456-b57f-910e589ae9a6] Performed Dallal::DallalJob from Inline(default) in 3.3ms
203
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: e18a65ab-4dcf-4456-b57f-910e589ae9a6) to Inline(default) with arguments: "User", 1, "create"
204
+  (387.5ms) commit transaction
205
+  (0.2ms) begin transaction
206
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:12.860968"], ["updated_at", "2016-08-04 18:03:12.860968"]]
207
+ [ActiveJob] [Dallal::DallalJob] [3530bdba-5941-43c2-86e4-fc77840a05ae] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 2, "create"
208
+ [ActiveJob] [Dallal::DallalJob] [3530bdba-5941-43c2-86e4-fc77840a05ae] Performed Dallal::DallalJob from Inline(default) in 0.23ms
209
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 3530bdba-5941-43c2-86e4-fc77840a05ae) to Inline(default) with arguments: "User", 2, "create"
210
+  (492.6ms) commit transaction
211
+  (0.2ms) begin transaction
212
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:13.361827"], ["updated_at", "2016-08-04 18:03:13.361827"]]
213
+ [ActiveJob] [Dallal::DallalJob] [f8120ceb-2086-4f77-9b42-faeb58798a43] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 3, "create"
214
+ [ActiveJob] [Dallal::DallalJob] [f8120ceb-2086-4f77-9b42-faeb58798a43] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
215
+ [ActiveJob] [Dallal::DallalJob] [f8120ceb-2086-4f77-9b42-faeb58798a43] Performed Dallal::DallalJob from Inline(default) in 8.83ms
216
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: f8120ceb-2086-4f77-9b42-faeb58798a43) to Inline(default) with arguments: "User", 3, "create"
217
+  (541.7ms) commit transaction
218
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
219
+  (0.2ms) begin transaction
220
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:13.921693"], ["updated_at", "2016-08-04 18:03:13.921693"]]
221
+ [ActiveJob] [Dallal::DallalJob] [1160c5fc-fb03-4ae7-b038-5c6fe5b3304f] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 4, "create"
222
+ [ActiveJob] [Dallal::DallalJob] [1160c5fc-fb03-4ae7-b038-5c6fe5b3304f] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
223
+ [ActiveJob] [Dallal::DallalJob] [1160c5fc-fb03-4ae7-b038-5c6fe5b3304f] Performed Dallal::DallalJob from Inline(default) in 1.33ms
224
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 1160c5fc-fb03-4ae7-b038-5c6fe5b3304f) to Inline(default) with arguments: "User", 4, "create"
225
+  (265.8ms) commit transaction
226
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
227
+  (0.2ms) begin transaction
228
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:14.204845"], ["updated_at", "2016-08-04 18:03:14.204845"]]
229
+ [ActiveJob] [Dallal::DallalJob] [882362bd-4f29-4765-8602-430c5ee30068] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 5, "create"
230
+ [ActiveJob] [Dallal::DallalJob] [882362bd-4f29-4765-8602-430c5ee30068] Performed Dallal::DallalJob from Inline(default) in 0.29ms
231
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 882362bd-4f29-4765-8602-430c5ee30068) to Inline(default) with arguments: "User", 5, "create"
232
+  (284.6ms) commit transaction
233
+  (0.1ms) begin transaction
234
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 5], ["created_at", "2016-08-04 18:03:14.527006"], ["updated_at", "2016-08-04 18:03:14.527006"]]
235
+ [ActiveJob] [Dallal::DallalJob] [5e14fde7-a7fc-45a7-ab3b-c157c5d7af08] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
236
+ [ActiveJob] [Dallal::DallalJob] [5e14fde7-a7fc-45a7-ab3b-c157c5d7af08] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
237
+ [ActiveJob] [Dallal::DallalJob] [5e14fde7-a7fc-45a7-ab3b-c157c5d7af08] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]]
238
+ [ActiveJob] [Dallal::DallalJob] [5e14fde7-a7fc-45a7-ab3b-c157c5d7af08]
239
+ Dallal::Mailer#notify: processed outbound mail in 2277.4ms
240
+ [ActiveJob] [Dallal::DallalJob] [5e14fde7-a7fc-45a7-ab3b-c157c5d7af08] Performed Dallal::DallalJob from Inline(default) in 2408.68ms
241
+  (0.3ms) rollback transaction
242
+  (0.1ms) begin transaction
243
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:16.943455"], ["updated_at", "2016-08-04 18:03:16.943455"]]
244
+ [ActiveJob] [Dallal::DallalJob] [df6cf816-884d-45e1-91bc-b771cc40ad5a] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 6, "create"
245
+ [ActiveJob] [Dallal::DallalJob] [df6cf816-884d-45e1-91bc-b771cc40ad5a] Performed Dallal::DallalJob from Inline(default) in 0.23ms
246
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: df6cf816-884d-45e1-91bc-b771cc40ad5a) to Inline(default) with arguments: "User", 6, "create"
247
+  (732.1ms) commit transaction
248
+  (0.1ms) begin transaction
249
+ SQL (0.3ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 6], ["created_at", "2016-08-04 18:03:17.681659"], ["updated_at", "2016-08-04 18:03:17.681659"]]
250
+ [ActiveJob] [Dallal::DallalJob] [06dc0dd8-c1fe-40a8-ad2a-f1176fc4dc6a] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
251
+ [ActiveJob] [Dallal::DallalJob] [06dc0dd8-c1fe-40a8-ad2a-f1176fc4dc6a] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
252
+ [ActiveJob] [Dallal::DallalJob] [06dc0dd8-c1fe-40a8-ad2a-f1176fc4dc6a] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
253
+ [ActiveJob] [Dallal::DallalJob] [06dc0dd8-c1fe-40a8-ad2a-f1176fc4dc6a]
254
+ Dallal::Mailer#notify: processed outbound mail in 2.2ms
255
+ [ActiveJob] [Dallal::DallalJob] [06dc0dd8-c1fe-40a8-ad2a-f1176fc4dc6a] Performed Dallal::DallalJob from Inline(default) in 4.8ms
256
+  (0.2ms) rollback transaction
257
+  (0.1ms) begin transaction
258
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:17.691690"], ["updated_at", "2016-08-04 18:03:17.691690"]]
259
+ [ActiveJob] [Dallal::DallalJob] [3adda1b1-65c7-4f3f-8e1a-31f9e0c96e04] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 7, "create"
260
+ [ActiveJob] [Dallal::DallalJob] [3adda1b1-65c7-4f3f-8e1a-31f9e0c96e04] Performed Dallal::DallalJob from Inline(default) in 0.18ms
261
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 3adda1b1-65c7-4f3f-8e1a-31f9e0c96e04) to Inline(default) with arguments: "User", 7, "create"
262
+  (584.5ms) commit transaction
263
+  (0.1ms) begin transaction
264
+ SQL (0.1ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 7], ["created_at", "2016-08-04 18:03:18.280491"], ["updated_at", "2016-08-04 18:03:18.280491"]]
265
+ [ActiveJob] [Dallal::DallalJob] [9d1cb2eb-ab9b-40e6-8a81-d8463eabd1d2] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
266
+ [ActiveJob] [Dallal::DallalJob] [9d1cb2eb-ab9b-40e6-8a81-d8463eabd1d2] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
267
+ [ActiveJob] [Dallal::DallalJob] [9d1cb2eb-ab9b-40e6-8a81-d8463eabd1d2] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 7]]
268
+ [ActiveJob] [Dallal::DallalJob] [9d1cb2eb-ab9b-40e6-8a81-d8463eabd1d2]
269
+ Dallal::Mailer#notify: processed outbound mail in 1.0ms
270
+ [ActiveJob] [Dallal::DallalJob] [9d1cb2eb-ab9b-40e6-8a81-d8463eabd1d2] Performed Dallal::DallalJob from Inline(default) in 2.07ms
271
+  (0.1ms) rollback transaction
272
+  (0.0ms) begin transaction
273
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:18.285254"], ["updated_at", "2016-08-04 18:03:18.285254"]]
274
+ [ActiveJob] [Dallal::DallalJob] [5c3e5034-bb44-4b0b-a2b0-212369cded67] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 8, "create"
275
+ [ActiveJob] [Dallal::DallalJob] [5c3e5034-bb44-4b0b-a2b0-212369cded67] Performed Dallal::DallalJob from Inline(default) in 0.1ms
276
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 5c3e5034-bb44-4b0b-a2b0-212369cded67) to Inline(default) with arguments: "User", 8, "create"
277
+  (949.3ms) commit transaction
278
+  (0.2ms) begin transaction
279
+ SQL (0.3ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 8], ["created_at", "2016-08-04 18:03:19.238599"], ["updated_at", "2016-08-04 18:03:19.238599"]]
280
+ [ActiveJob] [Dallal::DallalJob] [47fa0e8b-ddd4-4f96-8ec0-893a3773ebb1] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
281
+ [ActiveJob] [Dallal::DallalJob] [47fa0e8b-ddd4-4f96-8ec0-893a3773ebb1] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
282
+ [ActiveJob] [Dallal::DallalJob] [47fa0e8b-ddd4-4f96-8ec0-893a3773ebb1] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 8]]
283
+ [ActiveJob] [Dallal::DallalJob] [47fa0e8b-ddd4-4f96-8ec0-893a3773ebb1]
284
+ Dallal::Mailer#notify: processed outbound mail in 3.1ms
285
+ [ActiveJob] [Dallal::DallalJob] [47fa0e8b-ddd4-4f96-8ec0-893a3773ebb1] Performed Dallal::DallalJob from Inline(default) in 6.65ms
286
+  (0.3ms) rollback transaction
287
+  (0.1ms) begin transaction
288
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:19.251921"], ["updated_at", "2016-08-04 18:03:19.251921"]]
289
+ [ActiveJob] [Dallal::DallalJob] [24375275-d731-4d4d-9584-8f319c9359a1] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 9, "create"
290
+ [ActiveJob] [Dallal::DallalJob] [24375275-d731-4d4d-9584-8f319c9359a1] Performed Dallal::DallalJob from Inline(default) in 0.22ms
291
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 24375275-d731-4d4d-9584-8f319c9359a1) to Inline(default) with arguments: "User", 9, "create"
292
+  (613.8ms) commit transaction
293
+  (0.2ms) begin transaction
294
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 9], ["created_at", "2016-08-04 18:03:19.872505"], ["updated_at", "2016-08-04 18:03:19.872505"]]
295
+ [ActiveJob] [Dallal::DallalJob] [758e964d-ad91-43cd-b3f8-35edbf63800b] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
296
+ [ActiveJob] [Dallal::DallalJob] [758e964d-ad91-43cd-b3f8-35edbf63800b] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
297
+ [ActiveJob] [Dallal::DallalJob] [758e964d-ad91-43cd-b3f8-35edbf63800b] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]]
298
+ [ActiveJob] [Dallal::DallalJob] [758e964d-ad91-43cd-b3f8-35edbf63800b]
299
+ Dallal::Mailer#notify: processed outbound mail in 3.1ms
300
+ [ActiveJob] [Dallal::DallalJob] [758e964d-ad91-43cd-b3f8-35edbf63800b] Performed Dallal::DallalJob from Inline(default) in 6.74ms
301
+  (0.3ms) rollback transaction
302
+  (0.2ms) begin transaction
303
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:19.887617"], ["updated_at", "2016-08-04 18:03:19.887617"]]
304
+ [ActiveJob] [Dallal::DallalJob] [ddfbb0c7-9709-45a6-86f4-efadb38feb39] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 10, "create"
305
+ [ActiveJob] [Dallal::DallalJob] [ddfbb0c7-9709-45a6-86f4-efadb38feb39] Performed Dallal::DallalJob from Inline(default) in 0.29ms
306
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: ddfbb0c7-9709-45a6-86f4-efadb38feb39) to Inline(default) with arguments: "User", 10, "create"
307
+  (510.4ms) commit transaction
308
+  (0.1ms) begin transaction
309
+ SQL (0.3ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 10], ["created_at", "2016-08-04 18:03:20.404827"], ["updated_at", "2016-08-04 18:03:20.404827"]]
310
+ [ActiveJob] [Dallal::DallalJob] [3590b232-0c75-4b39-a9b0-dccdd7d99628] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
311
+ [ActiveJob] [Dallal::DallalJob] [3590b232-0c75-4b39-a9b0-dccdd7d99628] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
312
+ [ActiveJob] [Dallal::DallalJob] [3590b232-0c75-4b39-a9b0-dccdd7d99628] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
313
+ [ActiveJob] [Dallal::DallalJob] [3590b232-0c75-4b39-a9b0-dccdd7d99628]
314
+ Dallal::Mailer#notify: processed outbound mail in 2.1ms
315
+ [ActiveJob] [Dallal::DallalJob] [3590b232-0c75-4b39-a9b0-dccdd7d99628] Performed Dallal::DallalJob from Inline(default) in 4.62ms
316
+  (0.2ms) rollback transaction
317
+  (0.1ms) begin transaction
318
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:20.415267"], ["updated_at", "2016-08-04 18:03:20.415267"]]
319
+ [ActiveJob] [Dallal::DallalJob] [9b41a5e9-7507-4148-b071-0a71c83e1794] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 11, "create"
320
+ [ActiveJob] [Dallal::DallalJob] [9b41a5e9-7507-4148-b071-0a71c83e1794] Performed Dallal::DallalJob from Inline(default) in 0.11ms
321
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 9b41a5e9-7507-4148-b071-0a71c83e1794) to Inline(default) with arguments: "User", 11, "create"
322
+  (906.7ms) commit transaction
323
+  (0.1ms) begin transaction
324
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 11], ["created_at", "2016-08-04 18:03:21.327499"], ["updated_at", "2016-08-04 18:03:21.327499"]]
325
+ [ActiveJob] [Dallal::DallalJob] [90bd472f-ab66-4e61-919f-9347e0dd5f9d] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
326
+ [ActiveJob] [Dallal::DallalJob] [90bd472f-ab66-4e61-919f-9347e0dd5f9d] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
327
+ [ActiveJob] [Dallal::DallalJob] [90bd472f-ab66-4e61-919f-9347e0dd5f9d] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]]
328
+ [ActiveJob] [Dallal::DallalJob] [90bd472f-ab66-4e61-919f-9347e0dd5f9d]
329
+ Dallal::Mailer#notify: processed outbound mail in 2.5ms
330
+ [ActiveJob] [Dallal::DallalJob] [90bd472f-ab66-4e61-919f-9347e0dd5f9d] Performed Dallal::DallalJob from Inline(default) in 5.73ms
331
+  (0.3ms) rollback transaction
332
+  (0.2ms) begin transaction
333
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:21.340096"], ["updated_at", "2016-08-04 18:03:21.340096"]]
334
+ [ActiveJob] [Dallal::DallalJob] [c21d18c0-4983-49f0-9304-e4a6da9dfd6d] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 12, "create"
335
+ [ActiveJob] [Dallal::DallalJob] [c21d18c0-4983-49f0-9304-e4a6da9dfd6d] Performed Dallal::DallalJob from Inline(default) in 0.22ms
336
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: c21d18c0-4983-49f0-9304-e4a6da9dfd6d) to Inline(default) with arguments: "User", 12, "create"
337
+  (927.7ms) commit transaction
338
+  (0.1ms) begin transaction
339
+ SQL (0.2ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 12], ["created_at", "2016-08-04 18:03:22.272796"], ["updated_at", "2016-08-04 18:03:22.272796"]]
340
+ [ActiveJob] [Dallal::DallalJob] [542b5e0c-0a8f-425b-9933-7cba79872fb2] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
341
+ [ActiveJob] [Dallal::DallalJob] [542b5e0c-0a8f-425b-9933-7cba79872fb2] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
342
+ [ActiveJob] [Dallal::DallalJob] [542b5e0c-0a8f-425b-9933-7cba79872fb2] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 12]]
343
+ [ActiveJob] [Dallal::DallalJob] [542b5e0c-0a8f-425b-9933-7cba79872fb2]
344
+ Dallal::Mailer#notify: processed outbound mail in 1.0ms
345
+ [ActiveJob] [Dallal::DallalJob] [542b5e0c-0a8f-425b-9933-7cba79872fb2] Performed Dallal::DallalJob from Inline(default) in 2.08ms
346
+  (0.1ms) rollback transaction
347
+  (0.1ms) begin transaction
348
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:22.277605"], ["updated_at", "2016-08-04 18:03:22.277605"]]
349
+ [ActiveJob] [Dallal::DallalJob] [940af929-9538-4b8f-81bd-3f644ec61076] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 13, "create"
350
+ [ActiveJob] [Dallal::DallalJob] [940af929-9538-4b8f-81bd-3f644ec61076] Performed Dallal::DallalJob from Inline(default) in 0.17ms
351
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 940af929-9538-4b8f-81bd-3f644ec61076) to Inline(default) with arguments: "User", 13, "create"
352
+  (949.4ms) commit transaction
353
+  (0.2ms) begin transaction
354
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 13], ["created_at", "2016-08-04 18:03:23.231831"], ["updated_at", "2016-08-04 18:03:23.231831"]]
355
+ [ActiveJob] [Dallal::DallalJob] [c0ca3e52-3f8b-46a9-b110-56b01387cdc5] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
356
+ [ActiveJob] [Dallal::DallalJob] [c0ca3e52-3f8b-46a9-b110-56b01387cdc5] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
357
+ [ActiveJob] [Dallal::DallalJob] [c0ca3e52-3f8b-46a9-b110-56b01387cdc5] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
358
+ [ActiveJob] [Dallal::DallalJob] [c0ca3e52-3f8b-46a9-b110-56b01387cdc5]
359
+ Dallal::Mailer#notify: processed outbound mail in 3.1ms
360
+ [ActiveJob] [Dallal::DallalJob] [c0ca3e52-3f8b-46a9-b110-56b01387cdc5] Performed Dallal::DallalJob from Inline(default) in 6.85ms
361
+  (0.3ms) rollback transaction
362
+  (0.1ms) begin transaction
363
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:23.245595"], ["updated_at", "2016-08-04 18:03:23.245595"]]
364
+ [ActiveJob] [Dallal::DallalJob] [e64af42f-1d94-4be5-92ed-52037b921138] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 14, "create"
365
+ [ActiveJob] [Dallal::DallalJob] [e64af42f-1d94-4be5-92ed-52037b921138] Performed Dallal::DallalJob from Inline(default) in 0.23ms
366
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: e64af42f-1d94-4be5-92ed-52037b921138) to Inline(default) with arguments: "User", 14, "create"
367
+  (623.3ms) commit transaction
368
+  (0.1ms) begin transaction
369
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 14], ["created_at", "2016-08-04 18:03:23.875292"], ["updated_at", "2016-08-04 18:03:23.875292"]]
370
+ [ActiveJob] [Dallal::DallalJob] [228b00a2-76cb-4170-bff3-c2db0bae38d9] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
371
+ [ActiveJob] [Dallal::DallalJob] [228b00a2-76cb-4170-bff3-c2db0bae38d9] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
372
+ [ActiveJob] [Dallal::DallalJob] [228b00a2-76cb-4170-bff3-c2db0bae38d9] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
373
+ [ActiveJob] [Dallal::DallalJob] [228b00a2-76cb-4170-bff3-c2db0bae38d9]
374
+ Dallal::Mailer#notify: processed outbound mail in 2.4ms
375
+ [ActiveJob] [Dallal::DallalJob] [228b00a2-76cb-4170-bff3-c2db0bae38d9] Performed Dallal::DallalJob from Inline(default) in 5.17ms
376
+  (0.2ms) rollback transaction
377
+  (0.1ms) begin transaction
378
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:23.886680"], ["updated_at", "2016-08-04 18:03:23.886680"]]
379
+ [ActiveJob] [Dallal::DallalJob] [17327cbe-b797-4b83-b214-a7889c86f65f] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 15, "create"
380
+ [ActiveJob] [Dallal::DallalJob] [17327cbe-b797-4b83-b214-a7889c86f65f] Performed Dallal::DallalJob from Inline(default) in 0.21ms
381
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 17327cbe-b797-4b83-b214-a7889c86f65f) to Inline(default) with arguments: "User", 15, "create"
382
+  (560.7ms) commit transaction
383
+  (0.2ms) begin transaction
384
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 15], ["created_at", "2016-08-04 18:03:24.453898"], ["updated_at", "2016-08-04 18:03:24.453898"]]
385
+ [ActiveJob] [Dallal::DallalJob] [38804a99-6d09-4540-9cb7-61e8c1e83a7c] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
386
+ [ActiveJob] [Dallal::DallalJob] [38804a99-6d09-4540-9cb7-61e8c1e83a7c] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
387
+ [ActiveJob] [Dallal::DallalJob] [38804a99-6d09-4540-9cb7-61e8c1e83a7c] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 15]]
388
+ [ActiveJob] [Dallal::DallalJob] [38804a99-6d09-4540-9cb7-61e8c1e83a7c]
389
+ Dallal::Mailer#notify: processed outbound mail in 3.2ms
390
+ [ActiveJob] [Dallal::DallalJob] [38804a99-6d09-4540-9cb7-61e8c1e83a7c] Performed Dallal::DallalJob from Inline(default) in 6.75ms
391
+  (0.3ms) rollback transaction
392
+  (0.1ms) begin transaction
393
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:24.468270"], ["updated_at", "2016-08-04 18:03:24.468270"]]
394
+ [ActiveJob] [Dallal::DallalJob] [c97f294c-c617-43f9-b48b-f2b2fb557bfb] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 16, "create"
395
+ [ActiveJob] [Dallal::DallalJob] [c97f294c-c617-43f9-b48b-f2b2fb557bfb] Performed Dallal::DallalJob from Inline(default) in 0.27ms
396
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: c97f294c-c617-43f9-b48b-f2b2fb557bfb) to Inline(default) with arguments: "User", 16, "create"
397
+  (578.1ms) commit transaction
398
+  (0.2ms) begin transaction
399
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 16], ["created_at", "2016-08-04 18:03:25.053951"], ["updated_at", "2016-08-04 18:03:25.053951"]]
400
+ [ActiveJob] [Dallal::DallalJob] [b7011826-7b8c-41c9-871a-49e8c23a5bfc] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
401
+ [ActiveJob] [Dallal::DallalJob] [b7011826-7b8c-41c9-871a-49e8c23a5bfc] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
402
+ [ActiveJob] [Dallal::DallalJob] [b7011826-7b8c-41c9-871a-49e8c23a5bfc] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 16]]
403
+ [ActiveJob] [Dallal::DallalJob] [b7011826-7b8c-41c9-871a-49e8c23a5bfc]
404
+ Dallal::Mailer#notify: processed outbound mail in 3.3ms
405
+ [ActiveJob] [Dallal::DallalJob] [b7011826-7b8c-41c9-871a-49e8c23a5bfc] Performed Dallal::DallalJob from Inline(default) in 6.9ms
406
+  (0.3ms) rollback transaction
407
+ [ActiveJob] [Dallal::DallalJob] [391ff52b-a6cd-4176-ad0c-c698b6986606] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
408
+ [ActiveJob] [Dallal::DallalJob] [391ff52b-a6cd-4176-ad0c-c698b6986606] Performed Dallal::DallalJob from Inline(default) in 1.84ms
409
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 391ff52b-a6cd-4176-ad0c-c698b6986606) to Inline(default) with arguments: "User", 1, "create"
410
+  (0.2ms) begin transaction
411
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:25.085927"], ["updated_at", "2016-08-04 18:03:25.085927"]]
412
+  (517.4ms) commit transaction
413
+  (0.1ms) begin transaction
414
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:25.616361"], ["updated_at", "2016-08-04 18:03:25.616361"]]
415
+ [ActiveJob] [Dallal::DallalJob] [d0b0dd62-14c5-43cd-8886-d22e11f92bb2] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 12, "create"
416
+ [ActiveJob] [Dallal::DallalJob] [d0b0dd62-14c5-43cd-8886-d22e11f92bb2] Performed Dallal::DallalJob from Inline(default) in 0.65ms
417
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: d0b0dd62-14c5-43cd-8886-d22e11f92bb2) to Inline(default) with arguments: "User", 12, "create"
418
+  (1330.2ms) commit transaction
419
+  (0.2ms) begin transaction
420
+  (0.1ms) commit transaction
421
+  (0.2ms) begin transaction
422
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:26.969775"], ["updated_at", "2016-08-04 18:03:26.969775"]]
423
+ [ActiveJob] [Dallal::DallalJob] [7b7ee896-a507-48ac-b8d1-da4c36d0b4e3] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 19, "create"
424
+ [ActiveJob] [Dallal::DallalJob] [7b7ee896-a507-48ac-b8d1-da4c36d0b4e3] Performed Dallal::DallalJob from Inline(default) in 0.33ms
425
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 7b7ee896-a507-48ac-b8d1-da4c36d0b4e3) to Inline(default) with arguments: "User", 19, "create"
426
+  (978.2ms) commit transaction
427
+  (0.2ms) begin transaction
428
+ [ActiveJob] [Dallal::DallalJob] [cb892f02-f439-407c-a438-7671a2c89a1c] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 19, "update"
429
+ [ActiveJob] [Dallal::DallalJob] [cb892f02-f439-407c-a438-7671a2c89a1c] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 19]]
430
+ [ActiveJob] [Dallal::DallalJob] [cb892f02-f439-407c-a438-7671a2c89a1c] Performed Dallal::DallalJob from Inline(default) in 1.5ms
431
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: cb892f02-f439-407c-a438-7671a2c89a1c) to Inline(default) with arguments: "User", 19, "update"
432
+  (0.1ms) commit transaction
433
+  (0.1ms) begin transaction
434
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:03:27.963446"], ["updated_at", "2016-08-04 18:03:27.963446"]]
435
+ [ActiveJob] [Dallal::DallalJob] [04cab0fc-11c4-438c-b76c-ae8958356a62] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
436
+ [ActiveJob] [Dallal::DallalJob] [04cab0fc-11c4-438c-b76c-ae8958356a62] Performed Dallal::DallalJob from Inline(default) in 0.25ms
437
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 04cab0fc-11c4-438c-b76c-ae8958356a62) to Inline(default) with arguments: "User", 1, "create"
438
+  (951.8ms) commit transaction
439
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
440
+  (164.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
441
+  (0.2ms) select sqlite_version(*)
442
+  (134.4ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
443
+  (132.3ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
444
+  (132.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
445
+  (133.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
446
+  (132.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
447
+  (0.4ms) SELECT version FROM "schema_migrations"
448
+  (132.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
449
+  (133.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
450
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
451
+  (0.1ms) begin transaction
452
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:39.481074"], ["updated_at", "2016-08-04 18:05:39.481074"]]
453
+ [ActiveJob] [Dallal::DallalJob] [cfc8bbed-1f2e-4ffd-b99b-8ef6da2fad48] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 12, "create"
454
+ [ActiveJob] [Dallal::DallalJob] [cfc8bbed-1f2e-4ffd-b99b-8ef6da2fad48] Performed Dallal::DallalJob from Inline(default) in 3.19ms
455
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: cfc8bbed-1f2e-4ffd-b99b-8ef6da2fad48) to Inline(default) with arguments: "User", 12, "create"
456
+  (162.4ms) commit transaction
457
+  (0.2ms) begin transaction
458
+  (0.2ms) commit transaction
459
+ [ActiveJob] [Dallal::DallalJob] [c67fe354-9e07-4f57-93f0-7c95e884785a] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
460
+ [ActiveJob] [Dallal::DallalJob] [c67fe354-9e07-4f57-93f0-7c95e884785a] Performed Dallal::DallalJob from Inline(default) in 1.46ms
461
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: c67fe354-9e07-4f57-93f0-7c95e884785a) to Inline(default) with arguments: "User", 1, "create"
462
+  (0.2ms) begin transaction
463
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:39.677377"], ["updated_at", "2016-08-04 18:05:39.677377"]]
464
+  (162.0ms) commit transaction
465
+  (0.2ms) begin transaction
466
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:39.879390"], ["updated_at", "2016-08-04 18:05:39.879390"]]
467
+ [ActiveJob] [Dallal::DallalJob] [272238be-0de1-46d9-8c91-130b27b36a27] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 3, "create"
468
+ [ActiveJob] [Dallal::DallalJob] [272238be-0de1-46d9-8c91-130b27b36a27] Performed Dallal::DallalJob from Inline(default) in 0.76ms
469
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 272238be-0de1-46d9-8c91-130b27b36a27) to Inline(default) with arguments: "User", 3, "create"
470
+  (168.4ms) commit transaction
471
+  (0.1ms) begin transaction
472
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 3], ["created_at", "2016-08-04 18:05:40.084425"], ["updated_at", "2016-08-04 18:05:40.084425"]]
473
+ [ActiveJob] [Dallal::DallalJob] [a570c745-3905-42ff-b87f-4b40572defef] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
474
+ [ActiveJob] [Dallal::DallalJob] [a570c745-3905-42ff-b87f-4b40572defef] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
475
+ [ActiveJob] [Dallal::DallalJob] [a570c745-3905-42ff-b87f-4b40572defef] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
476
+ [ActiveJob] [Dallal::DallalJob] [a570c745-3905-42ff-b87f-4b40572defef]
477
+ Dallal::Mailer#notify: processed outbound mail in 177.9ms
478
+ [ActiveJob] [Dallal::DallalJob] [a570c745-3905-42ff-b87f-4b40572defef] Performed Dallal::DallalJob from Inline(default) in 193.71ms
479
+  (0.1ms) rollback transaction
480
+  (0.0ms) begin transaction
481
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:40.282990"], ["updated_at", "2016-08-04 18:05:40.282990"]]
482
+ [ActiveJob] [Dallal::DallalJob] [72c31d1c-dfae-455e-82b3-749478389240] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 4, "create"
483
+ [ActiveJob] [Dallal::DallalJob] [72c31d1c-dfae-455e-82b3-749478389240] Performed Dallal::DallalJob from Inline(default) in 0.1ms
484
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 72c31d1c-dfae-455e-82b3-749478389240) to Inline(default) with arguments: "User", 4, "create"
485
+  (202.0ms) commit transaction
486
+  (0.1ms) begin transaction
487
+ SQL (0.1ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 4], ["created_at", "2016-08-04 18:05:40.487682"], ["updated_at", "2016-08-04 18:05:40.487682"]]
488
+ [ActiveJob] [Dallal::DallalJob] [4fa88e75-e43b-4071-ba59-df7e07e5645e] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
489
+ [ActiveJob] [Dallal::DallalJob] [4fa88e75-e43b-4071-ba59-df7e07e5645e] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
490
+ [ActiveJob] [Dallal::DallalJob] [4fa88e75-e43b-4071-ba59-df7e07e5645e] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
491
+ [ActiveJob] [Dallal::DallalJob] [4fa88e75-e43b-4071-ba59-df7e07e5645e]
492
+ Dallal::Mailer#notify: processed outbound mail in 1.1ms
493
+ [ActiveJob] [Dallal::DallalJob] [4fa88e75-e43b-4071-ba59-df7e07e5645e] Performed Dallal::DallalJob from Inline(default) in 2.25ms
494
+  (0.1ms) rollback transaction
495
+  (0.0ms) begin transaction
496
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:40.492610"], ["updated_at", "2016-08-04 18:05:40.492610"]]
497
+ [ActiveJob] [Dallal::DallalJob] [c23a538d-f4d9-434b-9c0a-7e0bdc9c855e] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 5, "create"
498
+ [ActiveJob] [Dallal::DallalJob] [c23a538d-f4d9-434b-9c0a-7e0bdc9c855e] Performed Dallal::DallalJob from Inline(default) in 0.09ms
499
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: c23a538d-f4d9-434b-9c0a-7e0bdc9c855e) to Inline(default) with arguments: "User", 5, "create"
500
+  (159.7ms) commit transaction
501
+  (0.2ms) begin transaction
502
+ SQL (0.3ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 5], ["created_at", "2016-08-04 18:05:40.656687"], ["updated_at", "2016-08-04 18:05:40.656687"]]
503
+ [ActiveJob] [Dallal::DallalJob] [d66e5bef-bc10-499f-b2ef-234d1af04a53] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
504
+ [ActiveJob] [Dallal::DallalJob] [d66e5bef-bc10-499f-b2ef-234d1af04a53] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
505
+ [ActiveJob] [Dallal::DallalJob] [d66e5bef-bc10-499f-b2ef-234d1af04a53] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]]
506
+ [ActiveJob] [Dallal::DallalJob] [d66e5bef-bc10-499f-b2ef-234d1af04a53]
507
+ Dallal::Mailer#notify: processed outbound mail in 1.8ms
508
+ [ActiveJob] [Dallal::DallalJob] [d66e5bef-bc10-499f-b2ef-234d1af04a53] Performed Dallal::DallalJob from Inline(default) in 4.21ms
509
+  (0.2ms) rollback transaction
510
+  (0.1ms) begin transaction
511
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:40.665826"], ["updated_at", "2016-08-04 18:05:40.665826"]]
512
+ [ActiveJob] [Dallal::DallalJob] [1c1dc0e5-733a-406f-a94d-3d42dfc5cee2] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 6, "create"
513
+ [ActiveJob] [Dallal::DallalJob] [1c1dc0e5-733a-406f-a94d-3d42dfc5cee2] Performed Dallal::DallalJob from Inline(default) in 0.16ms
514
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 1c1dc0e5-733a-406f-a94d-3d42dfc5cee2) to Inline(default) with arguments: "User", 6, "create"
515
+  (143.0ms) commit transaction
516
+  (0.1ms) begin transaction
517
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 6], ["created_at", "2016-08-04 18:05:40.813510"], ["updated_at", "2016-08-04 18:05:40.813510"]]
518
+ [ActiveJob] [Dallal::DallalJob] [c42a45de-83f1-470a-8cbc-a2f24fed4ebe] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
519
+ [ActiveJob] [Dallal::DallalJob] [c42a45de-83f1-470a-8cbc-a2f24fed4ebe] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
520
+ [ActiveJob] [Dallal::DallalJob] [c42a45de-83f1-470a-8cbc-a2f24fed4ebe] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
521
+ [ActiveJob] [Dallal::DallalJob] [c42a45de-83f1-470a-8cbc-a2f24fed4ebe]
522
+ Dallal::Mailer#notify: processed outbound mail in 1.8ms
523
+ [ActiveJob] [Dallal::DallalJob] [c42a45de-83f1-470a-8cbc-a2f24fed4ebe] Performed Dallal::DallalJob from Inline(default) in 3.95ms
524
+  (0.2ms) rollback transaction
525
+  (0.1ms) begin transaction
526
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:40.822555"], ["updated_at", "2016-08-04 18:05:40.822555"]]
527
+ [ActiveJob] [Dallal::DallalJob] [bca2314a-e27d-48f7-a17d-f71325874400] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 7, "create"
528
+ [ActiveJob] [Dallal::DallalJob] [bca2314a-e27d-48f7-a17d-f71325874400] Performed Dallal::DallalJob from Inline(default) in 0.17ms
529
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: bca2314a-e27d-48f7-a17d-f71325874400) to Inline(default) with arguments: "User", 7, "create"
530
+  (153.4ms) commit transaction
531
+  (0.1ms) begin transaction
532
+ SQL (0.3ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 7], ["created_at", "2016-08-04 18:05:40.980513"], ["updated_at", "2016-08-04 18:05:40.980513"]]
533
+ [ActiveJob] [Dallal::DallalJob] [f4debd99-a7e8-4d7c-a270-d6b8201d6f8f] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
534
+ [ActiveJob] [Dallal::DallalJob] [f4debd99-a7e8-4d7c-a270-d6b8201d6f8f] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
535
+ [ActiveJob] [Dallal::DallalJob] [f4debd99-a7e8-4d7c-a270-d6b8201d6f8f] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 7]]
536
+ [ActiveJob] [Dallal::DallalJob] [f4debd99-a7e8-4d7c-a270-d6b8201d6f8f]
537
+ Dallal::Mailer#notify: processed outbound mail in 1.1ms
538
+ [ActiveJob] [Dallal::DallalJob] [f4debd99-a7e8-4d7c-a270-d6b8201d6f8f] Performed Dallal::DallalJob from Inline(default) in 3.11ms
539
+  (0.2ms) rollback transaction
540
+  (0.1ms) begin transaction
541
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:40.987743"], ["updated_at", "2016-08-04 18:05:40.987743"]]
542
+ [ActiveJob] [Dallal::DallalJob] [38dfdfc0-aca1-4b3f-ba8a-8d329ce89910] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 8, "create"
543
+ [ActiveJob] [Dallal::DallalJob] [38dfdfc0-aca1-4b3f-ba8a-8d329ce89910] Performed Dallal::DallalJob from Inline(default) in 0.11ms
544
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 38dfdfc0-aca1-4b3f-ba8a-8d329ce89910) to Inline(default) with arguments: "User", 8, "create"
545
+  (133.9ms) commit transaction
546
+  (0.1ms) begin transaction
547
+ SQL (0.2ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 8], ["created_at", "2016-08-04 18:05:41.125278"], ["updated_at", "2016-08-04 18:05:41.125278"]]
548
+ [ActiveJob] [Dallal::DallalJob] [9784f4db-c9d2-4637-b4d2-7d2d21290a80] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
549
+ [ActiveJob] [Dallal::DallalJob] [9784f4db-c9d2-4637-b4d2-7d2d21290a80] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
550
+ [ActiveJob] [Dallal::DallalJob] [9784f4db-c9d2-4637-b4d2-7d2d21290a80] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 8]]
551
+ [ActiveJob] [Dallal::DallalJob] [9784f4db-c9d2-4637-b4d2-7d2d21290a80]
552
+ Dallal::Mailer#notify: processed outbound mail in 1.6ms
553
+ [ActiveJob] [Dallal::DallalJob] [9784f4db-c9d2-4637-b4d2-7d2d21290a80] Performed Dallal::DallalJob from Inline(default) in 3.72ms
554
+  (0.1ms) rollback transaction
555
+  (0.1ms) begin transaction
556
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:41.133169"], ["updated_at", "2016-08-04 18:05:41.133169"]]
557
+ [ActiveJob] [Dallal::DallalJob] [ed7b6861-e4c5-4ef3-8f3f-b1efc13f42bd] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 9, "create"
558
+ [ActiveJob] [Dallal::DallalJob] [ed7b6861-e4c5-4ef3-8f3f-b1efc13f42bd] Performed Dallal::DallalJob from Inline(default) in 0.16ms
559
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: ed7b6861-e4c5-4ef3-8f3f-b1efc13f42bd) to Inline(default) with arguments: "User", 9, "create"
560
+  (188.3ms) commit transaction
561
+  (0.1ms) begin transaction
562
+ SQL (0.1ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 9], ["created_at", "2016-08-04 18:05:41.324914"], ["updated_at", "2016-08-04 18:05:41.324914"]]
563
+ [ActiveJob] [Dallal::DallalJob] [5fe483a8-4e16-4bf5-b033-537e02369608] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
564
+ [ActiveJob] [Dallal::DallalJob] [5fe483a8-4e16-4bf5-b033-537e02369608] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
565
+ [ActiveJob] [Dallal::DallalJob] [5fe483a8-4e16-4bf5-b033-537e02369608] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]]
566
+ [ActiveJob] [Dallal::DallalJob] [5fe483a8-4e16-4bf5-b033-537e02369608]
567
+ Dallal::Mailer#notify: processed outbound mail in 1.0ms
568
+ [ActiveJob] [Dallal::DallalJob] [5fe483a8-4e16-4bf5-b033-537e02369608] Performed Dallal::DallalJob from Inline(default) in 2.16ms
569
+  (0.1ms) rollback transaction
570
+  (0.0ms) begin transaction
571
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:41.329683"], ["updated_at", "2016-08-04 18:05:41.329683"]]
572
+ [ActiveJob] [Dallal::DallalJob] [2824fa87-0cd8-4161-8047-c6d323640e7b] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 10, "create"
573
+ [ActiveJob] [Dallal::DallalJob] [2824fa87-0cd8-4161-8047-c6d323640e7b] Performed Dallal::DallalJob from Inline(default) in 0.1ms
574
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 2824fa87-0cd8-4161-8047-c6d323640e7b) to Inline(default) with arguments: "User", 10, "create"
575
+  (204.9ms) commit transaction
576
+  (0.2ms) begin transaction
577
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 10], ["created_at", "2016-08-04 18:05:41.539739"], ["updated_at", "2016-08-04 18:05:41.539739"]]
578
+ [ActiveJob] [Dallal::DallalJob] [40b7a804-625b-40cd-a09c-1b4e28b887b7] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
579
+ [ActiveJob] [Dallal::DallalJob] [40b7a804-625b-40cd-a09c-1b4e28b887b7] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
580
+ [ActiveJob] [Dallal::DallalJob] [40b7a804-625b-40cd-a09c-1b4e28b887b7] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
581
+ [ActiveJob] [Dallal::DallalJob] [40b7a804-625b-40cd-a09c-1b4e28b887b7]
582
+ Dallal::Mailer#notify: processed outbound mail in 2.5ms
583
+ [ActiveJob] [Dallal::DallalJob] [40b7a804-625b-40cd-a09c-1b4e28b887b7] Performed Dallal::DallalJob from Inline(default) in 5.77ms
584
+  (0.3ms) rollback transaction
585
+  (0.2ms) begin transaction
586
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:41.554737"], ["updated_at", "2016-08-04 18:05:41.554737"]]
587
+ [ActiveJob] [Dallal::DallalJob] [973d803f-448b-45a7-8936-03790db24ed7] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 11, "create"
588
+ [ActiveJob] [Dallal::DallalJob] [973d803f-448b-45a7-8936-03790db24ed7] Performed Dallal::DallalJob from Inline(default) in 0.26ms
589
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 973d803f-448b-45a7-8936-03790db24ed7) to Inline(default) with arguments: "User", 11, "create"
590
+  (132.2ms) commit transaction
591
+  (0.2ms) begin transaction
592
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 11], ["created_at", "2016-08-04 18:05:41.695072"], ["updated_at", "2016-08-04 18:05:41.695072"]]
593
+ [ActiveJob] [Dallal::DallalJob] [978eb94e-9b29-406f-97c4-9d69f0c61b25] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
594
+ [ActiveJob] [Dallal::DallalJob] [978eb94e-9b29-406f-97c4-9d69f0c61b25] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
595
+ [ActiveJob] [Dallal::DallalJob] [978eb94e-9b29-406f-97c4-9d69f0c61b25] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]]
596
+ [ActiveJob] [Dallal::DallalJob] [978eb94e-9b29-406f-97c4-9d69f0c61b25]
597
+ Dallal::Mailer#notify: processed outbound mail in 2.7ms
598
+ [ActiveJob] [Dallal::DallalJob] [978eb94e-9b29-406f-97c4-9d69f0c61b25] Performed Dallal::DallalJob from Inline(default) in 6.19ms
599
+  (0.4ms) rollback transaction
600
+  (0.1ms) begin transaction
601
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:41.708660"], ["updated_at", "2016-08-04 18:05:41.708660"]]
602
+ [ActiveJob] [Dallal::DallalJob] [310c5b9e-a6d9-4159-8ac4-b8b9467240f3] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 12, "create"
603
+ [ActiveJob] [Dallal::DallalJob] [310c5b9e-a6d9-4159-8ac4-b8b9467240f3] Performed Dallal::DallalJob from Inline(default) in 0.26ms
604
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 310c5b9e-a6d9-4159-8ac4-b8b9467240f3) to Inline(default) with arguments: "User", 12, "create"
605
+  (135.0ms) commit transaction
606
+  (0.2ms) begin transaction
607
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 12], ["created_at", "2016-08-04 18:05:41.850431"], ["updated_at", "2016-08-04 18:05:41.850431"]]
608
+ [ActiveJob] [Dallal::DallalJob] [b8f25c57-f32b-44eb-97cf-b875ae2958f7] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
609
+ [ActiveJob] [Dallal::DallalJob] [b8f25c57-f32b-44eb-97cf-b875ae2958f7] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
610
+ [ActiveJob] [Dallal::DallalJob] [b8f25c57-f32b-44eb-97cf-b875ae2958f7] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 12]]
611
+ [ActiveJob] [Dallal::DallalJob] [b8f25c57-f32b-44eb-97cf-b875ae2958f7]
612
+ Dallal::Mailer#notify: processed outbound mail in 3.2ms
613
+ [ActiveJob] [Dallal::DallalJob] [b8f25c57-f32b-44eb-97cf-b875ae2958f7] Performed Dallal::DallalJob from Inline(default) in 6.59ms
614
+  (0.5ms) rollback transaction
615
+  (0.2ms) begin transaction
616
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:41.865347"], ["updated_at", "2016-08-04 18:05:41.865347"]]
617
+ [ActiveJob] [Dallal::DallalJob] [63885f47-e85c-4d4e-a5e2-30ffd5c25365] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 13, "create"
618
+ [ActiveJob] [Dallal::DallalJob] [63885f47-e85c-4d4e-a5e2-30ffd5c25365] Performed Dallal::DallalJob from Inline(default) in 0.3ms
619
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 63885f47-e85c-4d4e-a5e2-30ffd5c25365) to Inline(default) with arguments: "User", 13, "create"
620
+  (133.8ms) commit transaction
621
+  (0.1ms) begin transaction
622
+ SQL (0.3ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 13], ["created_at", "2016-08-04 18:05:42.006578"], ["updated_at", "2016-08-04 18:05:42.006578"]]
623
+ [ActiveJob] [Dallal::DallalJob] [594cdcce-57b8-4803-bd96-c595e0a47518] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
624
+ [ActiveJob] [Dallal::DallalJob] [594cdcce-57b8-4803-bd96-c595e0a47518] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
625
+ [ActiveJob] [Dallal::DallalJob] [594cdcce-57b8-4803-bd96-c595e0a47518] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
626
+ [ActiveJob] [Dallal::DallalJob] [594cdcce-57b8-4803-bd96-c595e0a47518]
627
+ Dallal::Mailer#notify: processed outbound mail in 2.4ms
628
+ [ActiveJob] [Dallal::DallalJob] [594cdcce-57b8-4803-bd96-c595e0a47518] Performed Dallal::DallalJob from Inline(default) in 4.92ms
629
+  (0.2ms) rollback transaction
630
+  (0.1ms) begin transaction
631
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:42.017536"], ["updated_at", "2016-08-04 18:05:42.017536"]]
632
+ [ActiveJob] [Dallal::DallalJob] [4153ab5a-84a5-4fc2-977f-2265b12069a7] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 14, "create"
633
+ [ActiveJob] [Dallal::DallalJob] [4153ab5a-84a5-4fc2-977f-2265b12069a7] Performed Dallal::DallalJob from Inline(default) in 0.22ms
634
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 4153ab5a-84a5-4fc2-977f-2265b12069a7) to Inline(default) with arguments: "User", 14, "create"
635
+  (161.3ms) commit transaction
636
+  (0.1ms) begin transaction
637
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 14], ["created_at", "2016-08-04 18:05:42.184797"], ["updated_at", "2016-08-04 18:05:42.184797"]]
638
+ [ActiveJob] [Dallal::DallalJob] [c2f03a32-73ba-4544-8a6d-fa893e31bd57] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
639
+ [ActiveJob] [Dallal::DallalJob] [c2f03a32-73ba-4544-8a6d-fa893e31bd57] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
640
+ [ActiveJob] [Dallal::DallalJob] [c2f03a32-73ba-4544-8a6d-fa893e31bd57] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
641
+ [ActiveJob] [Dallal::DallalJob] [c2f03a32-73ba-4544-8a6d-fa893e31bd57]
642
+ Dallal::Mailer#notify: processed outbound mail in 2.6ms
643
+ [ActiveJob] [Dallal::DallalJob] [c2f03a32-73ba-4544-8a6d-fa893e31bd57] Performed Dallal::DallalJob from Inline(default) in 5.51ms
644
+  (0.3ms) rollback transaction
645
+  (0.1ms) begin transaction
646
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:42.199365"], ["updated_at", "2016-08-04 18:05:42.199365"]]
647
+ [ActiveJob] [Dallal::DallalJob] [f966c38f-d3a6-44ec-a5c8-4d67a78ad33d] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
648
+ [ActiveJob] [Dallal::DallalJob] [f966c38f-d3a6-44ec-a5c8-4d67a78ad33d] Performed Dallal::DallalJob from Inline(default) in 0.23ms
649
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: f966c38f-d3a6-44ec-a5c8-4d67a78ad33d) to Inline(default) with arguments: "User", 1, "create"
650
+  (256.7ms) commit transaction
651
+  (0.2ms) begin transaction
652
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:42.463145"], ["updated_at", "2016-08-04 18:05:42.463145"]]
653
+ [ActiveJob] [Dallal::DallalJob] [d12aa729-3ed7-4e16-8a7e-4b9e5fdd63c8] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 16, "create"
654
+ [ActiveJob] [Dallal::DallalJob] [d12aa729-3ed7-4e16-8a7e-4b9e5fdd63c8] Performed Dallal::DallalJob from Inline(default) in 0.15ms
655
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: d12aa729-3ed7-4e16-8a7e-4b9e5fdd63c8) to Inline(default) with arguments: "User", 16, "create"
656
+  (194.9ms) commit transaction
657
+  (0.1ms) begin transaction
658
+ [ActiveJob] [Dallal::DallalJob] [99e5d3fa-4513-43b4-9d7d-997c47234143] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 16, "update"
659
+ [ActiveJob] [Dallal::DallalJob] [99e5d3fa-4513-43b4-9d7d-997c47234143] Performed Dallal::DallalJob from Inline(default) in 0.12ms
660
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 99e5d3fa-4513-43b4-9d7d-997c47234143) to Inline(default) with arguments: "User", 16, "update"
661
+  (0.1ms) commit transaction
662
+  (0.1ms) begin transaction
663
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:42.669882"], ["updated_at", "2016-08-04 18:05:42.669882"]]
664
+ [ActiveJob] [Dallal::DallalJob] [a3332948-fa46-484b-b372-58c46a7add90] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 17, "create"
665
+ [ActiveJob] [Dallal::DallalJob] [a3332948-fa46-484b-b372-58c46a7add90] Performed Dallal::DallalJob from Inline(default) in 0.3ms
666
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: a3332948-fa46-484b-b372-58c46a7add90) to Inline(default) with arguments: "User", 17, "create"
667
+  (156.9ms) commit transaction
668
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
669
+  (0.2ms) begin transaction
670
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:42.836571"], ["updated_at", "2016-08-04 18:05:42.836571"]]
671
+ [ActiveJob] [Dallal::DallalJob] [2d5cdb36-8035-4f0d-9bdd-eaaf1b2ac086] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 18, "create"
672
+ [ActiveJob] [Dallal::DallalJob] [2d5cdb36-8035-4f0d-9bdd-eaaf1b2ac086] Performed Dallal::DallalJob from Inline(default) in 0.3ms
673
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 2d5cdb36-8035-4f0d-9bdd-eaaf1b2ac086) to Inline(default) with arguments: "User", 18, "create"
674
+  (176.5ms) commit transaction
675
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 18]]
676
+  (0.2ms) begin transaction
677
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:43.027087"], ["updated_at", "2016-08-04 18:05:43.027087"]]
678
+ [ActiveJob] [Dallal::DallalJob] [e7214fe7-28ea-4192-bf60-48d1a6d92060] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 19, "create"
679
+ [ActiveJob] [Dallal::DallalJob] [e7214fe7-28ea-4192-bf60-48d1a6d92060] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 19]]
680
+ [ActiveJob] [Dallal::DallalJob] [e7214fe7-28ea-4192-bf60-48d1a6d92060] Performed Dallal::DallalJob from Inline(default) in 1.04ms
681
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: e7214fe7-28ea-4192-bf60-48d1a6d92060) to Inline(default) with arguments: "User", 19, "create"
682
+  (144.4ms) commit transaction
683
+  (0.2ms) begin transaction
684
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:05:43.180807"], ["updated_at", "2016-08-04 18:05:43.180807"]]
685
+ [ActiveJob] [Dallal::DallalJob] [c14a583b-d9b5-48db-832b-e57bde86f060] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 20, "create"
686
+ [ActiveJob] [Dallal::DallalJob] [c14a583b-d9b5-48db-832b-e57bde86f060] Performed Dallal::DallalJob from Inline(default) in 0.3ms
687
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: c14a583b-d9b5-48db-832b-e57bde86f060) to Inline(default) with arguments: "User", 20, "create"
688
+  (135.0ms) commit transaction
689
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
690
+  (169.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
691
+  (0.2ms) select sqlite_version(*)
692
+  (163.0ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
693
+  (187.5ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
694
+  (187.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
695
+  (169.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
696
+  (176.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
697
+  (0.4ms) SELECT version FROM "schema_migrations"
698
+  (165.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
699
+  (188.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
700
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
701
+  (0.2ms) begin transaction
702
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:30.741682"], ["updated_at", "2016-08-04 18:07:30.741682"]]
703
+  (166.4ms) commit transaction
704
+  (0.1ms) begin transaction
705
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:30.923393"], ["updated_at", "2016-08-04 18:07:30.923393"]]
706
+ [ActiveJob] [Dallal::DallalJob] [9e30eac2-fde6-41e2-a364-43de08b8af85] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 12, "create"
707
+ [ActiveJob] [Dallal::DallalJob] [9e30eac2-fde6-41e2-a364-43de08b8af85] Performed Dallal::DallalJob from Inline(default) in 6.85ms
708
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 9e30eac2-fde6-41e2-a364-43de08b8af85) to Inline(default) with arguments: "User", 12, "create"
709
+  (163.5ms) commit transaction
710
+  (0.2ms) begin transaction
711
+  (0.1ms) commit transaction
712
+ [ActiveJob] [Dallal::DallalJob] [3159ed57-400d-4fec-8f43-5172de81c8bd] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
713
+ [ActiveJob] [Dallal::DallalJob] [3159ed57-400d-4fec-8f43-5172de81c8bd] Performed Dallal::DallalJob from Inline(default) in 1.71ms
714
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 3159ed57-400d-4fec-8f43-5172de81c8bd) to Inline(default) with arguments: "User", 1, "create"
715
+  (0.2ms) begin transaction
716
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:31.126655"], ["updated_at", "2016-08-04 18:07:31.126655"]]
717
+ [ActiveJob] [Dallal::DallalJob] [5a7e97bb-9a86-4345-b446-c5736decb1df] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 3, "create"
718
+ [ActiveJob] [Dallal::DallalJob] [5a7e97bb-9a86-4345-b446-c5736decb1df] Performed Dallal::DallalJob from Inline(default) in 0.8ms
719
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 5a7e97bb-9a86-4345-b446-c5736decb1df) to Inline(default) with arguments: "User", 3, "create"
720
+  (169.6ms) commit transaction
721
+  (0.2ms) begin transaction
722
+ [ActiveJob] [Dallal::DallalJob] [011172f1-1867-4751-85c1-2007d1275c29] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 3, "update"
723
+ [ActiveJob] [Dallal::DallalJob] [011172f1-1867-4751-85c1-2007d1275c29] Performed Dallal::DallalJob from Inline(default) in 0.28ms
724
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 011172f1-1867-4751-85c1-2007d1275c29) to Inline(default) with arguments: "User", 3, "update"
725
+  (0.1ms) commit transaction
726
+  (0.1ms) begin transaction
727
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:31.310702"], ["updated_at", "2016-08-04 18:07:31.310702"]]
728
+ [ActiveJob] [Dallal::DallalJob] [5c07307e-8d63-4901-9b3e-24773be390fd] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
729
+ [ActiveJob] [Dallal::DallalJob] [5c07307e-8d63-4901-9b3e-24773be390fd] Performed Dallal::DallalJob from Inline(default) in 0.31ms
730
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 5c07307e-8d63-4901-9b3e-24773be390fd) to Inline(default) with arguments: "User", 1, "create"
731
+  (152.5ms) commit transaction
732
+  (0.3ms) begin transaction
733
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:31.502339"], ["updated_at", "2016-08-04 18:07:31.502339"]]
734
+ [ActiveJob] [Dallal::DallalJob] [46f7c250-f2db-4d84-9ba0-cd59897f8d06] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 5, "create"
735
+ [ActiveJob] [Dallal::DallalJob] [46f7c250-f2db-4d84-9ba0-cd59897f8d06] Performed Dallal::DallalJob from Inline(default) in 0.22ms
736
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 46f7c250-f2db-4d84-9ba0-cd59897f8d06) to Inline(default) with arguments: "User", 5, "create"
737
+  (194.6ms) commit transaction
738
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]]
739
+  (0.2ms) begin transaction
740
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:31.719729"], ["updated_at", "2016-08-04 18:07:31.719729"]]
741
+ [ActiveJob] [Dallal::DallalJob] [408d0a5e-6530-447a-b75d-13ce186c552e] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 6, "create"
742
+ [ActiveJob] [Dallal::DallalJob] [408d0a5e-6530-447a-b75d-13ce186c552e] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
743
+ [ActiveJob] [Dallal::DallalJob] [408d0a5e-6530-447a-b75d-13ce186c552e] Performed Dallal::DallalJob from Inline(default) in 1.13ms
744
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 408d0a5e-6530-447a-b75d-13ce186c552e) to Inline(default) with arguments: "User", 6, "create"
745
+  (154.7ms) commit transaction
746
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
747
+  (0.2ms) begin transaction
748
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:31.886400"], ["updated_at", "2016-08-04 18:07:31.886400"]]
749
+ [ActiveJob] [Dallal::DallalJob] [3fcbab71-081d-4251-bfc8-2ec14d975e72] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 7, "create"
750
+ [ActiveJob] [Dallal::DallalJob] [3fcbab71-081d-4251-bfc8-2ec14d975e72] Performed Dallal::DallalJob from Inline(default) in 0.29ms
751
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 3fcbab71-081d-4251-bfc8-2ec14d975e72) to Inline(default) with arguments: "User", 7, "create"
752
+  (155.6ms) commit transaction
753
+  (0.2ms) begin transaction
754
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:32.051346"], ["updated_at", "2016-08-04 18:07:32.051346"]]
755
+ [ActiveJob] [Dallal::DallalJob] [2e17ff30-a3e2-4525-a056-27f5e4798544] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 8, "create"
756
+ [ActiveJob] [Dallal::DallalJob] [2e17ff30-a3e2-4525-a056-27f5e4798544] Performed Dallal::DallalJob from Inline(default) in 0.41ms
757
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 2e17ff30-a3e2-4525-a056-27f5e4798544) to Inline(default) with arguments: "User", 8, "create"
758
+  (192.8ms) commit transaction
759
+  (0.2ms) begin transaction
760
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:32.256552"], ["updated_at", "2016-08-04 18:07:32.256552"]]
761
+ [ActiveJob] [Dallal::DallalJob] [c4779eb1-4c73-4c22-8e31-a6baa800f6da] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 9, "create"
762
+ [ActiveJob] [Dallal::DallalJob] [c4779eb1-4c73-4c22-8e31-a6baa800f6da] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]]
763
+ [ActiveJob] [Dallal::DallalJob] [c4779eb1-4c73-4c22-8e31-a6baa800f6da] Performed Dallal::DallalJob from Inline(default) in 1.31ms
764
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: c4779eb1-4c73-4c22-8e31-a6baa800f6da) to Inline(default) with arguments: "User", 9, "create"
765
+  (164.9ms) commit transaction
766
+  (0.2ms) begin transaction
767
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 9], ["created_at", "2016-08-04 18:07:32.453811"], ["updated_at", "2016-08-04 18:07:32.453811"]]
768
+ [ActiveJob] [Dallal::DallalJob] [5b72c14c-746b-42b3-8186-c8cccd7fabf4] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
769
+ [ActiveJob] [Dallal::DallalJob] [5b72c14c-746b-42b3-8186-c8cccd7fabf4] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
770
+ [ActiveJob] [Dallal::DallalJob] [5b72c14c-746b-42b3-8186-c8cccd7fabf4] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]]
771
+ [ActiveJob] [Dallal::DallalJob] [5b72c14c-746b-42b3-8186-c8cccd7fabf4] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (21.8ms)
772
+ [ActiveJob] [Dallal::DallalJob] [5b72c14c-746b-42b3-8186-c8cccd7fabf4] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (1.0ms)
773
+ [ActiveJob] [Dallal::DallalJob] [5b72c14c-746b-42b3-8186-c8cccd7fabf4]
774
+ Dallal::Mailer#notify: processed outbound mail in 248.8ms
775
+ [ActiveJob] [Dallal::DallalJob] [5b72c14c-746b-42b3-8186-c8cccd7fabf4]
776
+ Sent mail to laertis.pappas@gmail.com (11.9ms)
777
+ [ActiveJob] [Dallal::DallalJob] [5b72c14c-746b-42b3-8186-c8cccd7fabf4] Date: Thu, 04 Aug 2016 21:07:32 +0300
778
+ From: just a name <foo@bar.xyz>
779
+ Reply-To: just a name <foo@bar.xyz>
780
+ To: laertis.pappas@gmail.com
781
+ Message-ID: <57a38464b0ce4_4aa33f7ed498398c42c@lapis-localhost.mail>
782
+ Subject: <html> <body> A subject </body> </html>
783
+ Mime-Version: 1.0
784
+ Content-Type: text/html;
785
+ charset=UTF-8
786
+ Content-Transfer-Encoding: 7bit
787
+
788
+ <html>
789
+ <body>
790
+ <h1>Register email</h1>
791
+ This is a test data template fixture
792
+
793
+ #&lt;User:0x007efdac6daff0&gt;
794
+
795
+
796
+ </body>
797
+ </html>
798
+
799
+ [ActiveJob] [Dallal::DallalJob] [5b72c14c-746b-42b3-8186-c8cccd7fabf4] Performed Dallal::DallalJob from Inline(default) in 272.97ms
800
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 5b72c14c-746b-42b3-8186-c8cccd7fabf4) to Inline(default) with arguments: "Post", 1, "create"
801
+  (152.0ms) commit transaction
802
+  (0.1ms) begin transaction
803
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:32.885617"], ["updated_at", "2016-08-04 18:07:32.885617"]]
804
+ [ActiveJob] [Dallal::DallalJob] [f1f73a68-36df-4f7f-a334-f7a753e8f6b3] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 10, "create"
805
+ [ActiveJob] [Dallal::DallalJob] [f1f73a68-36df-4f7f-a334-f7a753e8f6b3] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
806
+ [ActiveJob] [Dallal::DallalJob] [f1f73a68-36df-4f7f-a334-f7a753e8f6b3] Performed Dallal::DallalJob from Inline(default) in 1.37ms
807
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: f1f73a68-36df-4f7f-a334-f7a753e8f6b3) to Inline(default) with arguments: "User", 10, "create"
808
+  (191.7ms) commit transaction
809
+  (0.1ms) begin transaction
810
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 10], ["created_at", "2016-08-04 18:07:33.086292"], ["updated_at", "2016-08-04 18:07:33.086292"]]
811
+ [ActiveJob] [Dallal::DallalJob] [e1ee1f4c-ecdb-4593-a459-19fd19f0f64d] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 2, "create"
812
+ [ActiveJob] [Dallal::DallalJob] [e1ee1f4c-ecdb-4593-a459-19fd19f0f64d] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]]
813
+ [ActiveJob] [Dallal::DallalJob] [e1ee1f4c-ecdb-4593-a459-19fd19f0f64d] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
814
+ [ActiveJob] [Dallal::DallalJob] [e1ee1f4c-ecdb-4593-a459-19fd19f0f64d] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
815
+ [ActiveJob] [Dallal::DallalJob] [e1ee1f4c-ecdb-4593-a459-19fd19f0f64d] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
816
+ [ActiveJob] [Dallal::DallalJob] [e1ee1f4c-ecdb-4593-a459-19fd19f0f64d]
817
+ Dallal::Mailer#notify: processed outbound mail in 4.1ms
818
+ [ActiveJob] [Dallal::DallalJob] [e1ee1f4c-ecdb-4593-a459-19fd19f0f64d]
819
+ Sent mail to laertis.pappas@gmail.com (5.0ms)
820
+ [ActiveJob] [Dallal::DallalJob] [e1ee1f4c-ecdb-4593-a459-19fd19f0f64d] Date: Thu, 04 Aug 2016 21:07:33 +0300
821
+ From: just a name <foo@bar.xyz>
822
+ Reply-To: just a name <foo@bar.xyz>
823
+ To: laertis.pappas@gmail.com
824
+ Message-ID: <57a384651880d_4aa33f7ed498398c579@lapis-localhost.mail>
825
+ Subject: <html> <body> A subject </body> </html>
826
+ Mime-Version: 1.0
827
+ Content-Type: text/html;
828
+ charset=UTF-8
829
+ Content-Transfer-Encoding: 7bit
830
+
831
+ <html>
832
+ <body>
833
+ <h1>Register email</h1>
834
+ This is a test data template fixture
835
+
836
+ #&lt;User:0x007efdacf10760&gt;
837
+
838
+
839
+ </body>
840
+ </html>
841
+
842
+ [ActiveJob] [Dallal::DallalJob] [e1ee1f4c-ecdb-4593-a459-19fd19f0f64d] Performed Dallal::DallalJob from Inline(default) in 12.89ms
843
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: e1ee1f4c-ecdb-4593-a459-19fd19f0f64d) to Inline(default) with arguments: "Post", 2, "create"
844
+  (158.3ms) commit transaction
845
+  (0.2ms) begin transaction
846
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:33.266532"], ["updated_at", "2016-08-04 18:07:33.266532"]]
847
+ [ActiveJob] [Dallal::DallalJob] [8c046415-8dd4-4dfc-8ed5-b08cb150d94e] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 11, "create"
848
+ [ActiveJob] [Dallal::DallalJob] [8c046415-8dd4-4dfc-8ed5-b08cb150d94e] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]]
849
+ [ActiveJob] [Dallal::DallalJob] [8c046415-8dd4-4dfc-8ed5-b08cb150d94e] Performed Dallal::DallalJob from Inline(default) in 1.25ms
850
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 8c046415-8dd4-4dfc-8ed5-b08cb150d94e) to Inline(default) with arguments: "User", 11, "create"
851
+  (200.9ms) commit transaction
852
+  (0.2ms) begin transaction
853
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 11], ["created_at", "2016-08-04 18:07:33.476304"], ["updated_at", "2016-08-04 18:07:33.476304"]]
854
+ [ActiveJob] [Dallal::DallalJob] [455b8068-bbb1-48e8-9914-193a62854dea] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 3, "create"
855
+ [ActiveJob] [Dallal::DallalJob] [455b8068-bbb1-48e8-9914-193a62854dea] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]]
856
+ [ActiveJob] [Dallal::DallalJob] [455b8068-bbb1-48e8-9914-193a62854dea] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]]
857
+ [ActiveJob] [Dallal::DallalJob] [455b8068-bbb1-48e8-9914-193a62854dea] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
858
+ [ActiveJob] [Dallal::DallalJob] [455b8068-bbb1-48e8-9914-193a62854dea] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
859
+ [ActiveJob] [Dallal::DallalJob] [455b8068-bbb1-48e8-9914-193a62854dea]
860
+ Dallal::Mailer#notify: processed outbound mail in 5.2ms
861
+ [ActiveJob] [Dallal::DallalJob] [455b8068-bbb1-48e8-9914-193a62854dea]
862
+ Sent mail to laertis.pappas@gmail.com (6.2ms)
863
+ [ActiveJob] [Dallal::DallalJob] [455b8068-bbb1-48e8-9914-193a62854dea] Date: Thu, 04 Aug 2016 21:07:33 +0300
864
+ From: just a name <foo@bar.xyz>
865
+ Reply-To: just a name <foo@bar.xyz>
866
+ To: laertis.pappas@gmail.com
867
+ Message-ID: <57a384657815f_4aa33f7ed498398c670@lapis-localhost.mail>
868
+ Subject: <html> <body> A subject </body> </html>
869
+ Mime-Version: 1.0
870
+ Content-Type: text/html;
871
+ charset=UTF-8
872
+ Content-Transfer-Encoding: 7bit
873
+
874
+ <html>
875
+ <body>
876
+ <h1>Register email</h1>
877
+ This is a test data template fixture
878
+
879
+ #&lt;User:0x007efdaccab088&gt;
880
+
881
+
882
+ </body>
883
+ </html>
884
+
885
+ [ActiveJob] [Dallal::DallalJob] [455b8068-bbb1-48e8-9914-193a62854dea] Performed Dallal::DallalJob from Inline(default) in 15.11ms
886
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 455b8068-bbb1-48e8-9914-193a62854dea) to Inline(default) with arguments: "Post", 3, "create"
887
+  (178.1ms) commit transaction
888
+  (0.2ms) begin transaction
889
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:33.678927"], ["updated_at", "2016-08-04 18:07:33.678927"]]
890
+ [ActiveJob] [Dallal::DallalJob] [57aa8057-7165-4199-978c-4039340cf13b] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 12, "create"
891
+ [ActiveJob] [Dallal::DallalJob] [57aa8057-7165-4199-978c-4039340cf13b] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 12]]
892
+ [ActiveJob] [Dallal::DallalJob] [57aa8057-7165-4199-978c-4039340cf13b] Performed Dallal::DallalJob from Inline(default) in 1.25ms
893
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 57aa8057-7165-4199-978c-4039340cf13b) to Inline(default) with arguments: "User", 12, "create"
894
+  (178.4ms) commit transaction
895
+  (0.2ms) begin transaction
896
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 12], ["created_at", "2016-08-04 18:07:33.866576"], ["updated_at", "2016-08-04 18:07:33.866576"]]
897
+ [ActiveJob] [Dallal::DallalJob] [77376955-2926-49fd-a1d6-67884468b4c1] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 4, "create"
898
+ [ActiveJob] [Dallal::DallalJob] [77376955-2926-49fd-a1d6-67884468b4c1] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]]
899
+ [ActiveJob] [Dallal::DallalJob] [77376955-2926-49fd-a1d6-67884468b4c1] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 12]]
900
+ [ActiveJob] [Dallal::DallalJob] [77376955-2926-49fd-a1d6-67884468b4c1] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
901
+ [ActiveJob] [Dallal::DallalJob] [77376955-2926-49fd-a1d6-67884468b4c1] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
902
+ [ActiveJob] [Dallal::DallalJob] [77376955-2926-49fd-a1d6-67884468b4c1]
903
+ Dallal::Mailer#notify: processed outbound mail in 5.4ms
904
+ [ActiveJob] [Dallal::DallalJob] [77376955-2926-49fd-a1d6-67884468b4c1]
905
+ Sent mail to laertis.pappas@gmail.com (6.1ms)
906
+ [ActiveJob] [Dallal::DallalJob] [77376955-2926-49fd-a1d6-67884468b4c1] Date: Thu, 04 Aug 2016 21:07:33 +0300
907
+ From: just a name <foo@bar.xyz>
908
+ Reply-To: just a name <foo@bar.xyz>
909
+ To: laertis.pappas@gmail.com
910
+ Message-ID: <57a38465d766d_4aa33f7ed498398c7de@lapis-localhost.mail>
911
+ Subject: <html> <body> A subject </body> </html>
912
+ Mime-Version: 1.0
913
+ Content-Type: text/html;
914
+ charset=UTF-8
915
+ Content-Transfer-Encoding: 7bit
916
+
917
+ <html>
918
+ <body>
919
+ <h1>Register email</h1>
920
+ This is a test data template fixture
921
+
922
+ #&lt;User:0x007efdacbb03b8&gt;
923
+
924
+
925
+ </body>
926
+ </html>
927
+
928
+ [ActiveJob] [Dallal::DallalJob] [77376955-2926-49fd-a1d6-67884468b4c1] Performed Dallal::DallalJob from Inline(default) in 15.16ms
929
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 77376955-2926-49fd-a1d6-67884468b4c1) to Inline(default) with arguments: "Post", 4, "create"
930
+  (155.4ms) commit transaction
931
+  (0.2ms) begin transaction
932
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:34.046081"], ["updated_at", "2016-08-04 18:07:34.046081"]]
933
+ [ActiveJob] [Dallal::DallalJob] [134560a8-e556-4cf4-bc67-cc0de9e61200] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 13, "create"
934
+ [ActiveJob] [Dallal::DallalJob] [134560a8-e556-4cf4-bc67-cc0de9e61200] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
935
+ [ActiveJob] [Dallal::DallalJob] [134560a8-e556-4cf4-bc67-cc0de9e61200] Performed Dallal::DallalJob from Inline(default) in 1.25ms
936
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 134560a8-e556-4cf4-bc67-cc0de9e61200) to Inline(default) with arguments: "User", 13, "create"
937
+  (178.7ms) commit transaction
938
+  (0.2ms) begin transaction
939
+ SQL (0.3ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 13], ["created_at", "2016-08-04 18:07:34.233471"], ["updated_at", "2016-08-04 18:07:34.233471"]]
940
+ [ActiveJob] [Dallal::DallalJob] [b0f9e451-5706-47c7-81f3-4d2a839ea27b] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 5, "create"
941
+ [ActiveJob] [Dallal::DallalJob] [b0f9e451-5706-47c7-81f3-4d2a839ea27b] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]]
942
+ [ActiveJob] [Dallal::DallalJob] [b0f9e451-5706-47c7-81f3-4d2a839ea27b] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
943
+ [ActiveJob] [Dallal::DallalJob] [b0f9e451-5706-47c7-81f3-4d2a839ea27b] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
944
+ [ActiveJob] [Dallal::DallalJob] [b0f9e451-5706-47c7-81f3-4d2a839ea27b] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
945
+ [ActiveJob] [Dallal::DallalJob] [b0f9e451-5706-47c7-81f3-4d2a839ea27b]
946
+ Dallal::Mailer#notify: processed outbound mail in 4.1ms
947
+ [ActiveJob] [Dallal::DallalJob] [b0f9e451-5706-47c7-81f3-4d2a839ea27b]
948
+ Sent mail to laertis.pappas@gmail.com (4.8ms)
949
+ [ActiveJob] [Dallal::DallalJob] [b0f9e451-5706-47c7-81f3-4d2a839ea27b] Date: Thu, 04 Aug 2016 21:07:34 +0300
950
+ From: just a name <foo@bar.xyz>
951
+ Reply-To: just a name <foo@bar.xyz>
952
+ To: laertis.pappas@gmail.com
953
+ Message-ID: <57a384663bf5a_4aa33f7ed498398c897@lapis-localhost.mail>
954
+ Subject: <html> <body> A subject </body> </html>
955
+ Mime-Version: 1.0
956
+ Content-Type: text/html;
957
+ charset=UTF-8
958
+ Content-Transfer-Encoding: 7bit
959
+
960
+ <html>
961
+ <body>
962
+ <h1>Register email</h1>
963
+ This is a test data template fixture
964
+
965
+ #&lt;User:0x007efdacad35d0&gt;
966
+
967
+
968
+ </body>
969
+ </html>
970
+
971
+ [ActiveJob] [Dallal::DallalJob] [b0f9e451-5706-47c7-81f3-4d2a839ea27b] Performed Dallal::DallalJob from Inline(default) in 11.8ms
972
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: b0f9e451-5706-47c7-81f3-4d2a839ea27b) to Inline(default) with arguments: "Post", 5, "create"
973
+  (127.3ms) commit transaction
974
+  (0.2ms) begin transaction
975
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:34.380843"], ["updated_at", "2016-08-04 18:07:34.380843"]]
976
+ [ActiveJob] [Dallal::DallalJob] [6c875774-852d-4529-975f-bfc6bb084a57] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 14, "create"
977
+ [ActiveJob] [Dallal::DallalJob] [6c875774-852d-4529-975f-bfc6bb084a57] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
978
+ [ActiveJob] [Dallal::DallalJob] [6c875774-852d-4529-975f-bfc6bb084a57] Performed Dallal::DallalJob from Inline(default) in 1.44ms
979
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 6c875774-852d-4529-975f-bfc6bb084a57) to Inline(default) with arguments: "User", 14, "create"
980
+  (156.1ms) commit transaction
981
+  (0.2ms) begin transaction
982
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 14], ["created_at", "2016-08-04 18:07:34.545997"], ["updated_at", "2016-08-04 18:07:34.545997"]]
983
+ [ActiveJob] [Dallal::DallalJob] [e81ac644-876e-499e-909a-3bbf8728b71c] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 6, "create"
984
+ [ActiveJob] [Dallal::DallalJob] [e81ac644-876e-499e-909a-3bbf8728b71c] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]]
985
+ [ActiveJob] [Dallal::DallalJob] [e81ac644-876e-499e-909a-3bbf8728b71c] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
986
+ [ActiveJob] [Dallal::DallalJob] [e81ac644-876e-499e-909a-3bbf8728b71c] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
987
+ [ActiveJob] [Dallal::DallalJob] [e81ac644-876e-499e-909a-3bbf8728b71c] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
988
+ [ActiveJob] [Dallal::DallalJob] [e81ac644-876e-499e-909a-3bbf8728b71c]
989
+ Dallal::Mailer#notify: processed outbound mail in 5.0ms
990
+ [ActiveJob] [Dallal::DallalJob] [e81ac644-876e-499e-909a-3bbf8728b71c]
991
+ Sent mail to laertis.pappas@gmail.com (6.2ms)
992
+ [ActiveJob] [Dallal::DallalJob] [e81ac644-876e-499e-909a-3bbf8728b71c] Date: Thu, 04 Aug 2016 21:07:34 +0300
993
+ From: just a name <foo@bar.xyz>
994
+ Reply-To: just a name <foo@bar.xyz>
995
+ To: laertis.pappas@gmail.com
996
+ Message-ID: <57a3846688f6d_4aa33f7ed498398c9a@lapis-localhost.mail>
997
+ Subject: <html> <body> A subject </body> </html>
998
+ Mime-Version: 1.0
999
+ Content-Type: text/html;
1000
+ charset=UTF-8
1001
+ Content-Transfer-Encoding: 7bit
1002
+
1003
+ <html>
1004
+ <body>
1005
+ <h1>Register email</h1>
1006
+ This is a test data template fixture
1007
+
1008
+ #&lt;User:0x007efdac9c50f8&gt;
1009
+
1010
+
1011
+ </body>
1012
+ </html>
1013
+
1014
+ [ActiveJob] [Dallal::DallalJob] [e81ac644-876e-499e-909a-3bbf8728b71c] Performed Dallal::DallalJob from Inline(default) in 14.77ms
1015
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: e81ac644-876e-499e-909a-3bbf8728b71c) to Inline(default) with arguments: "Post", 6, "create"
1016
+  (134.2ms) commit transaction
1017
+  (0.1ms) begin transaction
1018
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:34.701984"], ["updated_at", "2016-08-04 18:07:34.701984"]]
1019
+ [ActiveJob] [Dallal::DallalJob] [4291212b-7a23-4a89-88f4-cad458794f8b] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 15, "create"
1020
+ [ActiveJob] [Dallal::DallalJob] [4291212b-7a23-4a89-88f4-cad458794f8b] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 15]]
1021
+ [ActiveJob] [Dallal::DallalJob] [4291212b-7a23-4a89-88f4-cad458794f8b] Performed Dallal::DallalJob from Inline(default) in 1.31ms
1022
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 4291212b-7a23-4a89-88f4-cad458794f8b) to Inline(default) with arguments: "User", 15, "create"
1023
+  (158.2ms) commit transaction
1024
+  (0.2ms) begin transaction
1025
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 15], ["created_at", "2016-08-04 18:07:34.869335"], ["updated_at", "2016-08-04 18:07:34.869335"]]
1026
+ [ActiveJob] [Dallal::DallalJob] [a1980c8b-a279-46de-be0f-622a04db3613] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 7, "create"
1027
+ [ActiveJob] [Dallal::DallalJob] [a1980c8b-a279-46de-be0f-622a04db3613] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]]
1028
+ [ActiveJob] [Dallal::DallalJob] [a1980c8b-a279-46de-be0f-622a04db3613] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 15]]
1029
+ [ActiveJob] [Dallal::DallalJob] [a1980c8b-a279-46de-be0f-622a04db3613] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1030
+ [ActiveJob] [Dallal::DallalJob] [a1980c8b-a279-46de-be0f-622a04db3613] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
1031
+ [ActiveJob] [Dallal::DallalJob] [a1980c8b-a279-46de-be0f-622a04db3613]
1032
+ Dallal::Mailer#notify: processed outbound mail in 5.7ms
1033
+ [ActiveJob] [Dallal::DallalJob] [a1980c8b-a279-46de-be0f-622a04db3613]
1034
+ Sent mail to laertis.pappas@gmail.com (6.3ms)
1035
+ [ActiveJob] [Dallal::DallalJob] [a1980c8b-a279-46de-be0f-622a04db3613] Date: Thu, 04 Aug 2016 21:07:34 +0300
1036
+ From: just a name <foo@bar.xyz>
1037
+ Reply-To: just a name <foo@bar.xyz>
1038
+ To: laertis.pappas@gmail.com
1039
+ Message-ID: <57a38466d8376_4aa33f7ed498398c1037@lapis-localhost.mail>
1040
+ Subject: <html> <body> A subject </body> </html>
1041
+ Mime-Version: 1.0
1042
+ Content-Type: text/html;
1043
+ charset=UTF-8
1044
+ Content-Transfer-Encoding: 7bit
1045
+
1046
+ <html>
1047
+ <body>
1048
+ <h1>Register email</h1>
1049
+ This is a test data template fixture
1050
+
1051
+ #&lt;User:0x007efdac8b7440&gt;
1052
+
1053
+
1054
+ </body>
1055
+ </html>
1056
+
1057
+ [ActiveJob] [Dallal::DallalJob] [a1980c8b-a279-46de-be0f-622a04db3613] Performed Dallal::DallalJob from Inline(default) in 15.83ms
1058
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: a1980c8b-a279-46de-be0f-622a04db3613) to Inline(default) with arguments: "Post", 7, "create"
1059
+  (143.8ms) commit transaction
1060
+  (0.2ms) begin transaction
1061
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:35.037752"], ["updated_at", "2016-08-04 18:07:35.037752"]]
1062
+ [ActiveJob] [Dallal::DallalJob] [7ecb1122-74c7-4a73-8ddc-7fb88aeaf13c] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 16, "create"
1063
+ [ActiveJob] [Dallal::DallalJob] [7ecb1122-74c7-4a73-8ddc-7fb88aeaf13c] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 16]]
1064
+ [ActiveJob] [Dallal::DallalJob] [7ecb1122-74c7-4a73-8ddc-7fb88aeaf13c] Performed Dallal::DallalJob from Inline(default) in 1.13ms
1065
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 7ecb1122-74c7-4a73-8ddc-7fb88aeaf13c) to Inline(default) with arguments: "User", 16, "create"
1066
+  (170.6ms) commit transaction
1067
+  (0.2ms) begin transaction
1068
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 16], ["created_at", "2016-08-04 18:07:35.216792"], ["updated_at", "2016-08-04 18:07:35.216792"]]
1069
+ [ActiveJob] [Dallal::DallalJob] [71674b9a-e2d7-4d47-8db9-4efe63064d86] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 8, "create"
1070
+ [ActiveJob] [Dallal::DallalJob] [71674b9a-e2d7-4d47-8db9-4efe63064d86] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]]
1071
+ [ActiveJob] [Dallal::DallalJob] [71674b9a-e2d7-4d47-8db9-4efe63064d86] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 16]]
1072
+ [ActiveJob] [Dallal::DallalJob] [71674b9a-e2d7-4d47-8db9-4efe63064d86] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1073
+ [ActiveJob] [Dallal::DallalJob] [71674b9a-e2d7-4d47-8db9-4efe63064d86] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1074
+ [ActiveJob] [Dallal::DallalJob] [71674b9a-e2d7-4d47-8db9-4efe63064d86]
1075
+ Dallal::Mailer#notify: processed outbound mail in 5.0ms
1076
+ [ActiveJob] [Dallal::DallalJob] [71674b9a-e2d7-4d47-8db9-4efe63064d86]
1077
+ Sent mail to laertis.pappas@gmail.com (6.1ms)
1078
+ [ActiveJob] [Dallal::DallalJob] [71674b9a-e2d7-4d47-8db9-4efe63064d86] Date: Thu, 04 Aug 2016 21:07:35 +0300
1079
+ From: just a name <foo@bar.xyz>
1080
+ Reply-To: just a name <foo@bar.xyz>
1081
+ To: laertis.pappas@gmail.com
1082
+ Message-ID: <57a3846738a09_4aa33f7ed498398c1129@lapis-localhost.mail>
1083
+ Subject: <html> <body> A subject </body> </html>
1084
+ Mime-Version: 1.0
1085
+ Content-Type: text/html;
1086
+ charset=UTF-8
1087
+ Content-Transfer-Encoding: 7bit
1088
+
1089
+ <html>
1090
+ <body>
1091
+ <h1>Register email</h1>
1092
+ This is a test data template fixture
1093
+
1094
+ #&lt;User:0x007efdac7b8260&gt;
1095
+
1096
+
1097
+ </body>
1098
+ </html>
1099
+
1100
+ [ActiveJob] [Dallal::DallalJob] [71674b9a-e2d7-4d47-8db9-4efe63064d86] Performed Dallal::DallalJob from Inline(default) in 14.53ms
1101
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 71674b9a-e2d7-4d47-8db9-4efe63064d86) to Inline(default) with arguments: "Post", 8, "create"
1102
+  (212.3ms) commit transaction
1103
+  (0.2ms) begin transaction
1104
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:35.453211"], ["updated_at", "2016-08-04 18:07:35.453211"]]
1105
+ [ActiveJob] [Dallal::DallalJob] [cf2f2ac2-29e1-4778-858a-f3d984bb94a4] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 17, "create"
1106
+ [ActiveJob] [Dallal::DallalJob] [cf2f2ac2-29e1-4778-858a-f3d984bb94a4] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
1107
+ [ActiveJob] [Dallal::DallalJob] [cf2f2ac2-29e1-4778-858a-f3d984bb94a4] Performed Dallal::DallalJob from Inline(default) in 1.33ms
1108
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: cf2f2ac2-29e1-4778-858a-f3d984bb94a4) to Inline(default) with arguments: "User", 17, "create"
1109
+  (178.1ms) commit transaction
1110
+  (0.2ms) begin transaction
1111
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 17], ["created_at", "2016-08-04 18:07:35.640173"], ["updated_at", "2016-08-04 18:07:35.640173"]]
1112
+ [ActiveJob] [Dallal::DallalJob] [041d63f6-611b-448f-a22a-775bc82bcf5f] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 9, "create"
1113
+ [ActiveJob] [Dallal::DallalJob] [041d63f6-611b-448f-a22a-775bc82bcf5f] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]]
1114
+ [ActiveJob] [Dallal::DallalJob] [041d63f6-611b-448f-a22a-775bc82bcf5f] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
1115
+ [ActiveJob] [Dallal::DallalJob] [041d63f6-611b-448f-a22a-775bc82bcf5f] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1116
+ [ActiveJob] [Dallal::DallalJob] [041d63f6-611b-448f-a22a-775bc82bcf5f] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1117
+ [ActiveJob] [Dallal::DallalJob] [041d63f6-611b-448f-a22a-775bc82bcf5f]
1118
+ Dallal::Mailer#notify: processed outbound mail in 5.0ms
1119
+ [ActiveJob] [Dallal::DallalJob] [041d63f6-611b-448f-a22a-775bc82bcf5f]
1120
+ Sent mail to laertis.pappas@gmail.com (5.7ms)
1121
+ [ActiveJob] [Dallal::DallalJob] [041d63f6-611b-448f-a22a-775bc82bcf5f] Date: Thu, 04 Aug 2016 21:07:35 +0300
1122
+ From: just a name <foo@bar.xyz>
1123
+ Reply-To: just a name <foo@bar.xyz>
1124
+ To: laertis.pappas@gmail.com
1125
+ Message-ID: <57a384679fcdd_4aa33f7ed498398c128f@lapis-localhost.mail>
1126
+ Subject: <html> <body> A subject </body> </html>
1127
+ Mime-Version: 1.0
1128
+ Content-Type: text/html;
1129
+ charset=UTF-8
1130
+ Content-Transfer-Encoding: 7bit
1131
+
1132
+ <html>
1133
+ <body>
1134
+ <h1>Register email</h1>
1135
+ This is a test data template fixture
1136
+
1137
+ #&lt;User:0x007efdac670650&gt;
1138
+
1139
+
1140
+ </body>
1141
+ </html>
1142
+
1143
+ [ActiveJob] [Dallal::DallalJob] [041d63f6-611b-448f-a22a-775bc82bcf5f] Performed Dallal::DallalJob from Inline(default) in 13.98ms
1144
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 041d63f6-611b-448f-a22a-775bc82bcf5f) to Inline(default) with arguments: "Post", 9, "create"
1145
+  (135.0ms) commit transaction
1146
+  (0.2ms) begin transaction
1147
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:35.797738"], ["updated_at", "2016-08-04 18:07:35.797738"]]
1148
+ [ActiveJob] [Dallal::DallalJob] [846e7448-a256-4f5c-812d-f6b23fc3677c] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 18, "create"
1149
+ [ActiveJob] [Dallal::DallalJob] [846e7448-a256-4f5c-812d-f6b23fc3677c] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 18]]
1150
+ [ActiveJob] [Dallal::DallalJob] [846e7448-a256-4f5c-812d-f6b23fc3677c] Performed Dallal::DallalJob from Inline(default) in 1.37ms
1151
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 846e7448-a256-4f5c-812d-f6b23fc3677c) to Inline(default) with arguments: "User", 18, "create"
1152
+  (167.5ms) commit transaction
1153
+  (0.2ms) begin transaction
1154
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 18], ["created_at", "2016-08-04 18:07:35.974402"], ["updated_at", "2016-08-04 18:07:35.974402"]]
1155
+ [ActiveJob] [Dallal::DallalJob] [704e5582-3469-4f9c-88d4-e491f7df3854] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 10, "create"
1156
+ [ActiveJob] [Dallal::DallalJob] [704e5582-3469-4f9c-88d4-e491f7df3854] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]]
1157
+ [ActiveJob] [Dallal::DallalJob] [704e5582-3469-4f9c-88d4-e491f7df3854] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 18]]
1158
+ [ActiveJob] [Dallal::DallalJob] [704e5582-3469-4f9c-88d4-e491f7df3854] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1159
+ [ActiveJob] [Dallal::DallalJob] [704e5582-3469-4f9c-88d4-e491f7df3854] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
1160
+ [ActiveJob] [Dallal::DallalJob] [704e5582-3469-4f9c-88d4-e491f7df3854]
1161
+ Dallal::Mailer#notify: processed outbound mail in 5.5ms
1162
+ [ActiveJob] [Dallal::DallalJob] [704e5582-3469-4f9c-88d4-e491f7df3854]
1163
+ Sent mail to laertis.pappas@gmail.com (6.2ms)
1164
+ [ActiveJob] [Dallal::DallalJob] [704e5582-3469-4f9c-88d4-e491f7df3854] Date: Thu, 04 Aug 2016 21:07:35 +0300
1165
+ From: just a name <foo@bar.xyz>
1166
+ Reply-To: just a name <foo@bar.xyz>
1167
+ To: laertis.pappas@gmail.com
1168
+ Message-ID: <57a38467f1c55_4aa33f7ed498398c13fe@lapis-localhost.mail>
1169
+ Subject: <html> <body> A subject </body> </html>
1170
+ Mime-Version: 1.0
1171
+ Content-Type: text/html;
1172
+ charset=UTF-8
1173
+ Content-Transfer-Encoding: 7bit
1174
+
1175
+ <html>
1176
+ <body>
1177
+ <h1>Register email</h1>
1178
+ This is a test data template fixture
1179
+
1180
+ #&lt;User:0x007efdac50c278&gt;
1181
+
1182
+
1183
+ </body>
1184
+ </html>
1185
+
1186
+ [ActiveJob] [Dallal::DallalJob] [704e5582-3469-4f9c-88d4-e491f7df3854] Performed Dallal::DallalJob from Inline(default) in 15.41ms
1187
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 704e5582-3469-4f9c-88d4-e491f7df3854) to Inline(default) with arguments: "Post", 10, "create"
1188
+  (133.1ms) commit transaction
1189
+  (0.3ms) begin transaction
1190
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:36.130012"], ["updated_at", "2016-08-04 18:07:36.130012"]]
1191
+ [ActiveJob] [Dallal::DallalJob] [b92031f6-baa4-4268-a045-7bc0234e06b9] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 19, "create"
1192
+ [ActiveJob] [Dallal::DallalJob] [b92031f6-baa4-4268-a045-7bc0234e06b9] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 19]]
1193
+ [ActiveJob] [Dallal::DallalJob] [b92031f6-baa4-4268-a045-7bc0234e06b9] Performed Dallal::DallalJob from Inline(default) in 1.18ms
1194
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: b92031f6-baa4-4268-a045-7bc0234e06b9) to Inline(default) with arguments: "User", 19, "create"
1195
+  (148.3ms) commit transaction
1196
+  (0.2ms) begin transaction
1197
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 19], ["created_at", "2016-08-04 18:07:36.286294"], ["updated_at", "2016-08-04 18:07:36.286294"]]
1198
+ [ActiveJob] [Dallal::DallalJob] [b81a5beb-cfc3-4970-acf8-1fff72fc70a7] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 11, "create"
1199
+ [ActiveJob] [Dallal::DallalJob] [b81a5beb-cfc3-4970-acf8-1fff72fc70a7] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]]
1200
+ [ActiveJob] [Dallal::DallalJob] [b81a5beb-cfc3-4970-acf8-1fff72fc70a7] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 19]]
1201
+ [ActiveJob] [Dallal::DallalJob] [b81a5beb-cfc3-4970-acf8-1fff72fc70a7] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1202
+ [ActiveJob] [Dallal::DallalJob] [b81a5beb-cfc3-4970-acf8-1fff72fc70a7] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
1203
+ [ActiveJob] [Dallal::DallalJob] [b81a5beb-cfc3-4970-acf8-1fff72fc70a7]
1204
+ Dallal::Mailer#notify: processed outbound mail in 5.4ms
1205
+ [ActiveJob] [Dallal::DallalJob] [b81a5beb-cfc3-4970-acf8-1fff72fc70a7]
1206
+ Sent mail to laertis.pappas@gmail.com (6.1ms)
1207
+ [ActiveJob] [Dallal::DallalJob] [b81a5beb-cfc3-4970-acf8-1fff72fc70a7] Date: Thu, 04 Aug 2016 21:07:36 +0300
1208
+ From: just a name <foo@bar.xyz>
1209
+ Reply-To: just a name <foo@bar.xyz>
1210
+ To: laertis.pappas@gmail.com
1211
+ Message-ID: <57a3846849af1_4aa33f7ed498398c1478@lapis-localhost.mail>
1212
+ Subject: <html> <body> A subject </body> </html>
1213
+ Mime-Version: 1.0
1214
+ Content-Type: text/html;
1215
+ charset=UTF-8
1216
+ Content-Transfer-Encoding: 7bit
1217
+
1218
+ <html>
1219
+ <body>
1220
+ <h1>Register email</h1>
1221
+ This is a test data template fixture
1222
+
1223
+ #&lt;User:0x007efdac3d6318&gt;
1224
+
1225
+
1226
+ </body>
1227
+ </html>
1228
+
1229
+ [ActiveJob] [Dallal::DallalJob] [b81a5beb-cfc3-4970-acf8-1fff72fc70a7] Performed Dallal::DallalJob from Inline(default) in 15.03ms
1230
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: b81a5beb-cfc3-4970-acf8-1fff72fc70a7) to Inline(default) with arguments: "Post", 11, "create"
1231
+  (144.9ms) commit transaction
1232
+  (0.2ms) begin transaction
1233
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:36.454661"], ["updated_at", "2016-08-04 18:07:36.454661"]]
1234
+ [ActiveJob] [Dallal::DallalJob] [c3ee76a4-cda3-4dd4-bd97-078468fafd75] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 20, "create"
1235
+ [ActiveJob] [Dallal::DallalJob] [c3ee76a4-cda3-4dd4-bd97-078468fafd75] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
1236
+ [ActiveJob] [Dallal::DallalJob] [c3ee76a4-cda3-4dd4-bd97-078468fafd75] Performed Dallal::DallalJob from Inline(default) in 1.27ms
1237
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: c3ee76a4-cda3-4dd4-bd97-078468fafd75) to Inline(default) with arguments: "User", 20, "create"
1238
+  (157.4ms) commit transaction
1239
+  (0.2ms) begin transaction
1240
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 20], ["created_at", "2016-08-04 18:07:36.621003"], ["updated_at", "2016-08-04 18:07:36.621003"]]
1241
+ [ActiveJob] [Dallal::DallalJob] [2b430989-bdb9-4516-9863-b30837a74d7d] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 12, "create"
1242
+ [ActiveJob] [Dallal::DallalJob] [2b430989-bdb9-4516-9863-b30837a74d7d] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]]
1243
+ [ActiveJob] [Dallal::DallalJob] [2b430989-bdb9-4516-9863-b30837a74d7d] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 20]]
1244
+ [ActiveJob] [Dallal::DallalJob] [2b430989-bdb9-4516-9863-b30837a74d7d] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1245
+ [ActiveJob] [Dallal::DallalJob] [2b430989-bdb9-4516-9863-b30837a74d7d] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
1246
+ [ActiveJob] [Dallal::DallalJob] [2b430989-bdb9-4516-9863-b30837a74d7d]
1247
+ Dallal::Mailer#notify: processed outbound mail in 5.0ms
1248
+ [ActiveJob] [Dallal::DallalJob] [2b430989-bdb9-4516-9863-b30837a74d7d]
1249
+ Sent mail to laertis.pappas@gmail.com (5.8ms)
1250
+ [ActiveJob] [Dallal::DallalJob] [2b430989-bdb9-4516-9863-b30837a74d7d] Date: Thu, 04 Aug 2016 21:07:36 +0300
1251
+ From: just a name <foo@bar.xyz>
1252
+ Reply-To: just a name <foo@bar.xyz>
1253
+ To: laertis.pappas@gmail.com
1254
+ Message-ID: <57a384689b2e8_4aa33f7ed498398c15de@lapis-localhost.mail>
1255
+ Subject: <html> <body> A subject </body> </html>
1256
+ Mime-Version: 1.0
1257
+ Content-Type: text/html;
1258
+ charset=UTF-8
1259
+ Content-Transfer-Encoding: 7bit
1260
+
1261
+ <html>
1262
+ <body>
1263
+ <h1>Register email</h1>
1264
+ This is a test data template fixture
1265
+
1266
+ #&lt;User:0x007efdac2a1308&gt;
1267
+
1268
+
1269
+ </body>
1270
+ </html>
1271
+
1272
+ [ActiveJob] [Dallal::DallalJob] [2b430989-bdb9-4516-9863-b30837a74d7d] Performed Dallal::DallalJob from Inline(default) in 14.11ms
1273
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 2b430989-bdb9-4516-9863-b30837a74d7d) to Inline(default) with arguments: "Post", 12, "create"
1274
+  (522.9ms) commit transaction
1275
+  (0.2ms) begin transaction
1276
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:37.165546"], ["updated_at", "2016-08-04 18:07:37.165546"]]
1277
+ [ActiveJob] [Dallal::DallalJob] [0530bccd-dcb6-4768-99a1-f4a901a15a7d] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 21, "create"
1278
+ [ActiveJob] [Dallal::DallalJob] [0530bccd-dcb6-4768-99a1-f4a901a15a7d] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 21]]
1279
+ [ActiveJob] [Dallal::DallalJob] [0530bccd-dcb6-4768-99a1-f4a901a15a7d] Performed Dallal::DallalJob from Inline(default) in 0.93ms
1280
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 0530bccd-dcb6-4768-99a1-f4a901a15a7d) to Inline(default) with arguments: "User", 21, "create"
1281
+  (159.6ms) commit transaction
1282
+  (0.2ms) begin transaction
1283
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 21], ["created_at", "2016-08-04 18:07:37.332744"], ["updated_at", "2016-08-04 18:07:37.332744"]]
1284
+ [ActiveJob] [Dallal::DallalJob] [dc500420-9fac-4a51-9805-7932efc77c2b] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 13, "create"
1285
+ [ActiveJob] [Dallal::DallalJob] [dc500420-9fac-4a51-9805-7932efc77c2b] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]]
1286
+ [ActiveJob] [Dallal::DallalJob] [dc500420-9fac-4a51-9805-7932efc77c2b] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 21]]
1287
+ [ActiveJob] [Dallal::DallalJob] [dc500420-9fac-4a51-9805-7932efc77c2b] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1288
+ [ActiveJob] [Dallal::DallalJob] [dc500420-9fac-4a51-9805-7932efc77c2b] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1289
+ [ActiveJob] [Dallal::DallalJob] [dc500420-9fac-4a51-9805-7932efc77c2b]
1290
+ Dallal::Mailer#notify: processed outbound mail in 5.3ms
1291
+ [ActiveJob] [Dallal::DallalJob] [dc500420-9fac-4a51-9805-7932efc77c2b]
1292
+ Sent mail to laertis.pappas@gmail.com (6.3ms)
1293
+ [ActiveJob] [Dallal::DallalJob] [dc500420-9fac-4a51-9805-7932efc77c2b] Date: Thu, 04 Aug 2016 21:07:37 +0300
1294
+ From: just a name <foo@bar.xyz>
1295
+ Reply-To: just a name <foo@bar.xyz>
1296
+ To: laertis.pappas@gmail.com
1297
+ Message-ID: <57a3846955220_4aa33f7ed498398c16d5@lapis-localhost.mail>
1298
+ Subject: <html> <body> A subject </body> </html>
1299
+ Mime-Version: 1.0
1300
+ Content-Type: text/html;
1301
+ charset=UTF-8
1302
+ Content-Transfer-Encoding: 7bit
1303
+
1304
+ <html>
1305
+ <body>
1306
+ <h1>Register email</h1>
1307
+ This is a test data template fixture
1308
+
1309
+ #&lt;User:0x007efdac173878&gt;
1310
+
1311
+
1312
+ </body>
1313
+ </html>
1314
+
1315
+ [ActiveJob] [Dallal::DallalJob] [dc500420-9fac-4a51-9805-7932efc77c2b] Performed Dallal::DallalJob from Inline(default) in 15.48ms
1316
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: dc500420-9fac-4a51-9805-7932efc77c2b) to Inline(default) with arguments: "Post", 13, "create"
1317
+  (155.1ms) commit transaction
1318
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1319
+  (148.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1320
+  (0.2ms) select sqlite_version(*)
1321
+  (167.9ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
1322
+  (165.2ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1323
+  (165.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1324
+  (165.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1325
+  (165.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1326
+  (0.3ms) SELECT version FROM "schema_migrations"
1327
+  (132.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
1328
+  (133.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
1329
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1330
+  (0.1ms) begin transaction
1331
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:43.481259"], ["updated_at", "2016-08-04 18:07:43.481259"]]
1332
+ [ActiveJob] [Dallal::DallalJob] [684e61f6-9cb7-4390-bf06-42765cb3795d] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 12, "create"
1333
+ [ActiveJob] [Dallal::DallalJob] [684e61f6-9cb7-4390-bf06-42765cb3795d] Performed Dallal::DallalJob from Inline(default) in 3.31ms
1334
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 684e61f6-9cb7-4390-bf06-42765cb3795d) to Inline(default) with arguments: "User", 12, "create"
1335
+  (129.0ms) commit transaction
1336
+  (0.1ms) begin transaction
1337
+  (0.0ms) commit transaction
1338
+  (0.2ms) begin transaction
1339
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:43.623555"], ["updated_at", "2016-08-04 18:07:43.623555"]]
1340
+  (125.8ms) commit transaction
1341
+ [ActiveJob] [Dallal::DallalJob] [59727534-ca60-40cb-8a9b-29e99fc59bd1] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
1342
+ [ActiveJob] [Dallal::DallalJob] [59727534-ca60-40cb-8a9b-29e99fc59bd1] Performed Dallal::DallalJob from Inline(default) in 2.05ms
1343
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 59727534-ca60-40cb-8a9b-29e99fc59bd1) to Inline(default) with arguments: "User", 1, "create"
1344
+  (0.1ms) begin transaction
1345
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:43.794589"], ["updated_at", "2016-08-04 18:07:43.794589"]]
1346
+  (134.4ms) commit transaction
1347
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
1348
+  (0.1ms) begin transaction
1349
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:43.946483"], ["updated_at", "2016-08-04 18:07:43.946483"]]
1350
+  (135.9ms) commit transaction
1351
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
1352
+  (0.2ms) begin transaction
1353
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:44.104442"], ["updated_at", "2016-08-04 18:07:44.104442"]]
1354
+  (135.9ms) commit transaction
1355
+  (0.2ms) begin transaction
1356
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:44.246922"], ["updated_at", "2016-08-04 18:07:44.246922"]]
1357
+  (127.5ms) commit transaction
1358
+  (0.1ms) begin transaction
1359
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:44.381623"], ["updated_at", "2016-08-04 18:07:44.381623"]]
1360
+  (127.2ms) commit transaction
1361
+  (0.1ms) begin transaction
1362
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 7], ["created_at", "2016-08-04 18:07:44.529135"], ["updated_at", "2016-08-04 18:07:44.529135"]]
1363
+  (146.4ms) commit transaction
1364
+  (0.1ms) begin transaction
1365
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:44.680495"], ["updated_at", "2016-08-04 18:07:44.680495"]]
1366
+  (141.8ms) commit transaction
1367
+  (0.2ms) begin transaction
1368
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 8], ["created_at", "2016-08-04 18:07:44.827924"], ["updated_at", "2016-08-04 18:07:44.827924"]]
1369
+  (138.9ms) commit transaction
1370
+  (0.2ms) begin transaction
1371
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:44.974511"], ["updated_at", "2016-08-04 18:07:44.974511"]]
1372
+  (159.1ms) commit transaction
1373
+  (0.2ms) begin transaction
1374
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 9], ["created_at", "2016-08-04 18:07:45.139619"], ["updated_at", "2016-08-04 18:07:45.139619"]]
1375
+  (128.5ms) commit transaction
1376
+  (0.2ms) begin transaction
1377
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:45.276996"], ["updated_at", "2016-08-04 18:07:45.276996"]]
1378
+  (135.5ms) commit transaction
1379
+  (0.2ms) begin transaction
1380
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 10], ["created_at", "2016-08-04 18:07:45.419036"], ["updated_at", "2016-08-04 18:07:45.419036"]]
1381
+  (127.7ms) commit transaction
1382
+  (0.2ms) begin transaction
1383
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:45.553684"], ["updated_at", "2016-08-04 18:07:45.553684"]]
1384
+  (160.0ms) commit transaction
1385
+  (0.2ms) begin transaction
1386
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 11], ["created_at", "2016-08-04 18:07:45.719609"], ["updated_at", "2016-08-04 18:07:45.719609"]]
1387
+  (127.8ms) commit transaction
1388
+  (0.2ms) begin transaction
1389
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:45.857563"], ["updated_at", "2016-08-04 18:07:45.857563"]]
1390
+  (134.7ms) commit transaction
1391
+  (0.4ms) begin transaction
1392
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 12], ["created_at", "2016-08-04 18:07:45.998582"], ["updated_at", "2016-08-04 18:07:45.998582"]]
1393
+  (127.6ms) commit transaction
1394
+  (0.2ms) begin transaction
1395
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:46.131462"], ["updated_at", "2016-08-04 18:07:46.131462"]]
1396
+  (139.7ms) commit transaction
1397
+  (0.2ms) begin transaction
1398
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 13], ["created_at", "2016-08-04 18:07:46.276623"], ["updated_at", "2016-08-04 18:07:46.276623"]]
1399
+  (128.7ms) commit transaction
1400
+  (0.3ms) begin transaction
1401
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:46.412471"], ["updated_at", "2016-08-04 18:07:46.412471"]]
1402
+  (137.8ms) commit transaction
1403
+  (0.2ms) begin transaction
1404
+ SQL (0.7ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 14], ["created_at", "2016-08-04 18:07:46.556232"], ["updated_at", "2016-08-04 18:07:46.556232"]]
1405
+  (138.3ms) commit transaction
1406
+  (0.2ms) begin transaction
1407
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:46.702357"], ["updated_at", "2016-08-04 18:07:46.702357"]]
1408
+  (159.8ms) commit transaction
1409
+  (0.3ms) begin transaction
1410
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 15], ["created_at", "2016-08-04 18:07:46.867957"], ["updated_at", "2016-08-04 18:07:46.867957"]]
1411
+  (163.1ms) commit transaction
1412
+  (0.3ms) begin transaction
1413
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:47.038819"], ["updated_at", "2016-08-04 18:07:47.038819"]]
1414
+  (148.2ms) commit transaction
1415
+  (0.2ms) begin transaction
1416
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 16], ["created_at", "2016-08-04 18:07:47.193258"], ["updated_at", "2016-08-04 18:07:47.193258"]]
1417
+  (138.5ms) commit transaction
1418
+  (0.2ms) begin transaction
1419
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:47.339684"], ["updated_at", "2016-08-04 18:07:47.339684"]]
1420
+  (125.9ms) commit transaction
1421
+  (0.2ms) begin transaction
1422
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 17], ["created_at", "2016-08-04 18:07:47.471682"], ["updated_at", "2016-08-04 18:07:47.471682"]]
1423
+  (128.0ms) commit transaction
1424
+  (0.2ms) begin transaction
1425
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:47.607368"], ["updated_at", "2016-08-04 18:07:47.607368"]]
1426
+  (126.0ms) commit transaction
1427
+  (0.2ms) begin transaction
1428
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 18], ["created_at", "2016-08-04 18:07:47.739436"], ["updated_at", "2016-08-04 18:07:47.739436"]]
1429
+  (128.0ms) commit transaction
1430
+  (0.2ms) begin transaction
1431
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:47.874858"], ["updated_at", "2016-08-04 18:07:47.874858"]]
1432
+  (126.2ms) commit transaction
1433
+  (0.2ms) begin transaction
1434
+ SQL (0.6ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 19], ["created_at", "2016-08-04 18:07:48.007627"], ["updated_at", "2016-08-04 18:07:48.007627"]]
1435
+  (138.7ms) commit transaction
1436
+  (0.2ms) begin transaction
1437
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:48.158494"], ["updated_at", "2016-08-04 18:07:48.158494"]]
1438
+  (133.0ms) commit transaction
1439
+  (0.1ms) begin transaction
1440
+  (0.1ms) commit transaction
1441
+  (0.1ms) begin transaction
1442
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:07:48.302096"], ["updated_at", "2016-08-04 18:07:48.302096"]]
1443
+  (178.1ms) commit transaction
1444
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1445
+  (145.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1446
+  (0.3ms) select sqlite_version(*)
1447
+  (167.8ms) CREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")
1448
+  (176.5ms) CREATE TABLE "dallal_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1449
+  (176.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "username" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1450
+  (377.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1451
+  (698.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1452
+  (0.5ms) SELECT version FROM "schema_migrations"
1453
+  (143.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20160803174036')
1454
+  (144.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20160801191053')
1455
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1456
+  (0.1ms) begin transaction
1457
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:14.118799"], ["updated_at", "2016-08-04 18:17:14.118799"]]
1458
+ [ActiveJob] [Dallal::DallalJob] [0e29272f-9194-42e5-9bd7-f8b6f5c8a432] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
1459
+ [ActiveJob] [Dallal::DallalJob] [0e29272f-9194-42e5-9bd7-f8b6f5c8a432] Performed Dallal::DallalJob from Inline(default) in 3.86ms
1460
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 0e29272f-9194-42e5-9bd7-f8b6f5c8a432) to Inline(default) with arguments: "User", 1, "create"
1461
+  (161.2ms) commit transaction
1462
+  (0.2ms) begin transaction
1463
+ [ActiveJob] [Dallal::DallalJob] [685c529e-8468-454a-93ca-d9716355e7eb] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "update"
1464
+ [ActiveJob] [Dallal::DallalJob] [685c529e-8468-454a-93ca-d9716355e7eb] Performed Dallal::DallalJob from Inline(default) in 0.27ms
1465
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 685c529e-8468-454a-93ca-d9716355e7eb) to Inline(default) with arguments: "User", 1, "update"
1466
+  (0.1ms) commit transaction
1467
+  (0.2ms) begin transaction
1468
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:14.300007"], ["updated_at", "2016-08-04 18:17:14.300007"]]
1469
+ [ActiveJob] [Dallal::DallalJob] [81e5733e-317f-4d10-9784-7e05540e5365] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
1470
+ [ActiveJob] [Dallal::DallalJob] [81e5733e-317f-4d10-9784-7e05540e5365] Performed Dallal::DallalJob from Inline(default) in 0.25ms
1471
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 81e5733e-317f-4d10-9784-7e05540e5365) to Inline(default) with arguments: "User", 1, "create"
1472
+  (152.3ms) commit transaction
1473
+  (0.3ms) begin transaction
1474
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:14.462406"], ["updated_at", "2016-08-04 18:17:14.462406"]]
1475
+ [ActiveJob] [Dallal::DallalJob] [6eb33688-79a6-4880-a759-a606e7b042b9] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 3, "create"
1476
+ [ActiveJob] [Dallal::DallalJob] [6eb33688-79a6-4880-a759-a606e7b042b9] Performed Dallal::DallalJob from Inline(default) in 0.3ms
1477
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 6eb33688-79a6-4880-a759-a606e7b042b9) to Inline(default) with arguments: "User", 3, "create"
1478
+  (156.8ms) commit transaction
1479
+  (0.2ms) begin transaction
1480
+ SQL (0.6ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 3], ["created_at", "2016-08-04 18:17:14.649919"], ["updated_at", "2016-08-04 18:17:14.649919"]]
1481
+ [ActiveJob] [Dallal::DallalJob] [121e6cd4-33cb-44df-98a4-89cfa695b790] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 1, "create"
1482
+ [ActiveJob] [Dallal::DallalJob] [121e6cd4-33cb-44df-98a4-89cfa695b790] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]]
1483
+ [ActiveJob] [Dallal::DallalJob] [121e6cd4-33cb-44df-98a4-89cfa695b790] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]]
1484
+ [ActiveJob] [Dallal::DallalJob] [121e6cd4-33cb-44df-98a4-89cfa695b790] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.8ms)
1485
+ [ActiveJob] [Dallal::DallalJob] [121e6cd4-33cb-44df-98a4-89cfa695b790] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.3ms)
1486
+ [ActiveJob] [Dallal::DallalJob] [121e6cd4-33cb-44df-98a4-89cfa695b790]
1487
+ Dallal::Mailer#notify: processed outbound mail in 189.3ms
1488
+ [ActiveJob] [Dallal::DallalJob] [121e6cd4-33cb-44df-98a4-89cfa695b790]
1489
+ Sent mail to laertis.pappas@gmail.com (3.9ms)
1490
+ [ActiveJob] [Dallal::DallalJob] [121e6cd4-33cb-44df-98a4-89cfa695b790] Date: Thu, 04 Aug 2016 21:17:14 +0300
1491
+ From: just a name <foo@bar.xyz>
1492
+ Reply-To: just a name <foo@bar.xyz>
1493
+ To: laertis.pappas@gmail.com
1494
+ Message-ID: <57a386aad5e9a_59263fdcfb94d98821611@lapis-localhost.mail>
1495
+ Subject: <html> <body> A subject </body> </html>
1496
+ Mime-Version: 1.0
1497
+ Content-Type: text/html;
1498
+ charset=UTF-8
1499
+ Content-Transfer-Encoding: 7bit
1500
+
1501
+ <html>
1502
+ <body>
1503
+ <h1>Register email</h1>
1504
+ This is a test data template fixture
1505
+
1506
+ #&lt;User:0x007fb9fac76210&gt;
1507
+
1508
+
1509
+ </body>
1510
+ </html>
1511
+
1512
+ [ActiveJob] [Dallal::DallalJob] [121e6cd4-33cb-44df-98a4-89cfa695b790] Performed Dallal::DallalJob from Inline(default) in 224.86ms
1513
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 121e6cd4-33cb-44df-98a4-89cfa695b790) to Inline(default) with arguments: "Post", 1, "create"
1514
+  (168.2ms) commit transaction
1515
+  (0.2ms) begin transaction
1516
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:15.051330"], ["updated_at", "2016-08-04 18:17:15.051330"]]
1517
+ [ActiveJob] [Dallal::DallalJob] [5f9920b7-d74a-4216-be92-42345c803f56] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 4, "create"
1518
+ [ActiveJob] [Dallal::DallalJob] [5f9920b7-d74a-4216-be92-42345c803f56] Performed Dallal::DallalJob from Inline(default) in 0.3ms
1519
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 5f9920b7-d74a-4216-be92-42345c803f56) to Inline(default) with arguments: "User", 4, "create"
1520
+  (179.6ms) commit transaction
1521
+  (0.2ms) begin transaction
1522
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 4], ["created_at", "2016-08-04 18:17:15.239373"], ["updated_at", "2016-08-04 18:17:15.239373"]]
1523
+ [ActiveJob] [Dallal::DallalJob] [4c4eb732-5488-44f5-8c02-86fc6c029769] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 2, "create"
1524
+ [ActiveJob] [Dallal::DallalJob] [4c4eb732-5488-44f5-8c02-86fc6c029769] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]]
1525
+ [ActiveJob] [Dallal::DallalJob] [4c4eb732-5488-44f5-8c02-86fc6c029769] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]]
1526
+ [ActiveJob] [Dallal::DallalJob] [4c4eb732-5488-44f5-8c02-86fc6c029769] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1527
+ [ActiveJob] [Dallal::DallalJob] [4c4eb732-5488-44f5-8c02-86fc6c029769] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1528
+ [ActiveJob] [Dallal::DallalJob] [4c4eb732-5488-44f5-8c02-86fc6c029769]
1529
+ Dallal::Mailer#notify: processed outbound mail in 5.0ms
1530
+ [ActiveJob] [Dallal::DallalJob] [4c4eb732-5488-44f5-8c02-86fc6c029769]
1531
+ Sent mail to laertis.pappas@gmail.com (5.7ms)
1532
+ [ActiveJob] [Dallal::DallalJob] [4c4eb732-5488-44f5-8c02-86fc6c029769] Date: Thu, 04 Aug 2016 21:17:15 +0300
1533
+ From: just a name <foo@bar.xyz>
1534
+ Reply-To: just a name <foo@bar.xyz>
1535
+ To: laertis.pappas@gmail.com
1536
+ Message-ID: <57a386ab3e044_59263fdcfb94d988217f@lapis-localhost.mail>
1537
+ Subject: <html> <body> A subject </body> </html>
1538
+ Mime-Version: 1.0
1539
+ Content-Type: text/html;
1540
+ charset=UTF-8
1541
+ Content-Transfer-Encoding: 7bit
1542
+
1543
+ <html>
1544
+ <body>
1545
+ <h1>Register email</h1>
1546
+ This is a test data template fixture
1547
+
1548
+ #&lt;User:0x007fb9fbb44238&gt;
1549
+
1550
+
1551
+ </body>
1552
+ </html>
1553
+
1554
+ [ActiveJob] [Dallal::DallalJob] [4c4eb732-5488-44f5-8c02-86fc6c029769] Performed Dallal::DallalJob from Inline(default) in 14.2ms
1555
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 4c4eb732-5488-44f5-8c02-86fc6c029769) to Inline(default) with arguments: "Post", 2, "create"
1556
+  (167.8ms) commit transaction
1557
+  (0.2ms) begin transaction
1558
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:15.430753"], ["updated_at", "2016-08-04 18:17:15.430753"]]
1559
+ [ActiveJob] [Dallal::DallalJob] [d212e6ef-8ead-4594-9e0b-007086e12831] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 5, "create"
1560
+ [ActiveJob] [Dallal::DallalJob] [d212e6ef-8ead-4594-9e0b-007086e12831] Performed Dallal::DallalJob from Inline(default) in 0.27ms
1561
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: d212e6ef-8ead-4594-9e0b-007086e12831) to Inline(default) with arguments: "User", 5, "create"
1562
+  (179.3ms) commit transaction
1563
+  (0.2ms) begin transaction
1564
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 5], ["created_at", "2016-08-04 18:17:15.618059"], ["updated_at", "2016-08-04 18:17:15.618059"]]
1565
+ [ActiveJob] [Dallal::DallalJob] [b658bed8-1483-4225-bc2f-f767f5f098f1] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 3, "create"
1566
+ [ActiveJob] [Dallal::DallalJob] [b658bed8-1483-4225-bc2f-f767f5f098f1] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]]
1567
+ [ActiveJob] [Dallal::DallalJob] [b658bed8-1483-4225-bc2f-f767f5f098f1] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]]
1568
+ [ActiveJob] [Dallal::DallalJob] [b658bed8-1483-4225-bc2f-f767f5f098f1] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1569
+ [ActiveJob] [Dallal::DallalJob] [b658bed8-1483-4225-bc2f-f767f5f098f1] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
1570
+ [ActiveJob] [Dallal::DallalJob] [b658bed8-1483-4225-bc2f-f767f5f098f1]
1571
+ Dallal::Mailer#notify: processed outbound mail in 5.6ms
1572
+ [ActiveJob] [Dallal::DallalJob] [b658bed8-1483-4225-bc2f-f767f5f098f1]
1573
+ Sent mail to laertis.pappas@gmail.com (6.3ms)
1574
+ [ActiveJob] [Dallal::DallalJob] [b658bed8-1483-4225-bc2f-f767f5f098f1] Date: Thu, 04 Aug 2016 21:17:15 +0300
1575
+ From: just a name <foo@bar.xyz>
1576
+ Reply-To: just a name <foo@bar.xyz>
1577
+ To: laertis.pappas@gmail.com
1578
+ Message-ID: <57a386ab9adab_59263fdcfb94d9882183f@lapis-localhost.mail>
1579
+ Subject: <html> <body> A subject </body> </html>
1580
+ Mime-Version: 1.0
1581
+ Content-Type: text/html;
1582
+ charset=UTF-8
1583
+ Content-Transfer-Encoding: 7bit
1584
+
1585
+ <html>
1586
+ <body>
1587
+ <h1>Register email</h1>
1588
+ This is a test data template fixture
1589
+
1590
+ #&lt;User:0x007fb9fade0240&gt;
1591
+
1592
+
1593
+ </body>
1594
+ </html>
1595
+
1596
+ [ActiveJob] [Dallal::DallalJob] [b658bed8-1483-4225-bc2f-f767f5f098f1] Performed Dallal::DallalJob from Inline(default) in 15.64ms
1597
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: b658bed8-1483-4225-bc2f-f767f5f098f1) to Inline(default) with arguments: "Post", 3, "create"
1598
+  (154.4ms) commit transaction
1599
+  (0.2ms) begin transaction
1600
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:15.797194"], ["updated_at", "2016-08-04 18:17:15.797194"]]
1601
+ [ActiveJob] [Dallal::DallalJob] [5af57e3c-ed79-479a-9132-05e295a05a2f] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 6, "create"
1602
+ [ActiveJob] [Dallal::DallalJob] [5af57e3c-ed79-479a-9132-05e295a05a2f] Performed Dallal::DallalJob from Inline(default) in 0.31ms
1603
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 5af57e3c-ed79-479a-9132-05e295a05a2f) to Inline(default) with arguments: "User", 6, "create"
1604
+  (157.9ms) commit transaction
1605
+  (0.2ms) begin transaction
1606
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 6], ["created_at", "2016-08-04 18:17:15.963303"], ["updated_at", "2016-08-04 18:17:15.963303"]]
1607
+ [ActiveJob] [Dallal::DallalJob] [c8a7a39d-d2bc-464e-9295-aa6484a3f941] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 4, "create"
1608
+ [ActiveJob] [Dallal::DallalJob] [c8a7a39d-d2bc-464e-9295-aa6484a3f941] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]]
1609
+ [ActiveJob] [Dallal::DallalJob] [c8a7a39d-d2bc-464e-9295-aa6484a3f941] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 6]]
1610
+ [ActiveJob] [Dallal::DallalJob] [c8a7a39d-d2bc-464e-9295-aa6484a3f941] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1611
+ [ActiveJob] [Dallal::DallalJob] [c8a7a39d-d2bc-464e-9295-aa6484a3f941] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
1612
+ [ActiveJob] [Dallal::DallalJob] [c8a7a39d-d2bc-464e-9295-aa6484a3f941]
1613
+ Dallal::Mailer#notify: processed outbound mail in 5.4ms
1614
+ [ActiveJob] [Dallal::DallalJob] [c8a7a39d-d2bc-464e-9295-aa6484a3f941]
1615
+ Sent mail to laertis.pappas@gmail.com (6.2ms)
1616
+ [ActiveJob] [Dallal::DallalJob] [c8a7a39d-d2bc-464e-9295-aa6484a3f941] Date: Thu, 04 Aug 2016 21:17:15 +0300
1617
+ From: just a name <foo@bar.xyz>
1618
+ Reply-To: just a name <foo@bar.xyz>
1619
+ To: laertis.pappas@gmail.com
1620
+ Message-ID: <57a386abef152_59263fdcfb94d988219c3@lapis-localhost.mail>
1621
+ Subject: <html> <body> A subject </body> </html>
1622
+ Mime-Version: 1.0
1623
+ Content-Type: text/html;
1624
+ charset=UTF-8
1625
+ Content-Transfer-Encoding: 7bit
1626
+
1627
+ <html>
1628
+ <body>
1629
+ <h1>Register email</h1>
1630
+ This is a test data template fixture
1631
+
1632
+ #&lt;User:0x007fb9fab74e20&gt;
1633
+
1634
+
1635
+ </body>
1636
+ </html>
1637
+
1638
+ [ActiveJob] [Dallal::DallalJob] [c8a7a39d-d2bc-464e-9295-aa6484a3f941] Performed Dallal::DallalJob from Inline(default) in 15.37ms
1639
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: c8a7a39d-d2bc-464e-9295-aa6484a3f941) to Inline(default) with arguments: "Post", 4, "create"
1640
+  (132.8ms) commit transaction
1641
+  (0.2ms) begin transaction
1642
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:16.120610"], ["updated_at", "2016-08-04 18:17:16.120610"]]
1643
+ [ActiveJob] [Dallal::DallalJob] [cf243ad0-c1ae-49a2-adcd-5be00e1230a4] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 7, "create"
1644
+ [ActiveJob] [Dallal::DallalJob] [cf243ad0-c1ae-49a2-adcd-5be00e1230a4] Performed Dallal::DallalJob from Inline(default) in 0.29ms
1645
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: cf243ad0-c1ae-49a2-adcd-5be00e1230a4) to Inline(default) with arguments: "User", 7, "create"
1646
+  (146.4ms) commit transaction
1647
+  (0.2ms) begin transaction
1648
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 7], ["created_at", "2016-08-04 18:17:16.274934"], ["updated_at", "2016-08-04 18:17:16.274934"]]
1649
+ [ActiveJob] [Dallal::DallalJob] [2d6c15ee-7839-47d3-b438-2a980f18c40d] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 5, "create"
1650
+ [ActiveJob] [Dallal::DallalJob] [2d6c15ee-7839-47d3-b438-2a980f18c40d] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]]
1651
+ [ActiveJob] [Dallal::DallalJob] [2d6c15ee-7839-47d3-b438-2a980f18c40d] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 7]]
1652
+ [ActiveJob] [Dallal::DallalJob] [2d6c15ee-7839-47d3-b438-2a980f18c40d] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1653
+ [ActiveJob] [Dallal::DallalJob] [2d6c15ee-7839-47d3-b438-2a980f18c40d] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1654
+ [ActiveJob] [Dallal::DallalJob] [2d6c15ee-7839-47d3-b438-2a980f18c40d]
1655
+ Dallal::Mailer#notify: processed outbound mail in 4.9ms
1656
+ [ActiveJob] [Dallal::DallalJob] [2d6c15ee-7839-47d3-b438-2a980f18c40d]
1657
+ Sent mail to laertis.pappas@gmail.com (5.5ms)
1658
+ [ActiveJob] [Dallal::DallalJob] [2d6c15ee-7839-47d3-b438-2a980f18c40d] Date: Thu, 04 Aug 2016 21:17:16 +0300
1659
+ From: just a name <foo@bar.xyz>
1660
+ Reply-To: just a name <foo@bar.xyz>
1661
+ To: laertis.pappas@gmail.com
1662
+ Message-ID: <57a386ac46987_59263fdcfb94d988220d8@lapis-localhost.mail>
1663
+ Subject: <html> <body> A subject </body> </html>
1664
+ Mime-Version: 1.0
1665
+ Content-Type: text/html;
1666
+ charset=UTF-8
1667
+ Content-Transfer-Encoding: 7bit
1668
+
1669
+ <html>
1670
+ <body>
1671
+ <h1>Register email</h1>
1672
+ This is a test data template fixture
1673
+
1674
+ #&lt;User:0x007fb9faabf818&gt;
1675
+
1676
+
1677
+ </body>
1678
+ </html>
1679
+
1680
+ [ActiveJob] [Dallal::DallalJob] [2d6c15ee-7839-47d3-b438-2a980f18c40d] Performed Dallal::DallalJob from Inline(default) in 13.7ms
1681
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 2d6c15ee-7839-47d3-b438-2a980f18c40d) to Inline(default) with arguments: "Post", 5, "create"
1682
+  (135.3ms) commit transaction
1683
+  (0.2ms) begin transaction
1684
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:16.433071"], ["updated_at", "2016-08-04 18:17:16.433071"]]
1685
+ [ActiveJob] [Dallal::DallalJob] [7ad8491d-8084-48f0-bccb-ed970e3b1a90] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 8, "create"
1686
+ [ActiveJob] [Dallal::DallalJob] [7ad8491d-8084-48f0-bccb-ed970e3b1a90] Performed Dallal::DallalJob from Inline(default) in 0.29ms
1687
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 7ad8491d-8084-48f0-bccb-ed970e3b1a90) to Inline(default) with arguments: "User", 8, "create"
1688
+  (145.8ms) commit transaction
1689
+  (0.2ms) begin transaction
1690
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 8], ["created_at", "2016-08-04 18:17:16.586730"], ["updated_at", "2016-08-04 18:17:16.586730"]]
1691
+ [ActiveJob] [Dallal::DallalJob] [3185f494-e8f4-4bc8-bc1a-a55a88db164d] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 6, "create"
1692
+ [ActiveJob] [Dallal::DallalJob] [3185f494-e8f4-4bc8-bc1a-a55a88db164d] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]]
1693
+ [ActiveJob] [Dallal::DallalJob] [3185f494-e8f4-4bc8-bc1a-a55a88db164d] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 8]]
1694
+ [ActiveJob] [Dallal::DallalJob] [3185f494-e8f4-4bc8-bc1a-a55a88db164d] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1695
+ [ActiveJob] [Dallal::DallalJob] [3185f494-e8f4-4bc8-bc1a-a55a88db164d] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1696
+ [ActiveJob] [Dallal::DallalJob] [3185f494-e8f4-4bc8-bc1a-a55a88db164d]
1697
+ Dallal::Mailer#notify: processed outbound mail in 5.4ms
1698
+ [ActiveJob] [Dallal::DallalJob] [3185f494-e8f4-4bc8-bc1a-a55a88db164d]
1699
+ Sent mail to laertis.pappas@gmail.com (6.1ms)
1700
+ [ActiveJob] [Dallal::DallalJob] [3185f494-e8f4-4bc8-bc1a-a55a88db164d] Date: Thu, 04 Aug 2016 21:17:16 +0300
1701
+ From: just a name <foo@bar.xyz>
1702
+ Reply-To: just a name <foo@bar.xyz>
1703
+ To: laertis.pappas@gmail.com
1704
+ Message-ID: <57a386ac9317d_59263fdcfb94d988221b0@lapis-localhost.mail>
1705
+ Subject: <html> <body> A subject </body> </html>
1706
+ Mime-Version: 1.0
1707
+ Content-Type: text/html;
1708
+ charset=UTF-8
1709
+ Content-Transfer-Encoding: 7bit
1710
+
1711
+ <html>
1712
+ <body>
1713
+ <h1>Register email</h1>
1714
+ This is a test data template fixture
1715
+
1716
+ #&lt;User:0x007fb9fa9ba648&gt;
1717
+
1718
+
1719
+ </body>
1720
+ </html>
1721
+
1722
+ [ActiveJob] [Dallal::DallalJob] [3185f494-e8f4-4bc8-bc1a-a55a88db164d] Performed Dallal::DallalJob from Inline(default) in 15.18ms
1723
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 3185f494-e8f4-4bc8-bc1a-a55a88db164d) to Inline(default) with arguments: "Post", 6, "create"
1724
+  (133.6ms) commit transaction
1725
+  (0.2ms) begin transaction
1726
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:16.743769"], ["updated_at", "2016-08-04 18:17:16.743769"]]
1727
+ [ActiveJob] [Dallal::DallalJob] [63eb34f5-a320-44e2-9438-f7ebfdb1edbc] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 9, "create"
1728
+ [ActiveJob] [Dallal::DallalJob] [63eb34f5-a320-44e2-9438-f7ebfdb1edbc] Performed Dallal::DallalJob from Inline(default) in 0.29ms
1729
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 63eb34f5-a320-44e2-9438-f7ebfdb1edbc) to Inline(default) with arguments: "User", 9, "create"
1730
+  (147.5ms) commit transaction
1731
+  (0.2ms) begin transaction
1732
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 9], ["created_at", "2016-08-04 18:17:16.898902"], ["updated_at", "2016-08-04 18:17:16.898902"]]
1733
+ [ActiveJob] [Dallal::DallalJob] [a8c64d79-11fd-4022-a641-efde7cfac230] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 7, "create"
1734
+ [ActiveJob] [Dallal::DallalJob] [a8c64d79-11fd-4022-a641-efde7cfac230] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]]
1735
+ [ActiveJob] [Dallal::DallalJob] [a8c64d79-11fd-4022-a641-efde7cfac230] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 9]]
1736
+ [ActiveJob] [Dallal::DallalJob] [a8c64d79-11fd-4022-a641-efde7cfac230] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1737
+ [ActiveJob] [Dallal::DallalJob] [a8c64d79-11fd-4022-a641-efde7cfac230] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1738
+ [ActiveJob] [Dallal::DallalJob] [a8c64d79-11fd-4022-a641-efde7cfac230]
1739
+ Dallal::Mailer#notify: processed outbound mail in 5.2ms
1740
+ [ActiveJob] [Dallal::DallalJob] [a8c64d79-11fd-4022-a641-efde7cfac230]
1741
+ Sent mail to laertis.pappas@gmail.com (5.6ms)
1742
+ [ActiveJob] [Dallal::DallalJob] [a8c64d79-11fd-4022-a641-efde7cfac230] Date: Thu, 04 Aug 2016 21:17:16 +0300
1743
+ From: just a name <foo@bar.xyz>
1744
+ Reply-To: just a name <foo@bar.xyz>
1745
+ To: laertis.pappas@gmail.com
1746
+ Message-ID: <57a386acdf275_59263fdcfb94d98822265@lapis-localhost.mail>
1747
+ Subject: <html> <body> A subject </body> </html>
1748
+ Mime-Version: 1.0
1749
+ Content-Type: text/html;
1750
+ charset=UTF-8
1751
+ Content-Transfer-Encoding: 7bit
1752
+
1753
+ <html>
1754
+ <body>
1755
+ <h1>Register email</h1>
1756
+ This is a test data template fixture
1757
+
1758
+ #&lt;User:0x007fb9fa8cd9b0&gt;
1759
+
1760
+
1761
+ </body>
1762
+ </html>
1763
+
1764
+ [ActiveJob] [Dallal::DallalJob] [a8c64d79-11fd-4022-a641-efde7cfac230] Performed Dallal::DallalJob from Inline(default) in 14.43ms
1765
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: a8c64d79-11fd-4022-a641-efde7cfac230) to Inline(default) with arguments: "Post", 7, "create"
1766
+  (136.5ms) commit transaction
1767
+  (0.2ms) begin transaction
1768
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:17.058759"], ["updated_at", "2016-08-04 18:17:17.058759"]]
1769
+ [ActiveJob] [Dallal::DallalJob] [62956285-31ba-4048-aa9e-4041e4d9616e] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 10, "create"
1770
+ [ActiveJob] [Dallal::DallalJob] [62956285-31ba-4048-aa9e-4041e4d9616e] Performed Dallal::DallalJob from Inline(default) in 0.28ms
1771
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 62956285-31ba-4048-aa9e-4041e4d9616e) to Inline(default) with arguments: "User", 10, "create"
1772
+  (179.6ms) commit transaction
1773
+  (0.2ms) begin transaction
1774
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 10], ["created_at", "2016-08-04 18:17:17.246067"], ["updated_at", "2016-08-04 18:17:17.246067"]]
1775
+ [ActiveJob] [Dallal::DallalJob] [684e5290-17f9-4813-acf9-33a854eb3108] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 8, "create"
1776
+ [ActiveJob] [Dallal::DallalJob] [684e5290-17f9-4813-acf9-33a854eb3108] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]]
1777
+ [ActiveJob] [Dallal::DallalJob] [684e5290-17f9-4813-acf9-33a854eb3108] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 10]]
1778
+ [ActiveJob] [Dallal::DallalJob] [684e5290-17f9-4813-acf9-33a854eb3108] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1779
+ [ActiveJob] [Dallal::DallalJob] [684e5290-17f9-4813-acf9-33a854eb3108] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
1780
+ [ActiveJob] [Dallal::DallalJob] [684e5290-17f9-4813-acf9-33a854eb3108]
1781
+ Dallal::Mailer#notify: processed outbound mail in 5.5ms
1782
+ [ActiveJob] [Dallal::DallalJob] [684e5290-17f9-4813-acf9-33a854eb3108]
1783
+ Sent mail to laertis.pappas@gmail.com (6.2ms)
1784
+ [ActiveJob] [Dallal::DallalJob] [684e5290-17f9-4813-acf9-33a854eb3108] Date: Thu, 04 Aug 2016 21:17:17 +0300
1785
+ From: just a name <foo@bar.xyz>
1786
+ Reply-To: just a name <foo@bar.xyz>
1787
+ To: laertis.pappas@gmail.com
1788
+ Message-ID: <57a386ad3ff7c_59263fdcfb94d988223fb@lapis-localhost.mail>
1789
+ Subject: <html> <body> A subject </body> </html>
1790
+ Mime-Version: 1.0
1791
+ Content-Type: text/html;
1792
+ charset=UTF-8
1793
+ Content-Transfer-Encoding: 7bit
1794
+
1795
+ <html>
1796
+ <body>
1797
+ <h1>Register email</h1>
1798
+ This is a test data template fixture
1799
+
1800
+ #&lt;User:0x007fb9fa7b3840&gt;
1801
+
1802
+
1803
+ </body>
1804
+ </html>
1805
+
1806
+ [ActiveJob] [Dallal::DallalJob] [684e5290-17f9-4813-acf9-33a854eb3108] Performed Dallal::DallalJob from Inline(default) in 15.41ms
1807
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 684e5290-17f9-4813-acf9-33a854eb3108) to Inline(default) with arguments: "Post", 8, "create"
1808
+  (166.8ms) commit transaction
1809
+  (0.2ms) begin transaction
1810
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:17.435457"], ["updated_at", "2016-08-04 18:17:17.435457"]]
1811
+ [ActiveJob] [Dallal::DallalJob] [c286ee5b-050b-480c-a84b-49e65f0a2dbb] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 11, "create"
1812
+ [ActiveJob] [Dallal::DallalJob] [c286ee5b-050b-480c-a84b-49e65f0a2dbb] Performed Dallal::DallalJob from Inline(default) in 0.3ms
1813
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: c286ee5b-050b-480c-a84b-49e65f0a2dbb) to Inline(default) with arguments: "User", 11, "create"
1814
+  (181.8ms) commit transaction
1815
+  (0.2ms) begin transaction
1816
+ SQL (0.5ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 11], ["created_at", "2016-08-04 18:17:17.624957"], ["updated_at", "2016-08-04 18:17:17.624957"]]
1817
+ [ActiveJob] [Dallal::DallalJob] [eae213a0-9966-45c8-a540-c546ef4f98ae] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 9, "create"
1818
+ [ActiveJob] [Dallal::DallalJob] [eae213a0-9966-45c8-a540-c546ef4f98ae] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]]
1819
+ [ActiveJob] [Dallal::DallalJob] [eae213a0-9966-45c8-a540-c546ef4f98ae] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 11]]
1820
+ [ActiveJob] [Dallal::DallalJob] [eae213a0-9966-45c8-a540-c546ef4f98ae] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1821
+ [ActiveJob] [Dallal::DallalJob] [eae213a0-9966-45c8-a540-c546ef4f98ae] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1822
+ [ActiveJob] [Dallal::DallalJob] [eae213a0-9966-45c8-a540-c546ef4f98ae]
1823
+ Dallal::Mailer#notify: processed outbound mail in 5.4ms
1824
+ [ActiveJob] [Dallal::DallalJob] [eae213a0-9966-45c8-a540-c546ef4f98ae]
1825
+ Sent mail to laertis.pappas@gmail.com (6.1ms)
1826
+ [ActiveJob] [Dallal::DallalJob] [eae213a0-9966-45c8-a540-c546ef4f98ae] Date: Thu, 04 Aug 2016 21:17:17 +0300
1827
+ From: just a name <foo@bar.xyz>
1828
+ Reply-To: just a name <foo@bar.xyz>
1829
+ To: laertis.pappas@gmail.com
1830
+ Message-ID: <57a386ad9c690_59263fdcfb94d9882241a@lapis-localhost.mail>
1831
+ Subject: <html> <body> A subject </body> </html>
1832
+ Mime-Version: 1.0
1833
+ Content-Type: text/html;
1834
+ charset=UTF-8
1835
+ Content-Transfer-Encoding: 7bit
1836
+
1837
+ <html>
1838
+ <body>
1839
+ <h1>Register email</h1>
1840
+ This is a test data template fixture
1841
+
1842
+ #&lt;User:0x007fb9fa6ed230&gt;
1843
+
1844
+
1845
+ </body>
1846
+ </html>
1847
+
1848
+ [ActiveJob] [Dallal::DallalJob] [eae213a0-9966-45c8-a540-c546ef4f98ae] Performed Dallal::DallalJob from Inline(default) in 15.17ms
1849
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: eae213a0-9966-45c8-a540-c546ef4f98ae) to Inline(default) with arguments: "Post", 9, "create"
1850
+  (155.7ms) commit transaction
1851
+  (0.2ms) begin transaction
1852
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:17.804473"], ["updated_at", "2016-08-04 18:17:17.804473"]]
1853
+ [ActiveJob] [Dallal::DallalJob] [4efbcbfd-d957-40a8-890d-e63dddb185b8] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 12, "create"
1854
+ [ActiveJob] [Dallal::DallalJob] [4efbcbfd-d957-40a8-890d-e63dddb185b8] Performed Dallal::DallalJob from Inline(default) in 0.27ms
1855
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 4efbcbfd-d957-40a8-890d-e63dddb185b8) to Inline(default) with arguments: "User", 12, "create"
1856
+  (169.7ms) commit transaction
1857
+  (0.2ms) begin transaction
1858
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 12], ["created_at", "2016-08-04 18:17:17.981574"], ["updated_at", "2016-08-04 18:17:17.981574"]]
1859
+ [ActiveJob] [Dallal::DallalJob] [7edc2b9a-95ac-4032-99a7-47af659031dd] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 10, "create"
1860
+ [ActiveJob] [Dallal::DallalJob] [7edc2b9a-95ac-4032-99a7-47af659031dd] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]]
1861
+ [ActiveJob] [Dallal::DallalJob] [7edc2b9a-95ac-4032-99a7-47af659031dd] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 12]]
1862
+ [ActiveJob] [Dallal::DallalJob] [7edc2b9a-95ac-4032-99a7-47af659031dd] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1863
+ [ActiveJob] [Dallal::DallalJob] [7edc2b9a-95ac-4032-99a7-47af659031dd] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1864
+ [ActiveJob] [Dallal::DallalJob] [7edc2b9a-95ac-4032-99a7-47af659031dd]
1865
+ Dallal::Mailer#notify: processed outbound mail in 4.7ms
1866
+ [ActiveJob] [Dallal::DallalJob] [7edc2b9a-95ac-4032-99a7-47af659031dd]
1867
+ Sent mail to laertis.pappas@gmail.com (5.4ms)
1868
+ [ActiveJob] [Dallal::DallalJob] [7edc2b9a-95ac-4032-99a7-47af659031dd] Date: Thu, 04 Aug 2016 21:17:17 +0300
1869
+ From: just a name <foo@bar.xyz>
1870
+ Reply-To: just a name <foo@bar.xyz>
1871
+ To: laertis.pappas@gmail.com
1872
+ Message-ID: <57a386adf2eb7_59263fdcfb94d988225b9@lapis-localhost.mail>
1873
+ Subject: <html> <body> A subject </body> </html>
1874
+ Mime-Version: 1.0
1875
+ Content-Type: text/html;
1876
+ charset=UTF-8
1877
+ Content-Transfer-Encoding: 7bit
1878
+
1879
+ <html>
1880
+ <body>
1881
+ <h1>Register email</h1>
1882
+ This is a test data template fixture
1883
+
1884
+ #&lt;User:0x007fb9fa5a3230&gt;
1885
+
1886
+
1887
+ </body>
1888
+ </html>
1889
+
1890
+ [ActiveJob] [Dallal::DallalJob] [7edc2b9a-95ac-4032-99a7-47af659031dd] Performed Dallal::DallalJob from Inline(default) in 13.1ms
1891
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 7edc2b9a-95ac-4032-99a7-47af659031dd) to Inline(default) with arguments: "Post", 10, "create"
1892
+  (214.2ms) commit transaction
1893
+  (0.2ms) begin transaction
1894
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:18.217445"], ["updated_at", "2016-08-04 18:17:18.217445"]]
1895
+ [ActiveJob] [Dallal::DallalJob] [aa3703f7-480c-478f-845c-1d8a4bb1c2b4] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 13, "create"
1896
+ [ActiveJob] [Dallal::DallalJob] [aa3703f7-480c-478f-845c-1d8a4bb1c2b4] Performed Dallal::DallalJob from Inline(default) in 0.38ms
1897
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: aa3703f7-480c-478f-845c-1d8a4bb1c2b4) to Inline(default) with arguments: "User", 13, "create"
1898
+  (157.1ms) commit transaction
1899
+  (0.2ms) begin transaction
1900
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 13], ["created_at", "2016-08-04 18:17:18.382799"], ["updated_at", "2016-08-04 18:17:18.382799"]]
1901
+ [ActiveJob] [Dallal::DallalJob] [dd05449d-76f6-4ca6-add4-8cd9e484f903] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 11, "create"
1902
+ [ActiveJob] [Dallal::DallalJob] [dd05449d-76f6-4ca6-add4-8cd9e484f903] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]]
1903
+ [ActiveJob] [Dallal::DallalJob] [dd05449d-76f6-4ca6-add4-8cd9e484f903] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 13]]
1904
+ [ActiveJob] [Dallal::DallalJob] [dd05449d-76f6-4ca6-add4-8cd9e484f903] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1905
+ [ActiveJob] [Dallal::DallalJob] [dd05449d-76f6-4ca6-add4-8cd9e484f903] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1906
+ [ActiveJob] [Dallal::DallalJob] [dd05449d-76f6-4ca6-add4-8cd9e484f903]
1907
+ Dallal::Mailer#notify: processed outbound mail in 5.2ms
1908
+ [ActiveJob] [Dallal::DallalJob] [dd05449d-76f6-4ca6-add4-8cd9e484f903]
1909
+ Sent mail to laertis.pappas@gmail.com (5.7ms)
1910
+ [ActiveJob] [Dallal::DallalJob] [dd05449d-76f6-4ca6-add4-8cd9e484f903] Date: Thu, 04 Aug 2016 21:17:18 +0300
1911
+ From: just a name <foo@bar.xyz>
1912
+ Reply-To: just a name <foo@bar.xyz>
1913
+ To: laertis.pappas@gmail.com
1914
+ Message-ID: <57a386ae61040_59263fdcfb94d9882261a@lapis-localhost.mail>
1915
+ Subject: <html> <body> A subject </body> </html>
1916
+ Mime-Version: 1.0
1917
+ Content-Type: text/html;
1918
+ charset=UTF-8
1919
+ Content-Transfer-Encoding: 7bit
1920
+
1921
+ <html>
1922
+ <body>
1923
+ <h1>Register email</h1>
1924
+ This is a test data template fixture
1925
+
1926
+ #&lt;User:0x007fb9fa473b80&gt;
1927
+
1928
+
1929
+ </body>
1930
+ </html>
1931
+
1932
+ [ActiveJob] [Dallal::DallalJob] [dd05449d-76f6-4ca6-add4-8cd9e484f903] Performed Dallal::DallalJob from Inline(default) in 14.19ms
1933
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: dd05449d-76f6-4ca6-add4-8cd9e484f903) to Inline(default) with arguments: "Post", 11, "create"
1934
+  (134.4ms) commit transaction
1935
+  (0.2ms) begin transaction
1936
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:18.539297"], ["updated_at", "2016-08-04 18:17:18.539297"]]
1937
+ [ActiveJob] [Dallal::DallalJob] [bda3167a-c28e-4c81-887a-ab76db1bad2e] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 14, "create"
1938
+ [ActiveJob] [Dallal::DallalJob] [bda3167a-c28e-4c81-887a-ab76db1bad2e] Performed Dallal::DallalJob from Inline(default) in 0.44ms
1939
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: bda3167a-c28e-4c81-887a-ab76db1bad2e) to Inline(default) with arguments: "User", 14, "create"
1940
+  (157.9ms) commit transaction
1941
+  (0.2ms) begin transaction
1942
+ SQL (0.4ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 14], ["created_at", "2016-08-04 18:17:18.705708"], ["updated_at", "2016-08-04 18:17:18.705708"]]
1943
+ [ActiveJob] [Dallal::DallalJob] [efad818e-ae7e-4cf8-80cc-3b14b19f021c] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 12, "create"
1944
+ [ActiveJob] [Dallal::DallalJob] [efad818e-ae7e-4cf8-80cc-3b14b19f021c] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]]
1945
+ [ActiveJob] [Dallal::DallalJob] [efad818e-ae7e-4cf8-80cc-3b14b19f021c] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 14]]
1946
+ [ActiveJob] [Dallal::DallalJob] [efad818e-ae7e-4cf8-80cc-3b14b19f021c] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.1ms)
1947
+ [ActiveJob] [Dallal::DallalJob] [efad818e-ae7e-4cf8-80cc-3b14b19f021c] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.2ms)
1948
+ [ActiveJob] [Dallal::DallalJob] [efad818e-ae7e-4cf8-80cc-3b14b19f021c]
1949
+ Dallal::Mailer#notify: processed outbound mail in 5.6ms
1950
+ [ActiveJob] [Dallal::DallalJob] [efad818e-ae7e-4cf8-80cc-3b14b19f021c]
1951
+ Sent mail to laertis.pappas@gmail.com (6.3ms)
1952
+ [ActiveJob] [Dallal::DallalJob] [efad818e-ae7e-4cf8-80cc-3b14b19f021c] Date: Thu, 04 Aug 2016 21:17:18 +0300
1953
+ From: just a name <foo@bar.xyz>
1954
+ Reply-To: just a name <foo@bar.xyz>
1955
+ To: laertis.pappas@gmail.com
1956
+ Message-ID: <57a386aeb0356_59263fdcfb94d98822769@lapis-localhost.mail>
1957
+ Subject: <html> <body> A subject </body> </html>
1958
+ Mime-Version: 1.0
1959
+ Content-Type: text/html;
1960
+ charset=UTF-8
1961
+ Content-Transfer-Encoding: 7bit
1962
+
1963
+ <html>
1964
+ <body>
1965
+ <h1>Register email</h1>
1966
+ This is a test data template fixture
1967
+
1968
+ #&lt;User:0x007fb9fa338770&gt;
1969
+
1970
+
1971
+ </body>
1972
+ </html>
1973
+
1974
+ [ActiveJob] [Dallal::DallalJob] [efad818e-ae7e-4cf8-80cc-3b14b19f021c] Performed Dallal::DallalJob from Inline(default) in 15.68ms
1975
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: efad818e-ae7e-4cf8-80cc-3b14b19f021c) to Inline(default) with arguments: "Post", 12, "create"
1976
+  (132.7ms) commit transaction
1977
+  (0.2ms) begin transaction
1978
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:18.864644"], ["updated_at", "2016-08-04 18:17:18.864644"]]
1979
+ [ActiveJob] [Dallal::DallalJob] [1eb40a45-cb6b-4bda-9443-4b46def02ac0] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 15, "create"
1980
+ [ActiveJob] [Dallal::DallalJob] [1eb40a45-cb6b-4bda-9443-4b46def02ac0] Performed Dallal::DallalJob from Inline(default) in 0.32ms
1981
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 1eb40a45-cb6b-4bda-9443-4b46def02ac0) to Inline(default) with arguments: "User", 15, "create"
1982
+  (178.4ms) commit transaction
1983
+  (0.2ms) begin transaction
1984
+ SQL (0.6ms) INSERT INTO "posts" ("title", "body", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "A title"], ["body", "some body"], ["user_id", 15], ["created_at", "2016-08-04 18:17:19.051312"], ["updated_at", "2016-08-04 18:17:19.051312"]]
1985
+ [ActiveJob] [Dallal::DallalJob] [d219dbb3-68de-45cd-8f73-b59d45522ffa] Performing Dallal::DallalJob from Inline(default) with arguments: "Post", 13, "create"
1986
+ [ActiveJob] [Dallal::DallalJob] [d219dbb3-68de-45cd-8f73-b59d45522ffa] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]]
1987
+ [ActiveJob] [Dallal::DallalJob] [d219dbb3-68de-45cd-8f73-b59d45522ffa] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 15]]
1988
+ [ActiveJob] [Dallal::DallalJob] [d219dbb3-68de-45cd-8f73-b59d45522ffa] Rendered dallal/mailer/posts/register_subject.html.erb within layouts/mailer (0.2ms)
1989
+ [ActiveJob] [Dallal::DallalJob] [d219dbb3-68de-45cd-8f73-b59d45522ffa] Rendered dallal/mailer/posts/register.html.erb within layouts/mailer (0.1ms)
1990
+ [ActiveJob] [Dallal::DallalJob] [d219dbb3-68de-45cd-8f73-b59d45522ffa]
1991
+ Dallal::Mailer#notify: processed outbound mail in 5.4ms
1992
+ [ActiveJob] [Dallal::DallalJob] [d219dbb3-68de-45cd-8f73-b59d45522ffa]
1993
+ Sent mail to laertis.pappas@gmail.com (6.7ms)
1994
+ [ActiveJob] [Dallal::DallalJob] [d219dbb3-68de-45cd-8f73-b59d45522ffa] Date: Thu, 04 Aug 2016 21:17:19 +0300
1995
+ From: just a name <foo@bar.xyz>
1996
+ Reply-To: just a name <foo@bar.xyz>
1997
+ To: laertis.pappas@gmail.com
1998
+ Message-ID: <57a386af107d0_59263fdcfb94d9882284d@lapis-localhost.mail>
1999
+ Subject: <html> <body> A subject </body> </html>
2000
+ Mime-Version: 1.0
2001
+ Content-Type: text/html;
2002
+ charset=UTF-8
2003
+ Content-Transfer-Encoding: 7bit
2004
+
2005
+ <html>
2006
+ <body>
2007
+ <h1>Register email</h1>
2008
+ This is a test data template fixture
2009
+
2010
+ #&lt;User:0x007fb9fa205088&gt;
2011
+
2012
+
2013
+ </body>
2014
+ </html>
2015
+
2016
+ [ActiveJob] [Dallal::DallalJob] [d219dbb3-68de-45cd-8f73-b59d45522ffa] Performed Dallal::DallalJob from Inline(default) in 15.94ms
2017
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: d219dbb3-68de-45cd-8f73-b59d45522ffa) to Inline(default) with arguments: "Post", 13, "create"
2018
+  (143.5ms) commit transaction
2019
+  (0.2ms) begin transaction
2020
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:19.240018"], ["updated_at", "2016-08-04 18:17:19.240018"]]
2021
+ [ActiveJob] [Dallal::DallalJob] [02066462-fd14-4e60-9f7e-0f4bcdd463a6] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 16, "create"
2022
+ [ActiveJob] [Dallal::DallalJob] [02066462-fd14-4e60-9f7e-0f4bcdd463a6] Performed Dallal::DallalJob from Inline(default) in 0.25ms
2023
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 02066462-fd14-4e60-9f7e-0f4bcdd463a6) to Inline(default) with arguments: "User", 16, "create"
2024
+  (149.4ms) commit transaction
2025
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 16]]
2026
+  (0.1ms) begin transaction
2027
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:19.400736"], ["updated_at", "2016-08-04 18:17:19.400736"]]
2028
+ [ActiveJob] [Dallal::DallalJob] [8f6a7389-a304-4c09-a49b-1bfb17b3a39a] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 17, "create"
2029
+ [ActiveJob] [Dallal::DallalJob] [8f6a7389-a304-4c09-a49b-1bfb17b3a39a] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
2030
+ [ActiveJob] [Dallal::DallalJob] [8f6a7389-a304-4c09-a49b-1bfb17b3a39a] Performed Dallal::DallalJob from Inline(default) in 1.01ms
2031
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 8f6a7389-a304-4c09-a49b-1bfb17b3a39a) to Inline(default) with arguments: "User", 17, "create"
2032
+  (155.1ms) commit transaction
2033
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 17]]
2034
+  (0.2ms) begin transaction
2035
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:19.567470"], ["updated_at", "2016-08-04 18:17:19.567470"]]
2036
+ [ActiveJob] [Dallal::DallalJob] [17447657-251b-479e-ad6d-56f98dc9371d] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 18, "create"
2037
+ [ActiveJob] [Dallal::DallalJob] [17447657-251b-479e-ad6d-56f98dc9371d] Performed Dallal::DallalJob from Inline(default) in 0.3ms
2038
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 17447657-251b-479e-ad6d-56f98dc9371d) to Inline(default) with arguments: "User", 18, "create"
2039
+  (157.2ms) commit transaction
2040
+  (0.2ms) begin transaction
2041
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:19.734423"], ["updated_at", "2016-08-04 18:17:19.734423"]]
2042
+ [ActiveJob] [Dallal::DallalJob] [2c94ae3a-d45e-4300-98be-11b6c01641c0] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 19, "create"
2043
+ [ActiveJob] [Dallal::DallalJob] [2c94ae3a-d45e-4300-98be-11b6c01641c0] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 19]]
2044
+ [ActiveJob] [Dallal::DallalJob] [2c94ae3a-d45e-4300-98be-11b6c01641c0] Performed Dallal::DallalJob from Inline(default) in 1.31ms
2045
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: 2c94ae3a-d45e-4300-98be-11b6c01641c0) to Inline(default) with arguments: "User", 19, "create"
2046
+  (167.3ms) commit transaction
2047
+  (0.2ms) begin transaction
2048
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:19.935009"], ["updated_at", "2016-08-04 18:17:19.935009"]]
2049
+  (159.1ms) commit transaction
2050
+ [ActiveJob] [Dallal::DallalJob] [d38a189b-382e-4565-b39c-bc8d83505dd8] Performing Dallal::DallalJob from Inline(default) with arguments: "User", 1, "create"
2051
+ [ActiveJob] [Dallal::DallalJob] [d38a189b-382e-4565-b39c-bc8d83505dd8] Performed Dallal::DallalJob from Inline(default) in 1.29ms
2052
+ [ActiveJob] Enqueued Dallal::DallalJob (Job ID: d38a189b-382e-4565-b39c-bc8d83505dd8) to Inline(default) with arguments: "User", 1, "create"
2053
+  (0.2ms) begin transaction
2054
+ SQL (0.4ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "laertis.pappas@gmail.com"], ["username", "lpappas"], ["created_at", "2016-08-04 18:17:20.113750"], ["updated_at", "2016-08-04 18:17:20.113750"]]
2055
+  (170.3ms) commit transaction
2056
+  (0.2ms) begin transaction
2057
+  (0.1ms) commit transaction