user_notifier 0.0.5 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/mailers/user_notifier/mailer.rb +28 -8
- data/lib/user_notifier/configuration.rb +5 -3
- data/lib/user_notifier/version.rb +1 -1
- data/spec/dummy/app/views/layouts/email.html.erb +1 -0
- data/spec/dummy/app/views/user_notifier/mailer/test.en.html.erb +1 -0
- data/spec/dummy/app/views/user_notifier/mailer/test.pt.html.erb +1 -0
- data/spec/dummy/app/views/user_notifier/mailer/test_subject.en.text.erb +1 -0
- data/spec/dummy/app/views/user_notifier/mailer/test_subject.pt.text.erb +1 -0
- data/spec/dummy/config/locales/pt.yml +23 -0
- data/spec/dummy/log/test.log +3710 -0
- data/spec/mailers/user_notifier/mailer_spec.rb +33 -0
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4eea93c56a1d631f7ce1440cdc8f3c6360ebdb72
|
4
|
+
data.tar.gz: d117fe1460f2da2062b6802722e9e7a0c850057e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7ba341e3a30900c162bc9644756af9a5960c536cc76aba1d62576f57cf72163bcd39107bc1a0aa2c19caeec862b0effa2b59fa041825abdc0a07b7d915069be
|
7
|
+
data.tar.gz: d69f11700cfa024aba57e08b0a19089460945780c9a0266399ec6651c5793ba674ae641ce449baad07fd632d90dfb375fe42c0d1164a2b08d605bad9c6dfc820
|
@@ -3,21 +3,41 @@ class UserNotifier::Mailer < ActionMailer::Base
|
|
3
3
|
|
4
4
|
def notify(notification)
|
5
5
|
@notification = notification
|
6
|
-
|
7
|
-
I18n.
|
8
|
-
|
9
|
-
|
6
|
+
|
7
|
+
I18n.with_locale @notification.locale do
|
8
|
+
configure_xsmtp_headers if UserNotifier.use_xsmtp_api
|
9
|
+
mail(mail_attributes)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
def subject
|
16
|
+
render_to_string(template: "user_notifier/mailer/#{@notification.template_name}_subject")
|
17
|
+
end
|
18
|
+
|
19
|
+
def mail_attributes
|
20
|
+
{
|
10
21
|
from: address_format(UserNotifier.system_email, @notification.from_name),
|
11
22
|
reply_to: address_format(@notification.from_email, @notification.from_name),
|
12
23
|
to: @notification.user.email,
|
13
24
|
subject: subject,
|
14
25
|
template_name: @notification.template_name
|
15
|
-
}
|
16
|
-
|
17
|
-
|
26
|
+
}
|
27
|
+
end
|
28
|
+
|
29
|
+
|
30
|
+
def configure_xsmtp_headers
|
31
|
+
headers['X-SMTPAPI'] = {
|
32
|
+
unique_args: {
|
33
|
+
notification_user: @notification.user_id,
|
34
|
+
notification_type: @notification.class.to_s,
|
35
|
+
notification_id: @notification.id,
|
36
|
+
template_name: @notification.template_name
|
37
|
+
}
|
38
|
+
}.to_json
|
18
39
|
end
|
19
40
|
|
20
|
-
private
|
21
41
|
def address_format email, name
|
22
42
|
address = Mail::Address.new email
|
23
43
|
address.display_name = name
|
@@ -1,12 +1,13 @@
|
|
1
1
|
module UserNotifier
|
2
2
|
module Configuration
|
3
|
-
VALID_CONFIG_KEYS = [:system_email, :email_layout, :user_class_name, :from_email, :from_name].freeze
|
3
|
+
VALID_CONFIG_KEYS = [:system_email, :email_layout, :user_class_name, :from_email, :from_name, :use_xsmtp_api].freeze
|
4
4
|
|
5
5
|
DEFAULT_SYSTEM_EMAIL = nil
|
6
6
|
DEFAULT_EMAIL_LAYOUT = 'email'
|
7
7
|
DEFAULT_USER_CLASS_NAME = 'User'
|
8
8
|
DEFAULT_FROM_EMAIL = 'no-reply@yourdomain'
|
9
9
|
DEFAULT_FROM_NAME = 'please configure a default from name'
|
10
|
+
DEFAULT_USE_XSMTP_API = false
|
10
11
|
|
11
12
|
# Build accessor methods for every config options so we can do this, for example:
|
12
13
|
# Awesome.format = <img src="http://s2.wp.com/wp-includes/images/smilies/icon_mad.gif?m=1129645325g" alt=":x" class="wp-smiley"> ml
|
@@ -29,8 +30,9 @@ module UserNotifier
|
|
29
30
|
self.system_email = DEFAULT_SYSTEM_EMAIL
|
30
31
|
self.email_layout = DEFAULT_EMAIL_LAYOUT
|
31
32
|
self.user_class_name = DEFAULT_USER_CLASS_NAME
|
32
|
-
self.from_email
|
33
|
-
self.from_name
|
33
|
+
self.from_email = DEFAULT_FROM_EMAIL
|
34
|
+
self.from_name = DEFAULT_FROM_NAME
|
35
|
+
self.use_xsmtp_api = DEFAULT_USE_XSMTP_API
|
34
36
|
end
|
35
37
|
|
36
38
|
end # Configuration
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= yield %>
|
@@ -0,0 +1 @@
|
|
1
|
+
test body
|
@@ -0,0 +1 @@
|
|
1
|
+
corpo de teste
|
@@ -0,0 +1 @@
|
|
1
|
+
test subject
|
@@ -0,0 +1 @@
|
|
1
|
+
assunto de teste
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
pt:
|
23
|
+
hello: "Hello world"
|
data/spec/dummy/log/test.log
CHANGED
@@ -1469,3 +1469,3713 @@
|
|
1469
1469
|
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1470
1470
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1471
1471
|
[1m[35m (0.7ms)[0m rollback transaction
|
1472
|
+
[1m[36m (21.8ms)[0m [1mbegin transaction[0m
|
1473
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1474
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1475
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1476
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1477
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1478
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1479
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1480
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1481
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1482
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1483
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1484
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1485
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1486
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1487
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1488
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1489
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1490
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1491
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1492
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1493
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1494
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.737969"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.737969"]]
|
1495
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1496
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1497
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.750132"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.750132"], ["user_id", 1]]
|
1498
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1499
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1500
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1501
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1502
|
+
[1m[36mUserNotification Load (0.2ms)[0m [1mSELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1[0m
|
1503
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1504
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1505
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1506
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.778219"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.778219"]]
|
1507
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1508
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1509
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.780506"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.780506"], ["user_id", 1]]
|
1510
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1511
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1512
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1513
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1514
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
1515
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1516
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1517
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.787676"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.787676"]]
|
1518
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1519
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1520
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.789728"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.789728"], ["user_id", 1]]
|
1521
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1522
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1523
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1524
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1525
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
1526
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1527
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1528
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.812459"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.812459"]]
|
1529
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1530
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1531
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.815296"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.815296"], ["user_id", 1]]
|
1532
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1533
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1534
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1535
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1536
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
1537
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1538
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1539
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.824340"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.824340"]]
|
1540
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1541
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1542
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.826444"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.826444"], ["user_id", 1]]
|
1543
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1544
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
1545
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1546
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1547
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.831878"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.831878"]]
|
1548
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1549
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1550
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.834027"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.834027"], ["user_id", 1]]
|
1551
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1552
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1553
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
1554
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1555
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1556
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1557
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1558
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.851485"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.851485"]]
|
1559
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1560
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1561
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.853901"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.853901"], ["user_id", 1]]
|
1562
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1563
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1564
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
1565
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1566
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
1567
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1568
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1569
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.860299"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.860299"]]
|
1570
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1571
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1572
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.862272"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.862272"], ["user_id", 1]]
|
1573
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1574
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1575
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
1576
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1577
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1578
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1579
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1580
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.869801"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.869801"]]
|
1581
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1582
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1583
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.871953"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.871953"], ["user_id", 1]]
|
1584
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1585
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1586
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1587
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1588
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
1589
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1590
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1591
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.878597"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.878597"]]
|
1592
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1593
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1594
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.880704"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.880704"], ["user_id", 1]]
|
1595
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1596
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1597
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1598
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1599
|
+
[1m[35mUserNotification Load (0.2ms)[0m SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
|
1600
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
1601
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1602
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1603
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.889272"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.889272"]]
|
1604
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1605
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1606
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.891447"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.891447"], ["user_id", 1]]
|
1607
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1608
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1609
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1610
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1611
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'
|
1612
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications"[0m
|
1613
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1614
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1615
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1616
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:10:20.904074"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.904074"]]
|
1617
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1618
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1619
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.906266"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.906266"], ["user_id", 1]]
|
1620
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1621
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1622
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1623
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1624
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'[0m
|
1625
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1626
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
|
1627
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1628
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications"[0m
|
1629
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1630
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
1631
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1632
|
+
[1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
1633
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1634
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
1635
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1636
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
1637
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1638
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:19:07.665488"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:19:07.665488"]]
|
1639
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1640
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1641
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1642
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1643
|
+
|
1644
|
+
UserNotifier::Mailer#notify: processed outbound mail in 21.3ms
|
1645
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1646
|
+
[1m[36m (0.8ms)[0m [1mbegin transaction[0m
|
1647
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1648
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:20:37.256927"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:20:37.256927"]]
|
1649
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1650
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1651
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1652
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1653
|
+
|
1654
|
+
UserNotifier::Mailer#notify: processed outbound mail in 26.7ms
|
1655
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1656
|
+
[1m[36m (0.8ms)[0m [1mbegin transaction[0m
|
1657
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1658
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:21:01.774394"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:21:01.774394"]]
|
1659
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1660
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1661
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1662
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1663
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
|
1664
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
|
1665
|
+
|
1666
|
+
UserNotifier::Mailer#notify: processed outbound mail in 109.5ms
|
1667
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1668
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
1669
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1670
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:22:50.492904"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:22:50.492904"]]
|
1671
|
+
[1m[35m (0.4ms)[0m RELEASE SAVEPOINT active_record_1
|
1672
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1673
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1674
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1675
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
|
1676
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
|
1677
|
+
|
1678
|
+
UserNotifier::Mailer#notify: processed outbound mail in 46.4ms
|
1679
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1680
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
1681
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1682
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:24:22.661488"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:24:22.661488"]]
|
1683
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1684
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1685
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1686
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1687
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
|
1688
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.6ms)
|
1689
|
+
|
1690
|
+
UserNotifier::Mailer#notify: processed outbound mail in 46.6ms
|
1691
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1692
|
+
[1m[36m (0.8ms)[0m [1mbegin transaction[0m
|
1693
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1694
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:25:12.720217"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:25:12.720217"]]
|
1695
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1696
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1697
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1698
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1699
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.7ms)
|
1700
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
|
1701
|
+
|
1702
|
+
UserNotifier::Mailer#notify: processed outbound mail in 49.0ms
|
1703
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
1704
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
1705
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1706
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:25:54.486344"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:25:54.486344"]]
|
1707
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1708
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1709
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1710
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1711
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
|
1712
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
|
1713
|
+
|
1714
|
+
UserNotifier::Mailer#notify: processed outbound mail in 45.5ms
|
1715
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
1716
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
1717
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1718
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:26:43.323973"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.323973"]]
|
1719
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1720
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1721
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1722
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1723
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
|
1724
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
|
1725
|
+
|
1726
|
+
UserNotifier::Mailer#notify: processed outbound mail in 46.3ms
|
1727
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1728
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1729
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1730
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:26:43.402487"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.402487"]]
|
1731
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
1732
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1733
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1734
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1735
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1736
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1737
|
+
|
1738
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.0ms
|
1739
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1740
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1741
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1742
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:26:43.421919"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.421919"]]
|
1743
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1744
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1745
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1746
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1747
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1748
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
1749
|
+
|
1750
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
|
1751
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1752
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1753
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1754
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:26:43.442502"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.442502"]]
|
1755
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1756
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1757
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1758
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1759
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1760
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
1761
|
+
|
1762
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
|
1763
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
1764
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1765
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1766
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:26:43.461720"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.461720"]]
|
1767
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1768
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1769
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1770
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1771
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1772
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1773
|
+
|
1774
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
|
1775
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
1776
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
1777
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1778
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:27.433823"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.433823"]]
|
1779
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1780
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1781
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1782
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1783
|
+
Rendered user_notifier/mailer/test_subject.text.erb (2.5ms)
|
1784
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
|
1785
|
+
|
1786
|
+
UserNotifier::Mailer#notify: processed outbound mail in 46.1ms
|
1787
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1788
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1789
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1790
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:27.513363"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.513363"]]
|
1791
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1792
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1793
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1794
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1795
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1796
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1797
|
+
|
1798
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.2ms
|
1799
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1800
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1801
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1802
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:27.532003"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.532003"]]
|
1803
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1804
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1805
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1806
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1807
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
1808
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1809
|
+
|
1810
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
1811
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1812
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1813
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1814
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:27.552741"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.552741"]]
|
1815
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1816
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1817
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1818
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1819
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1820
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1821
|
+
|
1822
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.4ms
|
1823
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
1824
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1825
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1826
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:27.577459"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.577459"]]
|
1827
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1828
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1829
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1830
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1831
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1832
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1833
|
+
|
1834
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
|
1835
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1836
|
+
[1m[36m (1.0ms)[0m [1mbegin transaction[0m
|
1837
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1838
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:48.842161"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:48.842161"]]
|
1839
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1840
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1841
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1842
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1843
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.9ms)
|
1844
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (1.1ms)
|
1845
|
+
|
1846
|
+
UserNotifier::Mailer#notify: processed outbound mail in 49.7ms
|
1847
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1848
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1849
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1850
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:48.928454"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:48.928454"]]
|
1851
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1852
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1853
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1854
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1855
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1856
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1857
|
+
|
1858
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.4ms
|
1859
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1860
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
1861
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1862
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:48.951536"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:48.951536"]]
|
1863
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1864
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1865
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1866
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1867
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1868
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
1869
|
+
|
1870
|
+
UserNotifier::Mailer#notify: processed outbound mail in 16.6ms
|
1871
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
1872
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1873
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1874
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:48.979456"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:48.979456"]]
|
1875
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1876
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1877
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1878
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1879
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1880
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
1881
|
+
|
1882
|
+
UserNotifier::Mailer#notify: processed outbound mail in 14.3ms
|
1883
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1884
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1885
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1886
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:27:49.004430"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:49.004430"]]
|
1887
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
1888
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1889
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1890
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1891
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1892
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1893
|
+
|
1894
|
+
UserNotifier::Mailer#notify: processed outbound mail in 16.1ms
|
1895
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1896
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
1897
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1898
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:04.585515"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.585515"]]
|
1899
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1900
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1901
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1902
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1903
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
|
1904
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
|
1905
|
+
|
1906
|
+
UserNotifier::Mailer#notify: processed outbound mail in 43.9ms
|
1907
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1908
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1909
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1910
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:04.662143"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.662143"]]
|
1911
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1912
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1913
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1914
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1915
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1916
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1917
|
+
|
1918
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
|
1919
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1920
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1921
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1922
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:04.681669"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.681669"]]
|
1923
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1924
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1925
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1926
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1927
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
1928
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1929
|
+
|
1930
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
|
1931
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1932
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1933
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1934
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:04.701685"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.701685"]]
|
1935
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1936
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1937
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1938
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1939
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
1940
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1941
|
+
|
1942
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.0ms
|
1943
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1944
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1945
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1946
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:04.721275"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.721275"]]
|
1947
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1948
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1949
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1950
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1951
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1952
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1953
|
+
|
1954
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
|
1955
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1956
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
1957
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1958
|
+
[1m[36mSQL (1.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:24.036235"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.036235"]]
|
1959
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1960
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1961
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1962
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1963
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
|
1964
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
|
1965
|
+
|
1966
|
+
UserNotifier::Mailer#notify: processed outbound mail in 46.2ms
|
1967
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1968
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1969
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1970
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:24.116036"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.116036"]]
|
1971
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1972
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1973
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1974
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1975
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
1976
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
1977
|
+
|
1978
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
|
1979
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
1980
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1981
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1982
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:24.135672"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.135672"]]
|
1983
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1984
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1985
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1986
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1987
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
1988
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
1989
|
+
|
1990
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
1991
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1992
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1993
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1994
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:24.154653"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.154653"]]
|
1995
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1996
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1997
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
1998
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1999
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
2000
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2001
|
+
|
2002
|
+
UserNotifier::Mailer#notify: processed outbound mail in 14.1ms
|
2003
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2004
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2005
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2006
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:28:24.177464"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.177464"]]
|
2007
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2008
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2009
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2010
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2011
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2012
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2013
|
+
|
2014
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.4ms
|
2015
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2016
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2017
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2018
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:30:11.385275"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.385275"]]
|
2019
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
2020
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2021
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2022
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2023
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.7ms)
|
2024
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
|
2025
|
+
|
2026
|
+
UserNotifier::Mailer#notify: processed outbound mail in 45.2ms
|
2027
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
2028
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2029
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2030
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:30:11.462727"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.462727"]]
|
2031
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2032
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2033
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2034
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2035
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2036
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2037
|
+
|
2038
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
2039
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2040
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2041
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2042
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:30:11.482985"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.482985"]]
|
2043
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2044
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2045
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2046
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2047
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2048
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2049
|
+
|
2050
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.6ms
|
2051
|
+
[1m[35m (2.0ms)[0m rollback transaction
|
2052
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2053
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2054
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:30:11.504570"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.504570"]]
|
2055
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
2056
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2057
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2058
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2059
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2060
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2061
|
+
|
2062
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
|
2063
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2064
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2065
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2066
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:30:11.525944"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.525944"]]
|
2067
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2068
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2069
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2070
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2071
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2072
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2073
|
+
|
2074
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
|
2075
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2076
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2077
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2078
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:04.505734"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.505734"]]
|
2079
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2080
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
2081
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2082
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2083
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
|
2084
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.6ms)
|
2085
|
+
|
2086
|
+
UserNotifier::Mailer#notify: processed outbound mail in 46.2ms
|
2087
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
2088
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2089
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2090
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:04.585421"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.585421"]]
|
2091
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2092
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2093
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2094
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2095
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2096
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2097
|
+
|
2098
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
|
2099
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2100
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2101
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2102
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:04.604336"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.604336"]]
|
2103
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2104
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2105
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2106
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2107
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.2ms)
|
2108
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2109
|
+
|
2110
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
|
2111
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2113
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2114
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:04.623941"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.623941"]]
|
2115
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2116
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2117
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2118
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2119
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2120
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2121
|
+
|
2122
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.1ms
|
2123
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2125
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2126
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:04.645254"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.645254"]]
|
2127
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2128
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2129
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2130
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2131
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2132
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2133
|
+
|
2134
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.1ms
|
2135
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2136
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2137
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2138
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:33.672187"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.672187"]]
|
2139
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2140
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2141
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2142
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2143
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.7ms)
|
2144
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
|
2145
|
+
|
2146
|
+
UserNotifier::Mailer#notify: processed outbound mail in 50.0ms
|
2147
|
+
[1m[35m (2.3ms)[0m rollback transaction
|
2148
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2149
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2150
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:33.758664"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.758664"]]
|
2151
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2152
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2153
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2154
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2155
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2156
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2157
|
+
|
2158
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
2159
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2160
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2161
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2162
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:33.778592"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.778592"]]
|
2163
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2164
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2165
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2166
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2167
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2168
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
2169
|
+
|
2170
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
|
2171
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2173
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2174
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:33.798417"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.798417"]]
|
2175
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2176
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2177
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2178
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2179
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2180
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2181
|
+
|
2182
|
+
UserNotifier::Mailer#notify: processed outbound mail in 14.2ms
|
2183
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2184
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2185
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2186
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:33.820792"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.820792"]]
|
2187
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2188
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2189
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2190
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2191
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2192
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2193
|
+
|
2194
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
|
2195
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2197
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2198
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:31:33.841238"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.841238"]]
|
2199
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2200
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2201
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2202
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2203
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2204
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
2205
|
+
|
2206
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
|
2207
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2208
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2209
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2210
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:32:28.156789"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.156789"]]
|
2211
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2212
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2213
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2214
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2215
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
|
2216
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
|
2217
|
+
|
2218
|
+
UserNotifier::Mailer#notify: processed outbound mail in 43.9ms
|
2219
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
2220
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2221
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2222
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:32:28.232536"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.232536"]]
|
2223
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2224
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2225
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2226
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2227
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2228
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2229
|
+
|
2230
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
2231
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
2232
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2233
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2234
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:32:28.251877"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.251877"]]
|
2235
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2236
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2237
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2238
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2239
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2240
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
2241
|
+
|
2242
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
|
2243
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
2244
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2245
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2246
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:32:28.273104"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.273104"]]
|
2247
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2248
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2249
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2250
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2251
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2252
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2253
|
+
|
2254
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.0ms
|
2255
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2256
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2257
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2258
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:32:28.294035"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.294035"]]
|
2259
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2261
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2262
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2263
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2264
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2265
|
+
|
2266
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
|
2267
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2268
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2269
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2270
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:32:28.314928"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.314928"]]
|
2271
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2272
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2273
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2274
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2275
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2276
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2277
|
+
|
2278
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
|
2279
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2280
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2281
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2282
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:32:28.335109"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.335109"]]
|
2283
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2284
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2285
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2286
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2287
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2288
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2289
|
+
|
2290
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.1ms
|
2291
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
2292
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2293
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2294
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:15.141516"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.141516"]]
|
2295
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2296
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2297
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2298
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2299
|
+
|
2300
|
+
UserNotifier::Mailer#notify: processed outbound mail in 6.6ms
|
2301
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2302
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2303
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2304
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:15.178737"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.178737"]]
|
2305
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2306
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2307
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2308
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2309
|
+
|
2310
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.3ms
|
2311
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2312
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2313
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2314
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:15.186285"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.186285"]]
|
2315
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2316
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2317
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2318
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2319
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
|
2320
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
|
2321
|
+
|
2322
|
+
UserNotifier::Mailer#notify: processed outbound mail in 39.5ms
|
2323
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2324
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2325
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2326
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:15.233282"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.233282"]]
|
2327
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2328
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2329
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2330
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2331
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2332
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2333
|
+
|
2334
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.2ms
|
2335
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2336
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2337
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2338
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:15.252769"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.252769"]]
|
2339
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2340
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2341
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2342
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2343
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
2344
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
2345
|
+
|
2346
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
2347
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2348
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2349
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2350
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:15.271878"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.271878"]]
|
2351
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2352
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2353
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2354
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2355
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2356
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
2357
|
+
|
2358
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
|
2359
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2360
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2361
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2362
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:15.291105"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.291105"]]
|
2363
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2364
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2365
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2366
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2367
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2368
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2369
|
+
|
2370
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
|
2371
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2372
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2373
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2374
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:45.070709"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.070709"]]
|
2375
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2376
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2377
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2378
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2379
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.7ms)
|
2380
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
|
2381
|
+
|
2382
|
+
UserNotifier::Mailer#notify: processed outbound mail in 44.6ms
|
2383
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
2384
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2385
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2386
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:45.146586"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.146586"]]
|
2387
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2388
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2389
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2390
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2391
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2392
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2393
|
+
|
2394
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
|
2395
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2396
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2397
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2398
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:45.165804"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.165804"]]
|
2399
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2400
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2401
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2402
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2403
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
2404
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
2405
|
+
|
2406
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
2407
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
2408
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2409
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2410
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:45.184841"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.184841"]]
|
2411
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2412
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2413
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2414
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2415
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2416
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2417
|
+
|
2418
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
|
2419
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2420
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2421
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2422
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:45.205200"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.205200"]]
|
2423
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2424
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2425
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2426
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2427
|
+
|
2428
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.3ms
|
2429
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2430
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2431
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2432
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:45.212866"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.212866"]]
|
2433
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2434
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2435
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2436
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2437
|
+
|
2438
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.4ms
|
2439
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2440
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2441
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2442
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:34:45.220457"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.220457"]]
|
2443
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2444
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2445
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2446
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2447
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
2448
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
2449
|
+
|
2450
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
|
2451
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2452
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2453
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2454
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:35:45.772578"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.772578"]]
|
2455
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2456
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2457
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2458
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2459
|
+
Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
|
2460
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.6ms)
|
2461
|
+
|
2462
|
+
UserNotifier::Mailer#notify: processed outbound mail in 48.1ms
|
2463
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2464
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2465
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2466
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:35:45.853666"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.853666"]]
|
2467
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2468
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2469
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2470
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2471
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2472
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2473
|
+
|
2474
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
2475
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2476
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2477
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2478
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:35:45.872595"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.872595"]]
|
2479
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2480
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2481
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2482
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2483
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
2484
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
2485
|
+
|
2486
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
|
2487
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2488
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2489
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2490
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:35:45.892837"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.892837"]]
|
2491
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2492
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2493
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2494
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2495
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
|
2496
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
|
2497
|
+
|
2498
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.5ms
|
2499
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2500
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2501
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2502
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:35:45.915283"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.915283"]]
|
2503
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2504
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2505
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2506
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2507
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2508
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2509
|
+
|
2510
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
|
2511
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2512
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2513
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
2514
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:35:45.936403"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.936403"]]
|
2515
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
2516
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2517
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2518
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2519
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.6ms)
|
2520
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
|
2521
|
+
|
2522
|
+
UserNotifier::Mailer#notify: processed outbound mail in 29.2ms
|
2523
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2524
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2525
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2526
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:35:45.974898"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.974898"]]
|
2527
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2528
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2529
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2530
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2531
|
+
Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
|
2532
|
+
Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
|
2533
|
+
|
2534
|
+
UserNotifier::Mailer#notify: processed outbound mail in 55.7ms
|
2535
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
2536
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2537
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2538
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:37:15.087061"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.087061"]]
|
2539
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2540
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2541
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2542
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2543
|
+
|
2544
|
+
UserNotifier::Mailer#notify: processed outbound mail in 22.1ms
|
2545
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
2546
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2547
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2548
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:37:15.140409"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.140409"]]
|
2549
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2550
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2551
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2552
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2553
|
+
|
2554
|
+
UserNotifier::Mailer#notify: processed outbound mail in 7.6ms
|
2555
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2556
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2557
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2558
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:37:15.155546"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.155546"]]
|
2559
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2560
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2561
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2562
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2563
|
+
|
2564
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.7ms
|
2565
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2566
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2567
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2568
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:37:15.162938"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.162938"]]
|
2569
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2570
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2571
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2572
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2573
|
+
|
2574
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
|
2575
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2576
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2577
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2578
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:37:15.170497"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.170497"]]
|
2579
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2580
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2581
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2582
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2583
|
+
|
2584
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.7ms
|
2585
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
2586
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2587
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2588
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:37:15.179836"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.179836"]]
|
2589
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2590
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2591
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2592
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2593
|
+
|
2594
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
|
2595
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2596
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2597
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2598
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:37:15.187810"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.187810"]]
|
2599
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2600
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2601
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2602
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2603
|
+
|
2604
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
|
2605
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2606
|
+
[1m[36m (0.8ms)[0m [1mbegin transaction[0m
|
2607
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2608
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:06.374252"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.374252"]]
|
2609
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2610
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2611
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2612
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2613
|
+
|
2614
|
+
UserNotifier::Mailer#notify: processed outbound mail in 23.1ms
|
2615
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
2616
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2617
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2618
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:06.430831"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.430831"]]
|
2619
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2620
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2621
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2622
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2623
|
+
|
2624
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
|
2625
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2626
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2627
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2628
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:06.438804"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.438804"]]
|
2629
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2630
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2631
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2632
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2633
|
+
|
2634
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
|
2635
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2636
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2637
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2638
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:06.446782"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.446782"]]
|
2639
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2640
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2641
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2642
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2643
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
|
2644
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
2645
|
+
|
2646
|
+
UserNotifier::Mailer#notify: processed outbound mail in 36.5ms
|
2647
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2648
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2649
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2650
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:06.490815"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.490815"]]
|
2651
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2652
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2653
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2654
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2655
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2656
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2657
|
+
|
2658
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.0ms
|
2659
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2660
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2661
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2662
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:06.511002"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.511002"]]
|
2663
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2664
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2665
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2666
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2667
|
+
|
2668
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.7ms
|
2669
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2670
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2671
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2672
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:06.519423"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.519423"]]
|
2673
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2674
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2675
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2676
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2677
|
+
|
2678
|
+
UserNotifier::Mailer#notify: processed outbound mail in 0.7ms
|
2679
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2680
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2681
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2682
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:38.857994"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.857994"]]
|
2683
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2684
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2685
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2686
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2687
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.8ms)
|
2688
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.4ms)
|
2689
|
+
|
2690
|
+
UserNotifier::Mailer#notify: processed outbound mail in 47.1ms
|
2691
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
2692
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2693
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2694
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:38.937325"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.937325"]]
|
2695
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2696
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2697
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2698
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2699
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2700
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2701
|
+
|
2702
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
2703
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2704
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2705
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2706
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:38.957205"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.957205"]]
|
2707
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2708
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2709
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2710
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2711
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2712
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
2713
|
+
|
2714
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.7ms
|
2715
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2716
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2717
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2718
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:38.975979"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.975979"]]
|
2719
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2720
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2721
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2722
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2723
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
2724
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
2725
|
+
|
2726
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
|
2727
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2728
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2729
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2730
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:38.995883"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.995883"]]
|
2731
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2732
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2733
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2734
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2735
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
2736
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
2737
|
+
|
2738
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
|
2739
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2740
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2741
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2742
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:39.015868"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:39.015868"]]
|
2743
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2744
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2745
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2746
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2747
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.7ms)
|
2748
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.6ms)
|
2749
|
+
|
2750
|
+
UserNotifier::Mailer#notify: processed outbound mail in 26.2ms
|
2751
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2752
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2753
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2754
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:38:39.049197"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:39.049197"]]
|
2755
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
2756
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2757
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2758
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2759
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
2760
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
2761
|
+
|
2762
|
+
UserNotifier::Mailer#notify: processed outbound mail in 55.2ms
|
2763
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2764
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2765
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2766
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:39:10.313070"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.313070"]]
|
2767
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2768
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2769
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2770
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2771
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
|
2772
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
2773
|
+
|
2774
|
+
UserNotifier::Mailer#notify: processed outbound mail in 45.7ms
|
2775
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
2776
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2777
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2778
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:39:10.393150"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.393150"]]
|
2779
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2780
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2781
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2782
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2783
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2784
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2785
|
+
|
2786
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
|
2787
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2788
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2789
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2790
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:39:10.412741"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.412741"]]
|
2791
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2792
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2793
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2794
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2795
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2796
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2797
|
+
|
2798
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
|
2799
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2800
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2801
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2802
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:39:10.432816"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.432816"]]
|
2803
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2804
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2805
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2806
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2807
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2808
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2809
|
+
|
2810
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.9ms
|
2811
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2812
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2813
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2814
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:39:10.454038"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.454038"]]
|
2815
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2816
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2817
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2818
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2819
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2820
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2821
|
+
|
2822
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.1ms
|
2823
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2824
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2825
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2826
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:39:10.475303"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.475303"]]
|
2827
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2828
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2829
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2830
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2831
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
2832
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
2833
|
+
|
2834
|
+
UserNotifier::Mailer#notify: processed outbound mail in 24.0ms
|
2835
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
2836
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2837
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
2838
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:39:10.507687"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.507687"]]
|
2839
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2840
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2841
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2842
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2843
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
2844
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
2845
|
+
|
2846
|
+
UserNotifier::Mailer#notify: processed outbound mail in 62.9ms
|
2847
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2848
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2849
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2850
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:40:24.635229"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.635229"]]
|
2851
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2852
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2853
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2854
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2855
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (1.8ms)
|
2856
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
2857
|
+
|
2858
|
+
UserNotifier::Mailer#notify: processed outbound mail in 46.3ms
|
2859
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2860
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2861
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2862
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:40:24.715905"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.715905"]]
|
2863
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2864
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2865
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2866
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2867
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
2868
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
2869
|
+
|
2870
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
|
2871
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2872
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2873
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2874
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:40:24.734584"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.734584"]]
|
2875
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2876
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2877
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2878
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2879
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.5ms)
|
2880
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
2881
|
+
|
2882
|
+
UserNotifier::Mailer#notify: processed outbound mail in 38.9ms
|
2883
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2884
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2885
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2886
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:40:24.781867"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.781867"]]
|
2887
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2888
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2889
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2890
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2891
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.2ms)
|
2892
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2893
|
+
|
2894
|
+
UserNotifier::Mailer#notify: processed outbound mail in 14.5ms
|
2895
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2896
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2897
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2898
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:40:24.805877"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.805877"]]
|
2899
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2900
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2901
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2902
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2903
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
2904
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
2905
|
+
|
2906
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.0ms
|
2907
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2908
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
2909
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2910
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:40:24.829115"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.829115"]]
|
2911
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2912
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2913
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2914
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2915
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2916
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2917
|
+
|
2918
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
|
2919
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2920
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2921
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2922
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:40:24.849708"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.849708"]]
|
2923
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2924
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2925
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2926
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2927
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2928
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2929
|
+
|
2930
|
+
UserNotifier::Mailer#notify: processed outbound mail in 61.3ms
|
2931
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2932
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2933
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
2934
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:41:32.003784"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.003784"]]
|
2935
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
2936
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2937
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2938
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2939
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
|
2940
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
2941
|
+
|
2942
|
+
UserNotifier::Mailer#notify: processed outbound mail in 48.8ms
|
2943
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
2944
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2945
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2946
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:41:32.088140"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.088140"]]
|
2947
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2948
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2949
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2950
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2951
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2952
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2953
|
+
|
2954
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
|
2955
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2956
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2957
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2958
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:41:32.107288"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.107288"]]
|
2959
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2960
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2961
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2962
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2963
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
2964
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2965
|
+
|
2966
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
|
2967
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2968
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2969
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2970
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:41:32.126411"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.126411"]]
|
2971
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2972
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2973
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
2974
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2975
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
2976
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
2977
|
+
|
2978
|
+
UserNotifier::Mailer#notify: processed outbound mail in 14.0ms
|
2979
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2980
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2981
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2982
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:41:32.148301"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.148301"]]
|
2983
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2984
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2985
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2986
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2987
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.6ms)
|
2988
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
2989
|
+
|
2990
|
+
UserNotifier::Mailer#notify: processed outbound mail in 27.5ms
|
2991
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
2992
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2993
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2994
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:41:32.183807"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.183807"]]
|
2995
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2996
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2997
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
2998
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2999
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3000
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3001
|
+
|
3002
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
|
3003
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3004
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3005
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3006
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:41:32.204093"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.204093"]]
|
3007
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3008
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3009
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3010
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3011
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3012
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3013
|
+
|
3014
|
+
UserNotifier::Mailer#notify: processed outbound mail in 56.6ms
|
3015
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3016
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3017
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3018
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:03.411996"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.411996"]]
|
3019
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3020
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3021
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3022
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3023
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.6ms)
|
3024
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (1.3ms)
|
3025
|
+
|
3026
|
+
UserNotifier::Mailer#notify: processed outbound mail in 46.9ms
|
3027
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
3028
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3029
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3030
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:03.492803"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.492803"]]
|
3031
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3032
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3033
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3034
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3035
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3036
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.9ms)
|
3037
|
+
|
3038
|
+
UserNotifier::Mailer#notify: processed outbound mail in 10.5ms
|
3039
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
3040
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3041
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3042
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:03.510452"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.510452"]]
|
3043
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3044
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3045
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3046
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3047
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3048
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (1.0ms)
|
3049
|
+
|
3050
|
+
UserNotifier::Mailer#notify: processed outbound mail in 10.6ms
|
3051
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3052
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3053
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3054
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:03.528688"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.528688"]]
|
3055
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3056
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3057
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3058
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3059
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
3060
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
3061
|
+
|
3062
|
+
UserNotifier::Mailer#notify: processed outbound mail in 30.9ms
|
3063
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3064
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3065
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3066
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:03.568071"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.568071"]]
|
3067
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3068
|
+
[1m[36m (1.4ms)[0m [1mSAVEPOINT active_record_1[0m
|
3069
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3070
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3071
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3072
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3073
|
+
|
3074
|
+
UserNotifier::Mailer#notify: processed outbound mail in 15.1ms
|
3075
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
3076
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3077
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3078
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:03.593652"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.593652"]]
|
3079
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3080
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3081
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3082
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3083
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3084
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (1.2ms)
|
3085
|
+
|
3086
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
|
3087
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3088
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3089
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3090
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:03.613134"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.613134"]]
|
3091
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3092
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3093
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3094
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3095
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3096
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (1.2ms)
|
3097
|
+
|
3098
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
|
3099
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3100
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3101
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3102
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:14.471942"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.471942"]]
|
3103
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3104
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3105
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3106
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3107
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.6ms)
|
3108
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3109
|
+
|
3110
|
+
UserNotifier::Mailer#notify: processed outbound mail in 47.2ms
|
3111
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
3112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3113
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3114
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:14.550036"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.550036"]]
|
3115
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3116
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3117
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3118
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3119
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3120
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3121
|
+
|
3122
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.7ms
|
3123
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3125
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3126
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:14.569234"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.569234"]]
|
3127
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3128
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3129
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3130
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3131
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3132
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3133
|
+
|
3134
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
|
3135
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3136
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3137
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3138
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:14.588499"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.588499"]]
|
3139
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3140
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3141
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3142
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3143
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3144
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3145
|
+
|
3146
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.5ms
|
3147
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3148
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3149
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3150
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:14.608903"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.608903"]]
|
3151
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3152
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3153
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3154
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3155
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3156
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3157
|
+
|
3158
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
|
3159
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3160
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3161
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3162
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:14.629290"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.629290"]]
|
3163
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3164
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3165
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3166
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3167
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
3168
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
3169
|
+
|
3170
|
+
UserNotifier::Mailer#notify: processed outbound mail in 26.4ms
|
3171
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3173
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3174
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:14.664244"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.664244"]]
|
3175
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3176
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3177
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3178
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3179
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3180
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3181
|
+
|
3182
|
+
UserNotifier::Mailer#notify: processed outbound mail in 54.9ms
|
3183
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3184
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3185
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3186
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:32.519347"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.519347"]]
|
3187
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3188
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3189
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3190
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3191
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.8ms)
|
3192
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3193
|
+
|
3194
|
+
UserNotifier::Mailer#notify: processed outbound mail in 47.9ms
|
3195
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
3196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3197
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3198
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:32.600963"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.600963"]]
|
3199
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3200
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3201
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3202
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3203
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
3204
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
3205
|
+
|
3206
|
+
UserNotifier::Mailer#notify: processed outbound mail in 24.1ms
|
3207
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3209
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3210
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:32.632888"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.632888"]]
|
3211
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3212
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3213
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3214
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3215
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3216
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3217
|
+
|
3218
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.8ms
|
3219
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3220
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3221
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3222
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:32.654469"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.654469"]]
|
3223
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3224
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3225
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3226
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3227
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3228
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3229
|
+
|
3230
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
|
3231
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3232
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3233
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3234
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:32.674874"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.674874"]]
|
3235
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3236
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3237
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3238
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3239
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3240
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.2ms)
|
3241
|
+
|
3242
|
+
UserNotifier::Mailer#notify: processed outbound mail in 14.1ms
|
3243
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3244
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3245
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3246
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:32.697543"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.697543"]]
|
3247
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3248
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3249
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3250
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3251
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3252
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3253
|
+
|
3254
|
+
UserNotifier::Mailer#notify: processed outbound mail in 14.7ms
|
3255
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3256
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3257
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3258
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:42:32.722172"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.722172"]]
|
3259
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3261
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3262
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3263
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3264
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3265
|
+
|
3266
|
+
UserNotifier::Mailer#notify: processed outbound mail in 61.9ms
|
3267
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3268
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3269
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3270
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:43:17.177020"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.177020"]]
|
3271
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3272
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3273
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3274
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3275
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
|
3276
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3277
|
+
|
3278
|
+
UserNotifier::Mailer#notify: processed outbound mail in 48.2ms
|
3279
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
3280
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3281
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3282
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:43:17.259735"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.259735"]]
|
3283
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3284
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3285
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3286
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3287
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3288
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3289
|
+
|
3290
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.7ms
|
3291
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3292
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3293
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3294
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:43:17.280741"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.280741"]]
|
3295
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3296
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3297
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3298
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3299
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3300
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3301
|
+
|
3302
|
+
UserNotifier::Mailer#notify: processed outbound mail in 16.0ms
|
3303
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
3304
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3305
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3306
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:43:17.306423"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.306423"]]
|
3307
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3308
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3309
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3310
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3311
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3312
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3313
|
+
|
3314
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.3ms
|
3315
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3316
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3317
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3318
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:43:17.330915"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.330915"]]
|
3319
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3320
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3321
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3322
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3323
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3324
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3325
|
+
|
3326
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
|
3327
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
3328
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3329
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3330
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:43:17.352401"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.352401"]]
|
3331
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3332
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3333
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3334
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3335
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.6ms)
|
3336
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.6ms)
|
3337
|
+
|
3338
|
+
UserNotifier::Mailer#notify: processed outbound mail in 40.4ms
|
3339
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3340
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3341
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3342
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:43:17.406311"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.406311"]]
|
3343
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3344
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3345
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3346
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3347
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.2ms)
|
3348
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3349
|
+
|
3350
|
+
UserNotifier::Mailer#notify: processed outbound mail in 74.0ms
|
3351
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
3352
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3353
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3354
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:44:42.499300"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.499300"]]
|
3355
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3356
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3357
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3358
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3359
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (1.7ms)
|
3360
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
3361
|
+
|
3362
|
+
UserNotifier::Mailer#notify: processed outbound mail in 45.3ms
|
3363
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
3364
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3365
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3366
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:44:42.576155"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.576155"]]
|
3367
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3368
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3369
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3370
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3371
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3372
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3373
|
+
|
3374
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
|
3375
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3376
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3377
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3378
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:44:42.596043"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.596043"]]
|
3379
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3380
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3381
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3382
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3383
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.6ms)
|
3384
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3385
|
+
|
3386
|
+
UserNotifier::Mailer#notify: processed outbound mail in 66.9ms
|
3387
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3388
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3389
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3390
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:44:42.670694"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.670694"]]
|
3391
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3392
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3393
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3394
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3395
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3396
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3397
|
+
|
3398
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.1ms
|
3399
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
3400
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3401
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3402
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:44:42.689094"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.689094"]]
|
3403
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3404
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3405
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3406
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3407
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3408
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3409
|
+
|
3410
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
|
3411
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
3412
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3413
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3414
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:44:42.708604"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.708604"]]
|
3415
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3416
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3417
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3418
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3419
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3420
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3421
|
+
|
3422
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
|
3423
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3424
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3425
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3426
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:44:42.728246"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.728246"]]
|
3427
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3428
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3429
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3430
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3431
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3432
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3433
|
+
|
3434
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
|
3435
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3436
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3437
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3438
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:03.878075"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:03.878075"]]
|
3439
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3440
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
3441
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3442
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3443
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.8ms)
|
3444
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3445
|
+
|
3446
|
+
UserNotifier::Mailer#notify: processed outbound mail in 46.0ms
|
3447
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
3448
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3449
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3450
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:03.958816"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:03.958816"]]
|
3451
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3452
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3453
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3454
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3455
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3456
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3457
|
+
|
3458
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
|
3459
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3460
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
3461
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3462
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:03.978059"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:03.978059"]]
|
3463
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3464
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3465
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3466
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3467
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3468
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3469
|
+
|
3470
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
|
3471
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3472
|
+
[1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
3473
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3474
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:03.999259"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:03.999259"]]
|
3475
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3476
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
3477
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3478
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3479
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.6ms)
|
3480
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
3481
|
+
|
3482
|
+
UserNotifier::Mailer#notify: processed outbound mail in 25.5ms
|
3483
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3484
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3485
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3486
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:04.033285"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:04.033285"]]
|
3487
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3488
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3489
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3490
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3491
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3492
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3493
|
+
|
3494
|
+
UserNotifier::Mailer#notify: processed outbound mail in 15.5ms
|
3495
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3496
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3497
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3498
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:04.056979"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:04.056979"]]
|
3499
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3500
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3501
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3502
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3503
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3504
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3505
|
+
|
3506
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.0ms
|
3507
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3508
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3509
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3510
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:04.077811"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:04.077811"]]
|
3511
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3512
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3513
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3514
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3515
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3516
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3517
|
+
|
3518
|
+
UserNotifier::Mailer#notify: processed outbound mail in 60.3ms
|
3519
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3520
|
+
[1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
3521
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3522
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:42.132814"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.132814"]]
|
3523
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3524
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
3525
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3526
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3527
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
|
3528
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3529
|
+
|
3530
|
+
UserNotifier::Mailer#notify: processed outbound mail in 47.6ms
|
3531
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
3532
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3533
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3534
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:42.215445"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.215445"]]
|
3535
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3536
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3537
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3538
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3539
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3540
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3541
|
+
|
3542
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
|
3543
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3544
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3545
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3546
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:42.234466"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.234466"]]
|
3547
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3548
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3549
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3550
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3551
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3552
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3553
|
+
|
3554
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
|
3555
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
3556
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3557
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3558
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:42.255226"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.255226"]]
|
3559
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3560
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3561
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3562
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3563
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
3564
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
3565
|
+
|
3566
|
+
UserNotifier::Mailer#notify: processed outbound mail in 25.5ms
|
3567
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3568
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3569
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3570
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:42.289634"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.289634"]]
|
3571
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3572
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3573
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3574
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3575
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3576
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3577
|
+
|
3578
|
+
UserNotifier::Mailer#notify: processed outbound mail in 14.0ms
|
3579
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3580
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3581
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3582
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:42.312651"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.312651"]]
|
3583
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3584
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3585
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3586
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3587
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3588
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3589
|
+
|
3590
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
|
3591
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3592
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3593
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3594
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:42.333592"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.333592"]]
|
3595
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3596
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3597
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3598
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3599
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3600
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3601
|
+
|
3602
|
+
UserNotifier::Mailer#notify: processed outbound mail in 58.0ms
|
3603
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3604
|
+
[1m[36m (0.8ms)[0m [1mbegin transaction[0m
|
3605
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3606
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:56.854587"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:56.854587"]]
|
3607
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3608
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3609
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3610
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3611
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.6ms)
|
3612
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3613
|
+
|
3614
|
+
UserNotifier::Mailer#notify: processed outbound mail in 47.3ms
|
3615
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
3616
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3617
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3618
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:56.933121"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:56.933121"]]
|
3619
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3620
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3621
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3622
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3623
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3624
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3625
|
+
|
3626
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.2ms
|
3627
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3628
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3629
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3630
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:56.952183"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:56.952183"]]
|
3631
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3632
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3633
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3634
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3635
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
3636
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
3637
|
+
|
3638
|
+
UserNotifier::Mailer#notify: processed outbound mail in 26.1ms
|
3639
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3640
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3641
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3642
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:56.985165"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:56.985165"]]
|
3643
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3644
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3645
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3646
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3647
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3648
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3649
|
+
|
3650
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
|
3651
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3652
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3653
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3654
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:57.004621"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:57.004621"]]
|
3655
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3656
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3657
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3658
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3659
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3660
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3661
|
+
|
3662
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
|
3663
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3664
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3665
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3666
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:57.024353"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:57.024353"]]
|
3667
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3668
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3669
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3670
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3671
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3672
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3673
|
+
|
3674
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.9ms
|
3675
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3676
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3677
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3678
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:45:57.045018"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:57.045018"]]
|
3679
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3680
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3681
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3682
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3683
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3684
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3685
|
+
|
3686
|
+
UserNotifier::Mailer#notify: processed outbound mail in 54.2ms
|
3687
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3688
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3689
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3690
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:34.907503"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:34.907503"]]
|
3691
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3692
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3693
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3694
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3695
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
|
3696
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3697
|
+
|
3698
|
+
UserNotifier::Mailer#notify: processed outbound mail in 47.4ms
|
3699
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
3700
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3701
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3702
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:34.989114"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:34.989114"]]
|
3703
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3704
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3705
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3706
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3707
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3708
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3709
|
+
|
3710
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
|
3711
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3712
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3713
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3714
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:35.008060"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.008060"]]
|
3715
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3716
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3717
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3718
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3719
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
3720
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.7ms)
|
3721
|
+
|
3722
|
+
UserNotifier::Mailer#notify: processed outbound mail in 26.3ms
|
3723
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3724
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3725
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3726
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:35.042312"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.042312"]]
|
3727
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3728
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3729
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3730
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3731
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3732
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3733
|
+
|
3734
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
|
3735
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3736
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
3737
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3738
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:35.063118"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.063118"]]
|
3739
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3740
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3741
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3742
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3743
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.0ms)
|
3744
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.0ms)
|
3745
|
+
|
3746
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.0ms
|
3747
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
3748
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3749
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3750
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:35.083848"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.083848"]]
|
3751
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3752
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3753
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3754
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3755
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3756
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3757
|
+
|
3758
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.9ms
|
3759
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3760
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3761
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3762
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:35.106082"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.106082"]]
|
3763
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3764
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
3765
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3766
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3767
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3768
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3769
|
+
|
3770
|
+
UserNotifier::Mailer#notify: processed outbound mail in 63.1ms
|
3771
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
3772
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3773
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3774
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:35.177142"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.177142"]]
|
3775
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3776
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3777
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3778
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3779
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3780
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3781
|
+
|
3782
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.7ms
|
3783
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3784
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3785
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3786
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:54.082674"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.082674"]]
|
3787
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
3788
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3789
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3790
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3791
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.8ms)
|
3792
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3793
|
+
|
3794
|
+
UserNotifier::Mailer#notify: processed outbound mail in 44.5ms
|
3795
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
3796
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3797
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3798
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:54.158162"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.158162"]]
|
3799
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3800
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3801
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3802
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3803
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3804
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3805
|
+
|
3806
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
|
3807
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3808
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3809
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3810
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:54.176768"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.176768"]]
|
3811
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
3812
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3813
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3814
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3815
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
3816
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
3817
|
+
|
3818
|
+
UserNotifier::Mailer#notify: processed outbound mail in 27.5ms
|
3819
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3820
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3821
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3822
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:54.212393"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.212393"]]
|
3823
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3824
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3825
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3826
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3827
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3828
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3829
|
+
|
3830
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
|
3831
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3832
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3833
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3834
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:54.232409"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.232409"]]
|
3835
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3836
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3837
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3838
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3839
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3840
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.2ms)
|
3841
|
+
|
3842
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
|
3843
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3844
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3845
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3846
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:54.252485"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.252485"]]
|
3847
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3848
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3849
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3850
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3851
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3852
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
3853
|
+
|
3854
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
|
3855
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3856
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3857
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3858
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:46:54.272918"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.272918"]]
|
3859
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3860
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3861
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3862
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3863
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
3864
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3865
|
+
|
3866
|
+
UserNotifier::Mailer#notify: processed outbound mail in 54.8ms
|
3867
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3868
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3869
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3870
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:47:36.872859"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:36.872859"]]
|
3871
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3872
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3873
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3874
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3875
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
|
3876
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
3877
|
+
|
3878
|
+
UserNotifier::Mailer#notify: processed outbound mail in 45.0ms
|
3879
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
3880
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3881
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3882
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:47:36.950212"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:36.950212"]]
|
3883
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3884
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3885
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3886
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3887
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3888
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3889
|
+
|
3890
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
|
3891
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3892
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3893
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3894
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:47:36.970006"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:36.970006"]]
|
3895
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3896
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3897
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3898
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3899
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3900
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3901
|
+
|
3902
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
|
3903
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3904
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3905
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3906
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:47:36.989443"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:36.989443"]]
|
3907
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3908
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3909
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3910
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3911
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3912
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3913
|
+
|
3914
|
+
UserNotifier::Mailer#notify: processed outbound mail in 13.2ms
|
3915
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
3916
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3917
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3918
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:47:37.009899"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:37.009899"]]
|
3919
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3920
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3921
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3922
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3923
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
3924
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
3925
|
+
|
3926
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
|
3927
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3928
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3929
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3930
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:47:37.030279"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:37.030279"]]
|
3931
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3932
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3933
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3934
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3935
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
3936
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
3937
|
+
|
3938
|
+
UserNotifier::Mailer#notify: processed outbound mail in 24.3ms
|
3939
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3940
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3941
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3942
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-10-29 15:47:37.062341"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:37.062341"]]
|
3943
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
3944
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3945
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
3946
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3947
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
3948
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
3949
|
+
|
3950
|
+
UserNotifier::Mailer#notify: processed outbound mail in 54.3ms
|
3951
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
3952
|
+
[1m[36m (53.6ms)[0m [1mbegin transaction[0m
|
3953
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
3954
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:13.737362"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.737362"]]
|
3955
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3956
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3957
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.756879"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.756879"], ["user_id", 1]]
|
3958
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3959
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3960
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3961
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3962
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
3963
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3964
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3965
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:13.897564"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.897564"]]
|
3966
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3967
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3968
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:43:13.899642"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.899642"], ["user_id", 1]]
|
3969
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3970
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3971
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3972
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3973
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3974
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3975
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3976
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:13.906547"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.906547"]]
|
3977
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3978
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3979
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.908432"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.908432"], ["user_id", 1]]
|
3980
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3981
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3982
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3983
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3984
|
+
[1m[36mUserNotification Load (0.2ms)[0m [1mSELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1[0m
|
3985
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3986
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3987
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3988
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:13.942540"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.942540"]]
|
3989
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3990
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3991
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.945247"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.945247"], ["user_id", 1]]
|
3992
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3993
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3994
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
3995
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3996
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
3997
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3998
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3999
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:13.964967"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.964967"]]
|
4000
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4001
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4002
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:43:13.966903"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.966903"], ["user_id", 1]]
|
4003
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4004
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4005
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4006
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4007
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4008
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4009
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4010
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:13.983748"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.983748"]]
|
4011
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4012
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4013
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.986102"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.986102"], ["user_id", 1]]
|
4014
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4015
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4016
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4017
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4018
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
4019
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4020
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4021
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.034201"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.034201"]]
|
4022
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4023
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4024
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.036432"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.036432"], ["user_id", 1]]
|
4025
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4026
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4027
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4028
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4029
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4030
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4031
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4032
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.044118"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.044118"]]
|
4033
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4034
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4035
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.045962"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.045962"], ["user_id", 1]]
|
4036
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4037
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4038
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4039
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4040
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.050793"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.050793"]]
|
4041
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4042
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4043
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.052661"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.052661"], ["user_id", 1]]
|
4044
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4045
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4046
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4047
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4048
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
4049
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4050
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4051
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.058893"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.058893"]]
|
4052
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4053
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4054
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.060704"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.060704"], ["user_id", 1]]
|
4055
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4056
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4057
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4058
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4059
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'
|
4060
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications"[0m
|
4061
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4062
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4063
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4064
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.074053"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.074053"]]
|
4065
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4066
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4067
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.075962"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.075962"], ["user_id", 1]]
|
4068
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4069
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4070
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4071
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4072
|
+
[1m[36mUserNotification Load (0.1ms)[0m [1mSELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1[0m
|
4073
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4074
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4075
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4076
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.082447"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.082447"]]
|
4077
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4078
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4079
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.084365"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.084365"], ["user_id", 1]]
|
4080
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4081
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4082
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4083
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4084
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'[0m
|
4085
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4086
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
|
4087
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4088
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications"[0m
|
4089
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4090
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4091
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4092
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4093
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4094
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4095
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4096
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4097
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4098
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4099
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4100
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4101
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4102
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4103
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4104
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4105
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4106
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4107
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4108
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4109
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4110
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4111
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4113
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4114
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4115
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4116
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.104941"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.104941"]]
|
4117
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4118
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4119
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4120
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4121
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (3.5ms)
|
4122
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
|
4123
|
+
|
4124
|
+
UserNotifier::Mailer#notify: processed outbound mail in 215.9ms
|
4125
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4127
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4128
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.328899"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.328899"]]
|
4129
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4130
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4131
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4132
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4133
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4134
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
4135
|
+
|
4136
|
+
UserNotifier::Mailer#notify: processed outbound mail in 10.9ms
|
4137
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4138
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4139
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4140
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.346657"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.346657"]]
|
4141
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4142
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4143
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4144
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4145
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
4146
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
4147
|
+
|
4148
|
+
UserNotifier::Mailer#notify: processed outbound mail in 10.7ms
|
4149
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
4150
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4151
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4152
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.365301"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.365301"]]
|
4153
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4154
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4155
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
4156
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4157
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.8ms)
|
4158
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
|
4159
|
+
|
4160
|
+
UserNotifier::Mailer#notify: processed outbound mail in 59.8ms
|
4161
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4162
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4163
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4164
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.432878"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.432878"]]
|
4165
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4166
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4167
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
4168
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4169
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
4170
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
4171
|
+
|
4172
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.2ms
|
4173
|
+
[1m[35m (14.4ms)[0m rollback transaction
|
4174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4175
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4176
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.471745"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.471745"]]
|
4177
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4178
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4179
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4180
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4181
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4182
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
4183
|
+
|
4184
|
+
UserNotifier::Mailer#notify: processed outbound mail in 16.1ms
|
4185
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4186
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4187
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4188
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:43:14.496356"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.496356"]]
|
4189
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4190
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4191
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4192
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4193
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
4194
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
4195
|
+
|
4196
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
|
4197
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4198
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
4199
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4200
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.765764"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.765764"]]
|
4201
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4202
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4203
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.776944"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.776944"], ["user_id", 1]]
|
4204
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4205
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4206
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4207
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4208
|
+
[1m[36mUserNotification Load (0.2ms)[0m [1mSELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1[0m
|
4209
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
4210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4211
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4212
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.806720"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.806720"]]
|
4213
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4214
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4215
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.809100"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.809100"], ["user_id", 1]]
|
4216
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4217
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4218
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4219
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4220
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
4221
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4222
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4223
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.818361"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.818361"]]
|
4224
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4225
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4226
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.820312"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.820312"], ["user_id", 1]]
|
4227
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4228
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4229
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4230
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4231
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4232
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4233
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4234
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.841126"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.841126"]]
|
4235
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4236
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4237
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.843119"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.843119"], ["user_id", 1]]
|
4238
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4239
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4240
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4241
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4242
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
4243
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4244
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4245
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.850051"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.850051"]]
|
4246
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4247
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4248
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.852398"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.852398"], ["user_id", 1]]
|
4249
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4250
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4251
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4252
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4253
|
+
[1m[35m (0.7ms)[0m SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'
|
4254
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications"[0m
|
4255
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
4256
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4257
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4258
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.866343"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.866343"]]
|
4259
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4261
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.869504"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.869504"], ["user_id", 1]]
|
4262
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4263
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4264
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4265
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4266
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'[0m
|
4267
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4268
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
|
4269
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4270
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications"[0m
|
4271
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4272
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4273
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4274
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.924644"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.924644"]]
|
4275
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4276
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4277
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.926595"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.926595"], ["user_id", 1]]
|
4278
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4279
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4280
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4281
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4282
|
+
[1m[36mUserNotification Load (0.1ms)[0m [1mSELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1[0m
|
4283
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4284
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4285
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4286
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.933753"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.933753"]]
|
4287
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4288
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4289
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.935859"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.935859"], ["user_id", 1]]
|
4290
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4291
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4292
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4293
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4294
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
4295
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4296
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4297
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.952811"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.952811"]]
|
4298
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4299
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4300
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.954730"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.954730"], ["user_id", 1]]
|
4301
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4302
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4303
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4304
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4305
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
4306
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4307
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4308
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.961047"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.961047"]]
|
4309
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4310
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4311
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.963100"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.963100"], ["user_id", 1]]
|
4312
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4313
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4314
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4315
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4316
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
4317
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4318
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4319
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.969203"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.969203"]]
|
4320
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4321
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4322
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.971430"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.971430"], ["user_id", 1]]
|
4323
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4324
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4325
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4326
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4327
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4328
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4329
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4330
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.979284"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.979284"]]
|
4331
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4332
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
4333
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.981715"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.981715"], ["user_id", 1]]
|
4334
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4335
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4336
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4337
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4338
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:08.988006"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.988006"]]
|
4339
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4340
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4341
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4342
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4343
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (2.1ms)
|
4344
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.6ms)
|
4345
|
+
|
4346
|
+
UserNotifier::Mailer#notify: processed outbound mail in 51.1ms
|
4347
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4348
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4349
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4350
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:09.047171"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.047171"]]
|
4351
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4352
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4353
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4354
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4355
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4356
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
4357
|
+
|
4358
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
|
4359
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4360
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4361
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4362
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:09.066295"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.066295"]]
|
4363
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4364
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4365
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4366
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4367
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
4368
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4369
|
+
|
4370
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.0ms
|
4371
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4372
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4373
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4374
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:09.084166"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.084166"]]
|
4375
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4376
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4377
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
4378
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4379
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.7ms)
|
4380
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.4ms)
|
4381
|
+
|
4382
|
+
UserNotifier::Mailer#notify: processed outbound mail in 27.4ms
|
4383
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4384
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4385
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4386
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:09.118351"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.118351"]]
|
4387
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4388
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4389
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
4390
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4391
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
4392
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
4393
|
+
|
4394
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.1ms
|
4395
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4396
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4397
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4398
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:09.136736"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.136736"]]
|
4399
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4400
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4401
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4402
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4403
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4404
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
4405
|
+
|
4406
|
+
UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
|
4407
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4408
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4409
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4410
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:45:09.156328"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.156328"]]
|
4411
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4412
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4413
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4414
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4415
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4416
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4417
|
+
|
4418
|
+
UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
|
4419
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4420
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4421
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4422
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4423
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4424
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4425
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4426
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4427
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4428
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4429
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4430
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4431
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4432
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4433
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4434
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4435
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4436
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4437
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4438
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4439
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4440
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4441
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4442
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4443
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
4444
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
4445
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4446
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4447
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4448
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4449
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4450
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4451
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4452
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4453
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4454
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4455
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4456
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4457
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4458
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4459
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4460
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4461
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4462
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4463
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4464
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4465
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4466
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4467
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4468
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4469
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4470
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:27.981351"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:27.981351"]]
|
4471
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4472
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4473
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4474
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4475
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.5ms)
|
4476
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.4ms)
|
4477
|
+
|
4478
|
+
UserNotifier::Mailer#notify: processed outbound mail in 656.8ms
|
4479
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4480
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4481
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4482
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.685164"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.685164"]]
|
4483
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4484
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4485
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
4486
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4487
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
4488
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.4ms)
|
4489
|
+
|
4490
|
+
UserNotifier::Mailer#notify: processed outbound mail in 18.1ms
|
4491
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4492
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4493
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4494
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.710674"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.710674"]]
|
4495
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4496
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4497
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
4498
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4499
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
4500
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.0ms)
|
4501
|
+
|
4502
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
|
4503
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4504
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4505
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4506
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.720717"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.720717"]]
|
4507
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4508
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4509
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4510
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4511
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4512
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
4513
|
+
|
4514
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.7ms
|
4515
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4516
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
4517
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4518
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.732069"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.732069"]]
|
4519
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4520
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4521
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4522
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4523
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4524
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4525
|
+
|
4526
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
|
4527
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4528
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4529
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4530
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.742815"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.742815"]]
|
4531
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4532
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4533
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4534
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4535
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
4536
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4537
|
+
|
4538
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
|
4539
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4540
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4541
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4542
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.757813"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.757813"]]
|
4543
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4544
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4545
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4546
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4547
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4548
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4549
|
+
|
4550
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.4ms
|
4551
|
+
[1m[35m (2.6ms)[0m rollback transaction
|
4552
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4553
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4554
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.778147"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.778147"]]
|
4555
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4556
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4557
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.785926"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.785926"], ["user_id", 1]]
|
4558
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4559
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
4560
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4561
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4562
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.794219"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.794219"]]
|
4563
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4564
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4565
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.796547"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.796547"], ["user_id", 1]]
|
4566
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4567
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4568
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4569
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4570
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
4571
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4572
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4573
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.803167"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.803167"]]
|
4574
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4575
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4576
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.805160"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.805160"], ["user_id", 1]]
|
4577
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4578
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4579
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4580
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4581
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4583
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4584
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.822089"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.822089"]]
|
4585
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4586
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4587
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.824699"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.824699"], ["user_id", 1]]
|
4588
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4589
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4590
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4591
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4592
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
4593
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4594
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4595
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.833809"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.833809"]]
|
4596
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4597
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4598
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.836682"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.836682"], ["user_id", 1]]
|
4599
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4600
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4601
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4602
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4603
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4604
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4605
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4606
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.844789"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.844789"]]
|
4607
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4608
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4609
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.846998"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.846998"], ["user_id", 1]]
|
4610
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4611
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4612
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4613
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4614
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
4615
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4616
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4617
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.898941"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.898941"]]
|
4618
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4619
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4620
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.901102"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.901102"], ["user_id", 1]]
|
4621
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4622
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4623
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4624
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4625
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4626
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4627
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4628
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.907985"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.907985"]]
|
4629
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4630
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4631
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.910009"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.910009"], ["user_id", 1]]
|
4632
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4633
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4634
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4635
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4636
|
+
[1m[36mUserNotification Load (0.2ms)[0m [1mSELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1[0m
|
4637
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
4638
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4639
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4640
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.921999"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.921999"]]
|
4641
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4642
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4643
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.924055"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.924055"], ["user_id", 1]]
|
4644
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4645
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4646
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4647
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4648
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'[0m
|
4649
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4650
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
|
4651
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4652
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications"[0m
|
4653
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
4654
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4655
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4656
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.938138"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.938138"]]
|
4657
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4658
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4659
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.940539"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.940539"], ["user_id", 1]]
|
4660
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4661
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4662
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4663
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4664
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'[0m
|
4665
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "user_notifications"
|
4666
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
4667
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4668
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4669
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.950090"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.950090"]]
|
4670
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4671
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4672
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.952181"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.952181"], ["user_id", 1]]
|
4673
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4674
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4675
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4676
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4677
|
+
[1m[35mUserNotification Load (0.1ms)[0m SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
|
4678
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
4679
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4680
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4681
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.960272"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.960272"]]
|
4682
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4683
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4684
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:47:28.962215"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.962215"], ["user_id", 1]]
|
4685
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4686
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4687
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4688
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4689
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4690
|
+
[1m[36m (0.8ms)[0m [1mbegin transaction[0m
|
4691
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4692
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.492229"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.492229"]]
|
4693
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4694
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4695
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4696
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4697
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
|
4698
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.4ms)
|
4699
|
+
|
4700
|
+
UserNotifier::Mailer#notify: processed outbound mail in 297.0ms
|
4701
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
4702
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4703
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4704
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.821253"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.821253"]]
|
4705
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4706
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4707
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4708
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4709
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4710
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4711
|
+
|
4712
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.9ms
|
4713
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4714
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4715
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4716
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.835692"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.835692"]]
|
4717
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4718
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4719
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4720
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4721
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4722
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4723
|
+
|
4724
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.5ms
|
4725
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4726
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4727
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4728
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.846443"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.846443"]]
|
4729
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4730
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4731
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4732
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4733
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4734
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4735
|
+
|
4736
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
|
4737
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4739
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4740
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.855988"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.855988"]]
|
4741
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4742
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4743
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4744
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4745
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4746
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
|
4747
|
+
|
4748
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.5ms
|
4749
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
4750
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4751
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4752
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.866271"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.866271"]]
|
4753
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4754
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4755
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
4756
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4757
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
|
4758
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.4ms)
|
4759
|
+
|
4760
|
+
UserNotifier::Mailer#notify: processed outbound mail in 14.5ms
|
4761
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4762
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4763
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4764
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.894646"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.894646"]]
|
4765
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4766
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4767
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
4768
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4769
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
4770
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.0ms)
|
4771
|
+
|
4772
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
|
4773
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
4774
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4775
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
4776
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.913332"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.913332"]]
|
4777
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4778
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4779
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:10.920802"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.920802"], ["user_id", 1]]
|
4780
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4781
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4782
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4783
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4784
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
4785
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4786
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4787
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.939541"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.939541"]]
|
4788
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4789
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4790
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.941777"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.941777"], ["user_id", 1]]
|
4791
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4792
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4793
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4794
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4795
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4796
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4797
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4798
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.948878"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.948878"]]
|
4799
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4800
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4801
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:10.950905"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.950905"], ["user_id", 1]]
|
4802
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4803
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4804
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4805
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4806
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'[0m
|
4807
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4808
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
|
4809
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4810
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications"[0m
|
4811
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
4812
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4813
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4814
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.965975"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.965975"]]
|
4815
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4816
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4817
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:10.967955"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.967955"], ["user_id", 1]]
|
4818
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4819
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4820
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4821
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4822
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'[0m
|
4823
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "user_notifications"
|
4824
|
+
[1m[36m (1.2ms)[0m [1mrollback transaction[0m
|
4825
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4826
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4827
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.976363"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.976363"]]
|
4828
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4829
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4830
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.978706"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.978706"], ["user_id", 1]]
|
4831
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4832
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4833
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4834
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4835
|
+
[1m[35mUserNotification Load (0.2ms)[0m SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
|
4836
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
4837
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4838
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4839
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.991717"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.991717"]]
|
4840
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4841
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4842
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:10.993802"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.993802"], ["user_id", 1]]
|
4843
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4844
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4845
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4846
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4847
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4848
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4849
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4850
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:11.000135"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.000135"]]
|
4851
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4852
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4853
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:11.002066"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.002066"], ["user_id", 1]]
|
4854
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4855
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4856
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4857
|
+
[1m[35m (0.4ms)[0m RELEASE SAVEPOINT active_record_1
|
4858
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
4859
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4860
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4861
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.020639"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.020639"]]
|
4862
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4863
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4864
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:11.022629"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.022629"], ["user_id", 1]]
|
4865
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4866
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4867
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4868
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4869
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4870
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4871
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4872
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:11.028936"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.028936"]]
|
4873
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4874
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4875
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:11.030934"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.030934"], ["user_id", 1]]
|
4876
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4877
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4878
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
4879
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4880
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
4881
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4882
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4883
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.037294"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.037294"]]
|
4884
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4885
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4886
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:11.039197"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.039197"], ["user_id", 1]]
|
4887
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4888
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
4889
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4890
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4891
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.044739"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.044739"]]
|
4892
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4893
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4894
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:11.046666"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.046666"], ["user_id", 1]]
|
4895
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4896
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4897
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4898
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4899
|
+
[1m[35mUserNotification Load (0.1ms)[0m SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
|
4900
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
4901
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4902
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4903
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.054479"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.054479"]]
|
4904
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4905
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4906
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:11.056821"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.056821"], ["user_id", 1]]
|
4907
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4908
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4909
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4910
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4911
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
4912
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4913
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4914
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4915
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4916
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4917
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4918
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4919
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4920
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4921
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4922
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4923
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4924
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4925
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4926
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4927
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4928
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4929
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4930
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4931
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4932
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4933
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4934
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4935
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4936
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
4937
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4938
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.097580"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.097580"]]
|
4939
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4940
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4941
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4942
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4943
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (1.5ms)
|
4944
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.4ms)
|
4945
|
+
|
4946
|
+
UserNotifier::Mailer#notify: processed outbound mail in 295.4ms
|
4947
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
4948
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4949
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4950
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.422997"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.422997"]]
|
4951
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4952
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4953
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4954
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4955
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
4956
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4957
|
+
|
4958
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.4ms
|
4959
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4960
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4961
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4962
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.435411"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.435411"]]
|
4963
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4964
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4965
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4966
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4967
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
4968
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4969
|
+
|
4970
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.6ms
|
4971
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
4972
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4973
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4974
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.446400"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.446400"]]
|
4975
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4976
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4977
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
4978
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4979
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
|
4980
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
4981
|
+
|
4982
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.1ms
|
4983
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
4984
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4985
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4986
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.457021"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.457021"]]
|
4987
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4988
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4989
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
4990
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4991
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.6ms)
|
4992
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.4ms)
|
4993
|
+
|
4994
|
+
UserNotifier::Mailer#notify: processed outbound mail in 30.4ms
|
4995
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
4996
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
4997
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4998
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.505154"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.505154"]]
|
4999
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5000
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5001
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
|
5002
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5003
|
+
Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
|
5004
|
+
Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
|
5005
|
+
|
5006
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.9ms
|
5007
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
5008
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5009
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5010
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.516376"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.516376"]]
|
5011
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5012
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5013
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
5014
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5015
|
+
Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
|
5016
|
+
Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
|
5017
|
+
|
5018
|
+
UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
|
5019
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
5020
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5021
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5022
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.533661"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.533661"]]
|
5023
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5024
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5025
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.540605"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.540605"], ["user_id", 1]]
|
5026
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5027
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5028
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
5029
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5030
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
5031
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5032
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5033
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.558382"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.558382"]]
|
5034
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5035
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5036
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.560431"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.560431"], ["user_id", 1]]
|
5037
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5038
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5039
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
5040
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5041
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
5042
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5043
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5044
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.567422"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.567422"]]
|
5045
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5046
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5047
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.569536"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.569536"], ["user_id", 1]]
|
5048
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5049
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5050
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
5051
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5052
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'[0m
|
5053
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
5054
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
|
5055
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5056
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications"[0m
|
5057
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
5058
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5059
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5060
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.587157"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.587157"]]
|
5061
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5062
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5063
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.589326"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.589326"], ["user_id", 1]]
|
5064
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5065
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5066
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
5067
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5068
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'[0m
|
5069
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "user_notifications"
|
5070
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
5071
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5072
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5073
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.596665"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.596665"]]
|
5074
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5075
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5076
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.598653"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.598653"], ["user_id", 1]]
|
5077
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5078
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5079
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
5080
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5081
|
+
[1m[35mUserNotification Load (0.2ms)[0m SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
|
5082
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
5083
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5084
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5085
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.610063"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.610063"]]
|
5086
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5087
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5088
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.612366"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.612366"], ["user_id", 1]]
|
5089
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5090
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5091
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
5092
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5093
|
+
[1m[35mUserNotification Load (0.2ms)[0m SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
|
5094
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
5095
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5096
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5097
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.621507"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.621507"]]
|
5098
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5099
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5100
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.623725"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.623725"], ["user_id", 1]]
|
5101
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5102
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5103
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
5104
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5105
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
5106
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5107
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
5108
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.629977"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.629977"]]
|
5109
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5110
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5111
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.631969"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.631969"], ["user_id", 1]]
|
5112
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5113
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5114
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
|
5115
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5116
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
5117
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5118
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5119
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.638491"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.638491"]]
|
5120
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5121
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5122
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.640874"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.640874"], ["user_id", 1]]
|
5123
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5124
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5125
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
5126
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5127
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
5128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5129
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5130
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.658674"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.658674"]]
|
5131
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5132
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5133
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.661963"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.661963"], ["user_id", 1]]
|
5134
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5135
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5136
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
5137
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5138
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
5139
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5140
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5141
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.669488"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.669488"]]
|
5142
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5143
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
5144
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.671420"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.671420"], ["user_id", 1]]
|
5145
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5146
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
5147
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
|
5148
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5149
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
5150
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5151
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
5152
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-11-18 14:48:34.677766"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.677766"]]
|
5153
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
5154
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
5155
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.680153"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.680153"], ["user_id", 1]]
|
5156
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
5157
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
5158
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5159
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5160
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5161
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5162
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5163
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5164
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5165
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5166
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5167
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5168
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5169
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5170
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5171
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5173
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5175
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5177
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5178
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5179
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5181
|
+
[1m[35m (0.1ms)[0m rollback transaction
|