[DRE-commits] [ruby-diaspora-vines] 07/08: build

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Tue Jun 7 08:58:16 UTC 2016


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository ruby-diaspora-vines.

commit 9539e8cc00d77f1e66c1233754915840b4c424d8
Author: sudheesh <sudheeshshetty at gmail.com>
Date:   Fri Feb 12 09:20:32 2016 +0530

    build
---
 debian/control              |   2 +-
 debian/ruby-test-files.yaml |  63 --------------
 vines.log                   | 201 ++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 202 insertions(+), 64 deletions(-)

diff --git a/debian/control b/debian/control
index 37f1628..4432e66 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: ruby
 Priority: optional
 Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
 Uploaders: Sudheesh Shetty <sudheeshshetty at gmail.com>
-Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.6.1~)
+Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.6.1~), ruby-rails, ruby-bcrypt,ruby-em-hiredis,ruby-http-parser.rb, ruby-sqlite3
 Standards-Version: 3.9.5
 Homepage: https://github.com/diaspora/vines
 XS-Ruby-Versions: all
diff --git a/debian/ruby-test-files.yaml b/debian/ruby-test-files.yaml
deleted file mode 100644
index 3b54f8d..0000000
--- a/debian/ruby-test-files.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-- test/error_test.rb
-- test/test_helper.rb
-- test/storage/local_test.rb
-- test/storage/mock_redis.rb
-- test/storage/sql_schema.rb
-- test/storage/sql_test.rb
-- test/storage/null_test.rb
-- test/storage/storage_tests.rb
-- test/ext/nokogiri.rb
-- test/contact_test.rb
-- test/store_test.rb
-- test/cluster/sessions_test.rb
-- test/cluster/publisher_test.rb
-- test/cluster/subscriber_test.rb
-- test/config_test.rb
-- test/stream/parser_test.rb
-- test/stream/client/ready_test.rb
-- test/stream/client/auth_test.rb
-- test/stream/client/session_test.rb
-- test/stream/sasl_test.rb
-- test/stream/http/sessions_test.rb
-- test/stream/http/start_test.rb
-- test/stream/http/ready_test.rb
-- test/stream/http/auth_test.rb
-- test/stream/http/request_test.rb
-- test/stream/component/start_test.rb
-- test/stream/component/ready_test.rb
-- test/stream/component/handshake_test.rb
-- test/stream/server/start_test.rb
-- test/stream/server/ready_test.rb
-- test/stream/server/auth_test.rb
-- test/stream/server/auth_method_test.rb
-- test/stream/server/outbound/start_test.rb
-- test/stream/server/outbound/auth_restart_test.rb
-- test/stream/server/outbound/auth_external_test.rb
-- test/stream/server/outbound/auth_test.rb
-- test/stream/server/outbound/auth_dialback_result_test.rb
-- test/stream/server/outbound/authoritative_test.rb
-- test/token_bucket_test.rb
-- test/router_test.rb
-- test/user_test.rb
-- test/stanza/message_test.rb
-- test/stanza/presence/subscribe_test.rb
-- test/stanza/presence/probe_test.rb
-- test/stanza/pubsub/publish_test.rb
-- test/stanza/pubsub/delete_test.rb
-- test/stanza/pubsub/create_test.rb
-- test/stanza/pubsub/unsubscribe_test.rb
-- test/stanza/pubsub/subscribe_test.rb
-- test/stanza/iq_test.rb
-- test/stanza/iq/roster_test.rb
-- test/stanza/iq/vcard_test.rb
-- test/stanza/iq/disco_info_test.rb
-- test/stanza/iq/private_storage_test.rb
-- test/stanza/iq/session_test.rb
-- test/stanza/iq/version_test.rb
-- test/stanza/iq/disco_items_test.rb
-- test/jid_test.rb
-- test/stanza_test.rb
-- test/config/host_test.rb
-- test/config/pubsub_test.rb
-- test/kit_test.rb
diff --git a/vines.log b/vines.log
new file mode 100644
index 0000000..29554ce
--- /dev/null
+++ b/vines.log
@@ -0,0 +1,201 @@
+D, [2016-02-12T08:58:18.874851 #5510] DEBUG -- :    (163.6ms)  CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guid" varchar(255) NOT NULL, "url" text NOT NULL, "diaspora_handle" varchar(255) NOT NULL, "serialized_public_key" text NOT NULL, "owner_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "closed_account" boolean DEFAULT 'f', "fetch_status" integer DEFAULT 0) 
+D, [2016-02-12T08:58:19.008720 #5510] DEBUG -- :    (132.6ms)  CREATE UNIQUE INDEX "index_people_on_diaspora_handle" ON "people" ("diaspora_handle")
+D, [2016-02-12T08:58:19.142427 #5510] DEBUG -- :    (131.5ms)  CREATE UNIQUE INDEX "index_people_on_guid" ON "people" ("guid")
+D, [2016-02-12T08:58:19.276078 #5510] DEBUG -- :    (131.2ms)  CREATE UNIQUE INDEX "index_people_on_owner_id" ON "people" ("owner_id")
+D, [2016-02-12T08:58:19.409757 #5510] DEBUG -- :    (131.0ms)  CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "diaspora_handle" varchar(255), "first_name" varchar(127), "last_name" varchar(127), "image_url" varchar(255), "image_url_small" varchar(255), "image_url_medium" varchar(255), "birthday" date, "gender" varchar(255), "bio" text, "searchable" boolean DEFAULT 't' NOT NULL, "person_id" integer NOT NULL, "created_at" datetime NOT NULL, "upda [...]
+D, [2016-02-12T08:58:19.543422 #5510] DEBUG -- :    (132.4ms)  CREATE INDEX "index_profiles_on_full_name_and_searchable" ON "profiles" ("full_name", "searchable")
+D, [2016-02-12T08:58:19.677072 #5510] DEBUG -- :    (131.4ms)  CREATE INDEX "index_profiles_on_full_name" ON "profiles" ("full_name")
+D, [2016-02-12T08:58:19.788423 #5510] DEBUG -- :    (109.1ms)  CREATE INDEX "index_profiles_on_person_id" ON "profiles" ("person_id")
+D, [2016-02-12T08:58:19.911183 #5510] DEBUG -- :    (120.7ms)  CREATE TABLE "aspects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "user_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "contacts_visible" boolean DEFAULT 't' NOT NULL, "order_id" integer, "chat_enabled" boolean DEFAULT 'f') 
+D, [2016-02-12T08:58:20.011614 #5510] DEBUG -- :    (98.8ms)  CREATE INDEX "index_aspects_on_user_id_and_contacts_visible" ON "aspects" ("user_id", "contacts_visible")
+D, [2016-02-12T08:58:20.111981 #5510] DEBUG -- :    (98.2ms)  CREATE INDEX "index_aspects_on_user_id" ON "aspects" ("user_id")
+D, [2016-02-12T08:58:20.212416 #5510] DEBUG -- :    (98.5ms)  CREATE TABLE "aspect_memberships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "aspect_id" integer NOT NULL, "contact_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
+D, [2016-02-12T08:58:20.312687 #5510] DEBUG -- :    (98.8ms)  CREATE UNIQUE INDEX "index_aspect_memberships_on_aspect_id_and_contact_id" ON "aspect_memberships" ("aspect_id", "contact_id")
+D, [2016-02-12T08:58:20.413105 #5510] DEBUG -- :    (98.6ms)  CREATE INDEX "index_aspect_memberships_on_aspect_id" ON "aspect_memberships" ("aspect_id")
+D, [2016-02-12T08:58:20.513541 #5510] DEBUG -- :    (97.8ms)  CREATE INDEX "index_aspect_memberships_on_contact_id" ON "aspect_memberships" ("contact_id")
+D, [2016-02-12T08:58:20.636149 #5510] DEBUG -- :    (120.5ms)  CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "person_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "sharing" boolean DEFAULT 'f' NOT NULL, "receiving" boolean DEFAULT 'f' NOT NULL) 
+D, [2016-02-12T08:58:20.736539 #5510] DEBUG -- :    (98.9ms)  CREATE INDEX "index_contacts_on_person_id" ON "contacts" ("person_id")
+D, [2016-02-12T08:58:20.848111 #5510] DEBUG -- :    (109.3ms)  CREATE UNIQUE INDEX "index_contacts_on_user_id_and_person_id" ON "contacts" ("user_id", "person_id")
+D, [2016-02-12T08:58:20.959673 #5510] DEBUG -- :    (109.8ms)  CREATE TABLE "chat_contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "jid" varchar(255) NOT NULL, "name" varchar(255), "ask" varchar(128), "subscription" varchar(128) NOT NULL, "groups" text) 
+D, [2016-02-12T08:58:21.094974 #5510] DEBUG -- :    (133.9ms)  CREATE UNIQUE INDEX "index_chat_contacts_on_user_id_and_jid" ON "chat_contacts" ("user_id", "jid")
+D, [2016-02-12T08:58:21.228850 #5510] DEBUG -- :    (132.2ms)  CREATE TABLE "chat_fragments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "root" varchar(256) NOT NULL, "namespace" varchar(256) NOT NULL, "xml" text NOT NULL) 
+D, [2016-02-12T08:58:21.362527 #5510] DEBUG -- :    (132.3ms)  CREATE UNIQUE INDEX "index_chat_fragments_on_user_id" ON "chat_fragments" ("user_id")
+D, [2016-02-12T08:58:21.474061 #5510] DEBUG -- :    (109.5ms)  CREATE TABLE "chat_offline_messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "from" varchar(255) NOT NULL, "to" varchar(255) NOT NULL, "message" text NOT NULL, "created_at" datetime NOT NULL) 
+D, [2016-02-12T08:58:21.607878 #5510] DEBUG -- :    (130.4ms)  CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "serialized_private_key" text, "getting_started" boolean DEFAULT 't' NOT NULL, "disable_mail" boolean DEFAULT 'f' NOT NULL, "language" varchar(255), "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "invitation_token" varchar(60), "invitation_sent_at" datetime, "reset_pass [...]
+D, [2016-02-12T08:58:21.741424 #5510] DEBUG -- :    (132.1ms)  CREATE UNIQUE INDEX "index_users_on_authentication_token" ON "users" ("authentication_token")
+D, [2016-02-12T08:58:21.875117 #5510] DEBUG -- :    (131.8ms)  CREATE INDEX "index_users_on_email" ON "users" ("email")
+D, [2016-02-12T08:58:21.997611 #5510] DEBUG -- :    (119.9ms)  CREATE UNIQUE INDEX "index_users_on_invitation_service_and_invitation_identifier" ON "users" ("invitation_service", "invitation_identifier")
+D, [2016-02-12T08:58:22.098095 #5510] DEBUG -- :    (98.0ms)  CREATE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
+D, [2016-02-12T08:58:22.198457 #5510] DEBUG -- :    (97.1ms)  CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")
+D, [2016-02-12T08:58:22.225219 #5510] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:22.228744 #5510] DEBUG -- :   SQL (0.5ms)  INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?)  [["authentication_token", "1234"], ["created_at", 2016-02-12 03:28:22 UTC], ["email", "test at test.de"], ["encrypted_password", "$2a$10$c2G6rHjGeamQIOFI0c1/b.4mvFBw4AfOtgVrAkO1QPMuAyporj5e6"], ["updated_at", 2016-02-12 03:28:22 UTC], ["username", "test"]]
+D, [2016-02-12T08:58:22.321087 #5510] DEBUG -- :    (92.0ms)  commit transaction
+D, [2016-02-12T08:58:22.337338 #5510] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:22.339732 #5510] DEBUG -- :   SQL (1.1ms)  INSERT INTO "people" ("created_at", "diaspora_handle", "guid", "owner_id", "serialized_public_key", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:22 UTC], ["diaspora_handle", "test at local.host"], ["guid", "1697a4b0198901321e9b10e6ba921ce9"], ["owner_id", 1], ["serialized_public_key", "some pub key"], ["updated_at", 2016-02-12 03:28:22 UTC], ["url", "http://remote.host/"]]
+D, [2016-02-12T08:58:22.443613 #5510] DEBUG -- :    (103.2ms)  commit transaction
+D, [2016-02-12T08:58:22.461921 #5510] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:22.464415 #5510] DEBUG -- :   SQL (1.2ms)  INSERT INTO "profiles" ("created_at", "diaspora_handle", "first_name", "image_url", "last_name", "person_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:22 UTC], ["diaspora_handle", "test at local.host"], ["first_name", "Harry"], ["image_url", "http://path.to/image.png"], ["last_name", "Hirsch"], ["person_id", 1], ["updated_at", 2016-02-12 03:28:22 UTC]]
+D, [2016-02-12T08:58:22.566101 #5510] DEBUG -- :    (101.1ms)  commit transaction
+D, [2016-02-12T08:58:22.590992 #5510] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:22.592820 #5510] DEBUG -- :   SQL (0.5ms)  INSERT INTO "contacts" ("created_at", "person_id", "receiving", "sharing", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:22 UTC], ["person_id", 1], ["receiving", true], ["sharing", true], ["updated_at", 2016-02-12 03:28:22 UTC], ["user_id", 1]]
+D, [2016-02-12T08:58:22.688630 #5510] DEBUG -- :    (95.5ms)  commit transaction
+D, [2016-02-12T08:58:22.717678 #5510] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:22.719930 #5510] DEBUG -- :   SQL (0.9ms)  INSERT INTO "aspects" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:22 UTC], ["name", "without_chat"], ["updated_at", 2016-02-12 03:28:22 UTC], ["user_id", 1]]
+D, [2016-02-12T08:58:22.822355 #5510] DEBUG -- :    (101.8ms)  commit transaction
+D, [2016-02-12T08:58:22.831742 #5510] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:22.834692 #5510] DEBUG -- :   SQL (1.1ms)  INSERT INTO "aspect_memberships" ("aspect_id", "contact_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["aspect_id", 1], ["contact_id", 1], ["created_at", 2016-02-12 03:28:22 UTC], ["updated_at", 2016-02-12 03:28:22 UTC]]
+D, [2016-02-12T08:58:22.933775 #5510] DEBUG -- :    (98.5ms)  commit transaction
+D, [2016-02-12T08:58:22.975602 #5510] DEBUG -- :   Vines::Storage::Sql::Person Load (0.2ms)  SELECT "people".* FROM "people" WHERE "people"."diaspora_handle" = 'someone at inthe.void' LIMIT 1
+D, [2016-02-12T08:58:22.977280 #5510] DEBUG -- :   Vines::Storage::Sql::Person Load (0.4ms)  SELECT "people".* FROM "people" WHERE "people"."diaspora_handle" = 'test at local.host' LIMIT 1
+D, [2016-02-12T08:58:23.005436 #5510] DEBUG -- :   Vines::Storage::Sql::Profile Load (0.3ms)  SELECT "profiles".* FROM "profiles" WHERE "profiles"."person_id" = ? ORDER BY "profiles"."id" ASC LIMIT 1  [["person_id", 1]]
+D, [2016-02-12T08:58:23.010183 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.017173 #5510] DEBUG -- :   Vines::Storage::Sql::Person Load (0.4ms)  SELECT "people".* FROM "people" WHERE "people"."diaspora_handle" = 'test at local.host' LIMIT 1
+D, [2016-02-12T08:58:23.021585 #5510] DEBUG -- :   Vines::Storage::Sql::Profile Load (0.5ms)  SELECT "profiles".* FROM "profiles" WHERE "profiles"."person_id" = ? ORDER BY "profiles"."id" ASC LIMIT 1  [["person_id", 1]]
+D, [2016-02-12T08:58:23.027355 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.076979 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.5ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1
+D, [2016-02-12T08:58:23.093832 #5510] DEBUG -- :   Vines::Storage::Sql::Contact Load (0.3ms)  SELECT "contacts".* FROM "contacts" INNER JOIN "aspect_memberships" ON "aspect_memberships"."contact_id" = "contacts"."id" INNER JOIN "aspects" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "contacts"."user_id" = ? AND (aspects.chat_enabled = 't') GROUP BY person_id, contacts.id  [["user_id", 1]]
+D, [2016-02-12T08:58:23.095820 #5510] DEBUG -- :   Vines::Storage::Sql::ChatContact Load (0.2ms)  SELECT "chat_contacts".* FROM "chat_contacts" WHERE "chat_contacts"."user_id" = ?  [["user_id", 1]]
+D, [2016-02-12T08:58:23.200439 #5510] DEBUG -- :   SQL (104.0ms)  UPDATE "aspects" SET "name" = 'with_chat', "chat_enabled" = 't' WHERE "aspects"."id" = 1
+D, [2016-02-12T08:58:23.207448 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.7ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1
+D, [2016-02-12T08:58:23.212876 #5510] DEBUG -- :   Vines::Storage::Sql::Contact Load (0.4ms)  SELECT "contacts".* FROM "contacts" INNER JOIN "aspect_memberships" ON "aspect_memberships"."contact_id" = "contacts"."id" INNER JOIN "aspects" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "contacts"."user_id" = ? AND (aspects.chat_enabled = 't') GROUP BY person_id, contacts.id  [["user_id", 1]]
+D, [2016-02-12T08:58:23.217374 #5510] DEBUG -- :   Vines::Storage::Sql::Person Load (0.3ms)  SELECT "people".* FROM "people" WHERE "people"."id" = ? ORDER BY "people"."id" ASC LIMIT 1  [["id", 1]]
+D, [2016-02-12T08:58:23.219504 #5510] DEBUG -- :   Vines::Storage::Sql::Profile Load (0.3ms)  SELECT "profiles".* FROM "profiles" WHERE "profiles"."person_id" = ? ORDER BY "profiles"."id" ASC LIMIT 1  [["person_id", 1]]
+D, [2016-02-12T08:58:23.225305 #5510] DEBUG -- :   Vines::Storage::Sql::Aspect Load (0.3ms)  SELECT "aspects".* FROM "aspects" INNER JOIN "aspect_memberships" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "aspect_memberships"."contact_id" = ?  [["contact_id", 1]]
+D, [2016-02-12T08:58:23.227587 #5510] DEBUG -- :   Vines::Storage::Sql::ChatContact Load (0.2ms)  SELECT "chat_contacts".* FROM "chat_contacts" WHERE "chat_contacts"."user_id" = ?  [["user_id", 1]]
+D, [2016-02-12T08:58:23.229452 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.2ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.256012 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.3ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1
+D, [2016-02-12T08:58:23.261822 #5510] DEBUG -- :   Vines::Storage::Sql::Contact Load (0.4ms)  SELECT "contacts".* FROM "contacts" INNER JOIN "aspect_memberships" ON "aspect_memberships"."contact_id" = "contacts"."id" INNER JOIN "aspects" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "contacts"."user_id" = ? AND (aspects.chat_enabled = 't') GROUP BY person_id, contacts.id  [["user_id", 1]]
+D, [2016-02-12T08:58:23.263914 #5510] DEBUG -- :   Vines::Storage::Sql::Person Load (0.3ms)  SELECT "people".* FROM "people" WHERE "people"."id" = ? ORDER BY "people"."id" ASC LIMIT 1  [["id", 1]]
+D, [2016-02-12T08:58:23.266157 #5510] DEBUG -- :   Vines::Storage::Sql::Profile Load (0.3ms)  SELECT "profiles".* FROM "profiles" WHERE "profiles"."person_id" = ? ORDER BY "profiles"."id" ASC LIMIT 1  [["person_id", 1]]
+D, [2016-02-12T08:58:23.267814 #5510] DEBUG -- :   Vines::Storage::Sql::Aspect Load (0.4ms)  SELECT "aspects".* FROM "aspects" INNER JOIN "aspect_memberships" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "aspect_memberships"."contact_id" = ?  [["contact_id", 1]]
+D, [2016-02-12T08:58:23.269755 #5510] DEBUG -- :   Vines::Storage::Sql::ChatContact Load (0.3ms)  SELECT "chat_contacts".* FROM "chat_contacts" WHERE "chat_contacts"."user_id" = ?  [["user_id", 1]]
+D, [2016-02-12T08:58:23.271597 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.5ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1
+D, [2016-02-12T08:58:23.273928 #5510] DEBUG -- :   Vines::Storage::Sql::Contact Load (0.3ms)  SELECT "contacts".* FROM "contacts" INNER JOIN "aspect_memberships" ON "aspect_memberships"."contact_id" = "contacts"."id" INNER JOIN "aspects" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "contacts"."user_id" = ? AND (aspects.chat_enabled = 't') GROUP BY person_id, contacts.id  [["user_id", 1]]
+D, [2016-02-12T08:58:23.275484 #5510] DEBUG -- :   Vines::Storage::Sql::Person Load (0.3ms)  SELECT "people".* FROM "people" WHERE "people"."id" = ? ORDER BY "people"."id" ASC LIMIT 1  [["id", 1]]
+D, [2016-02-12T08:58:23.276996 #5510] DEBUG -- :   Vines::Storage::Sql::Profile Load (0.3ms)  SELECT "profiles".* FROM "profiles" WHERE "profiles"."person_id" = ? ORDER BY "profiles"."id" ASC LIMIT 1  [["person_id", 1]]
+D, [2016-02-12T08:58:23.278858 #5510] DEBUG -- :   Vines::Storage::Sql::Aspect Load (0.2ms)  SELECT "aspects".* FROM "aspects" INNER JOIN "aspect_memberships" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "aspect_memberships"."contact_id" = ?  [["contact_id", 1]]
+D, [2016-02-12T08:58:23.280363 #5510] DEBUG -- :   Vines::Storage::Sql::ChatContact Load (0.2ms)  SELECT "chat_contacts".* FROM "chat_contacts" WHERE "chat_contacts"."user_id" = ?  [["user_id", 1]]
+D, [2016-02-12T08:58:23.282222 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.6ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1
+D, [2016-02-12T08:58:23.284496 #5510] DEBUG -- :   Vines::Storage::Sql::Contact Load (0.3ms)  SELECT "contacts".* FROM "contacts" INNER JOIN "aspect_memberships" ON "aspect_memberships"."contact_id" = "contacts"."id" INNER JOIN "aspects" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "contacts"."user_id" = ? AND (aspects.chat_enabled = 't') GROUP BY person_id, contacts.id  [["user_id", 1]]
+D, [2016-02-12T08:58:23.286050 #5510] DEBUG -- :   Vines::Storage::Sql::Person Load (0.2ms)  SELECT "people".* FROM "people" WHERE "people"."id" = ? ORDER BY "people"."id" ASC LIMIT 1  [["id", 1]]
+D, [2016-02-12T08:58:23.287497 #5510] DEBUG -- :   Vines::Storage::Sql::Profile Load (0.2ms)  SELECT "profiles".* FROM "profiles" WHERE "profiles"."person_id" = ? ORDER BY "profiles"."id" ASC LIMIT 1  [["person_id", 1]]
+D, [2016-02-12T08:58:23.289345 #5510] DEBUG -- :   Vines::Storage::Sql::Aspect Load (0.2ms)  SELECT "aspects".* FROM "aspects" INNER JOIN "aspect_memberships" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "aspect_memberships"."contact_id" = ?  [["contact_id", 1]]
+D, [2016-02-12T08:58:23.290800 #5510] DEBUG -- :   Vines::Storage::Sql::ChatContact Load (0.2ms)  SELECT "chat_contacts".* FROM "chat_contacts" WHERE "chat_contacts"."user_id" = ?  [["user_id", 1]]
+D, [2016-02-12T08:58:23.293516 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.299134 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.1ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+E, [2016-02-12T08:58:23.302960 #5510] ERROR -- : Thread pool operation failed: Unknown key: to
+D, [2016-02-12T08:58:23.305711 #5510] DEBUG -- :    (0.2ms)  SELECT COUNT(*) FROM "chat_offline_messages" WHERE "chat_offline_messages"."to" = 'someone at inthe.void'
+D, [2016-02-12T08:58:23.318192 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.6ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.326652 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.2ms)  SELECT "users".* FROM "users" WHERE "users"."username" IS NULL LIMIT 1
+D, [2016-02-12T08:58:23.328128 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.4ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1
+D, [2016-02-12T08:58:23.331359 #5510] DEBUG -- :   Vines::Storage::Sql::Contact Load (0.3ms)  SELECT "contacts".* FROM "contacts" INNER JOIN "aspect_memberships" ON "aspect_memberships"."contact_id" = "contacts"."id" INNER JOIN "aspects" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "contacts"."user_id" = ? AND (aspects.chat_enabled = 't') GROUP BY person_id, contacts.id  [["user_id", 1]]
+D, [2016-02-12T08:58:23.332863 #5510] DEBUG -- :   Vines::Storage::Sql::Person Load (0.2ms)  SELECT "people".* FROM "people" WHERE "people"."id" = ? ORDER BY "people"."id" ASC LIMIT 1  [["id", 1]]
+D, [2016-02-12T08:58:23.334481 #5510] DEBUG -- :   Vines::Storage::Sql::Profile Load (0.2ms)  SELECT "profiles".* FROM "profiles" WHERE "profiles"."person_id" = ? ORDER BY "profiles"."id" ASC LIMIT 1  [["person_id", 1]]
+D, [2016-02-12T08:58:23.335654 #5510] DEBUG -- :   Vines::Storage::Sql::Aspect Load (0.2ms)  SELECT "aspects".* FROM "aspects" INNER JOIN "aspect_memberships" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "aspect_memberships"."contact_id" = ?  [["contact_id", 1]]
+D, [2016-02-12T08:58:23.337028 #5510] DEBUG -- :   Vines::Storage::Sql::ChatContact Load (0.2ms)  SELECT "chat_contacts".* FROM "chat_contacts" WHERE "chat_contacts"."user_id" = ?  [["user_id", 1]]
+D, [2016-02-12T08:58:23.404333 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.7ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1
+D, [2016-02-12T08:58:23.406194 #5510] DEBUG -- :   Vines::Storage::Sql::Contact Load (0.5ms)  SELECT "contacts".* FROM "contacts" INNER JOIN "aspect_memberships" ON "aspect_memberships"."contact_id" = "contacts"."id" INNER JOIN "aspects" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "contacts"."user_id" = ? AND (aspects.chat_enabled = 't') GROUP BY person_id, contacts.id  [["user_id", 1]]
+D, [2016-02-12T08:58:23.407461 #5510] DEBUG -- :   Vines::Storage::Sql::Person Load (0.5ms)  SELECT "people".* FROM "people" WHERE "people"."id" = ? ORDER BY "people"."id" ASC LIMIT 1  [["id", 1]]
+D, [2016-02-12T08:58:23.408849 #5510] DEBUG -- :   Vines::Storage::Sql::Profile Load (0.6ms)  SELECT "profiles".* FROM "profiles" WHERE "profiles"."person_id" = ? ORDER BY "profiles"."id" ASC LIMIT 1  [["person_id", 1]]
+D, [2016-02-12T08:58:23.410473 #5510] DEBUG -- :   Vines::Storage::Sql::Aspect Load (0.4ms)  SELECT "aspects".* FROM "aspects" INNER JOIN "aspect_memberships" ON "aspects"."id" = "aspect_memberships"."aspect_id" WHERE "aspect_memberships"."contact_id" = ?  [["contact_id", 1]]
+D, [2016-02-12T08:58:23.411723 #5510] DEBUG -- :   Vines::Storage::Sql::ChatContact Load (0.3ms)  SELECT "chat_contacts".* FROM "chat_contacts" WHERE "chat_contacts"."user_id" = ?  [["user_id", 1]]
+D, [2016-02-12T08:58:23.481912 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.1ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.487758 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages" WHERE "chat_offline_messages"."to" = 'someone at inthe.void'
+D, [2016-02-12T08:58:23.495388 #5510] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:23.498692 #5510] DEBUG -- :   SQL (1.0ms)  INSERT INTO "chat_offline_messages" ("created_at", "from", "message", "to") VALUES (?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:23 UTC], ["from", "test at local.host"], ["message", "test"], ["to", "someone at inthe.void"]]
+D, [2016-02-12T08:58:23.600288 #5510] DEBUG -- :    (101.2ms)  commit transaction
+D, [2016-02-12T08:58:23.603981 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages" WHERE "chat_offline_messages"."to" = 'someone at inthe.void'
+D, [2016-02-12T08:58:23.606817 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.5ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.607293 #5510] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:23.608869 #5510] DEBUG -- :   SQL (0.6ms)  DELETE FROM "chat_offline_messages" WHERE "chat_offline_messages"."id" = ?  [["id", 1]]
+D, [2016-02-12T08:58:23.722973 #5510] DEBUG -- :    (113.5ms)  commit transaction
+D, [2016-02-12T08:58:23.728359 #5510] DEBUG -- :    (1.2ms)  begin transaction
+D, [2016-02-12T08:58:23.730255 #5510] DEBUG -- :   SQL (0.7ms)  INSERT INTO "chat_offline_messages" ("created_at", "from", "message", "to") VALUES (?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:23 UTC], ["from", "test at local.host"], ["message", "test"], ["to", "someone at inthe.void"]]
+D, [2016-02-12T08:58:23.856512 #5510] DEBUG -- :    (125.9ms)  commit transaction
+D, [2016-02-12T08:58:23.858093 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.2ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.860727 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.2ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages" WHERE "chat_offline_messages"."id" = ? LIMIT 1  [["id", 2]]
+D, [2016-02-12T08:58:23.861332 #5510] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:23.861895 #5510] DEBUG -- :   SQL (0.2ms)  DELETE FROM "chat_offline_messages" WHERE "chat_offline_messages"."id" = ?  [["id", 2]]
+D, [2016-02-12T08:58:23.981050 #5510] DEBUG -- :    (119.0ms)  commit transaction
+D, [2016-02-12T08:58:23.983568 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.986425 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.4ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:23.993380 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.5ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test2' LIMIT 1
+D, [2016-02-12T08:58:23.995265 #5510] DEBUG -- :   Vines::Storage::Sql::User Load (0.6ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test2' LIMIT 1
+D, [2016-02-12T08:58:23.998860 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:24.000285 #5510] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.2ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+I, [2016-02-12T08:58:24.210388 #5510]  INFO -- : Authenticating user: alice at wonderland.lit
+I, [2016-02-12T08:58:24.211355 #5510]  INFO -- : Authenticating user: alice at wonderland.lit
+I, [2016-02-12T08:58:24.211418 #5510]  INFO -- : Authentication succeeded: alice at wonderland.lit
+I, [2016-02-12T08:58:24.211759 #5510]  INFO -- : Authenticating user: alice at wonderland.lit
+D, [2016-02-12T08:58:44.574057 #5726] DEBUG -- :    (121.3ms)  CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guid" varchar(255) NOT NULL, "url" text NOT NULL, "diaspora_handle" varchar(255) NOT NULL, "serialized_public_key" text NOT NULL, "owner_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "closed_account" boolean DEFAULT 'f', "fetch_status" integer DEFAULT 0) 
+D, [2016-02-12T08:58:44.674290 #5726] DEBUG -- :    (99.1ms)  CREATE UNIQUE INDEX "index_people_on_diaspora_handle" ON "people" ("diaspora_handle")
+D, [2016-02-12T08:58:44.774769 #5726] DEBUG -- :    (99.3ms)  CREATE UNIQUE INDEX "index_people_on_guid" ON "people" ("guid")
+D, [2016-02-12T08:58:44.875395 #5726] DEBUG -- :    (98.6ms)  CREATE UNIQUE INDEX "index_people_on_owner_id" ON "people" ("owner_id")
+D, [2016-02-12T08:58:44.975811 #5726] DEBUG -- :    (96.6ms)  CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "diaspora_handle" varchar(255), "first_name" varchar(127), "last_name" varchar(127), "image_url" varchar(255), "image_url_small" varchar(255), "image_url_medium" varchar(255), "birthday" date, "gender" varchar(255), "bio" text, "searchable" boolean DEFAULT 't' NOT NULL, "person_id" integer NOT NULL, "created_at" datetime NOT NULL, "updat [...]
+D, [2016-02-12T08:58:45.076161 #5726] DEBUG -- :    (98.9ms)  CREATE INDEX "index_profiles_on_full_name_and_searchable" ON "profiles" ("full_name", "searchable")
+D, [2016-02-12T08:58:45.176599 #5726] DEBUG -- :    (98.3ms)  CREATE INDEX "index_profiles_on_full_name" ON "profiles" ("full_name")
+D, [2016-02-12T08:58:45.277069 #5726] DEBUG -- :    (98.1ms)  CREATE INDEX "index_profiles_on_person_id" ON "profiles" ("person_id")
+D, [2016-02-12T08:58:45.377579 #5726] DEBUG -- :    (98.4ms)  CREATE TABLE "aspects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "user_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "contacts_visible" boolean DEFAULT 't' NOT NULL, "order_id" integer, "chat_enabled" boolean DEFAULT 'f') 
+D, [2016-02-12T08:58:45.511184 #5726] DEBUG -- :    (132.4ms)  CREATE INDEX "index_aspects_on_user_id_and_contacts_visible" ON "aspects" ("user_id", "contacts_visible")
+D, [2016-02-12T08:58:45.644892 #5726] DEBUG -- :    (131.5ms)  CREATE INDEX "index_aspects_on_user_id" ON "aspects" ("user_id")
+D, [2016-02-12T08:58:45.789775 #5726] DEBUG -- :    (142.9ms)  CREATE TABLE "aspect_memberships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "aspect_id" integer NOT NULL, "contact_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
+D, [2016-02-12T08:58:45.934507 #5726] DEBUG -- :    (143.3ms)  CREATE UNIQUE INDEX "index_aspect_memberships_on_aspect_id_and_contact_id" ON "aspect_memberships" ("aspect_id", "contact_id")
+D, [2016-02-12T08:58:46.079285 #5726] DEBUG -- :    (142.6ms)  CREATE INDEX "index_aspect_memberships_on_aspect_id" ON "aspect_memberships" ("aspect_id")
+D, [2016-02-12T08:58:46.224080 #5726] DEBUG -- :    (142.2ms)  CREATE INDEX "index_aspect_memberships_on_contact_id" ON "aspect_memberships" ("contact_id")
+D, [2016-02-12T08:58:46.348315 #5726] DEBUG -- :    (122.5ms)  CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "person_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "sharing" boolean DEFAULT 'f' NOT NULL, "receiving" boolean DEFAULT 'f' NOT NULL) 
+D, [2016-02-12T08:58:46.460037 #5726] DEBUG -- :    (110.8ms)  CREATE INDEX "index_contacts_on_person_id" ON "contacts" ("person_id")
+D, [2016-02-12T08:58:46.571590 #5726] DEBUG -- :    (109.3ms)  CREATE UNIQUE INDEX "index_contacts_on_user_id_and_person_id" ON "contacts" ("user_id", "person_id")
+D, [2016-02-12T08:58:46.671907 #5726] DEBUG -- :    (98.2ms)  CREATE TABLE "chat_contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "jid" varchar(255) NOT NULL, "name" varchar(255), "ask" varchar(128), "subscription" varchar(128) NOT NULL, "groups" text) 
+D, [2016-02-12T08:58:46.772225 #5726] DEBUG -- :    (98.9ms)  CREATE UNIQUE INDEX "index_chat_contacts_on_user_id_and_jid" ON "chat_contacts" ("user_id", "jid")
+D, [2016-02-12T08:58:46.872575 #5726] DEBUG -- :    (98.5ms)  CREATE TABLE "chat_fragments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "root" varchar(256) NOT NULL, "namespace" varchar(256) NOT NULL, "xml" text NOT NULL) 
+D, [2016-02-12T08:58:46.984233 #5726] DEBUG -- :    (110.2ms)  CREATE UNIQUE INDEX "index_chat_fragments_on_user_id" ON "chat_fragments" ("user_id")
+D, [2016-02-12T08:58:47.106670 #5726] DEBUG -- :    (120.6ms)  CREATE TABLE "chat_offline_messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "from" varchar(255) NOT NULL, "to" varchar(255) NOT NULL, "message" text NOT NULL, "created_at" datetime NOT NULL) 
+D, [2016-02-12T08:58:47.206989 #5726] DEBUG -- :    (97.2ms)  CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "serialized_private_key" text, "getting_started" boolean DEFAULT 't' NOT NULL, "disable_mail" boolean DEFAULT 'f' NOT NULL, "language" varchar(255), "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "invitation_token" varchar(60), "invitation_sent_at" datetime, "reset_passw [...]
+D, [2016-02-12T08:58:47.318554 #5726] DEBUG -- :    (110.5ms)  CREATE UNIQUE INDEX "index_users_on_authentication_token" ON "users" ("authentication_token")
+D, [2016-02-12T08:58:47.430227 #5726] DEBUG -- :    (109.8ms)  CREATE INDEX "index_users_on_email" ON "users" ("email")
+D, [2016-02-12T08:58:47.552749 #5726] DEBUG -- :    (120.1ms)  CREATE UNIQUE INDEX "index_users_on_invitation_service_and_invitation_identifier" ON "users" ("invitation_service", "invitation_identifier")
+D, [2016-02-12T08:58:47.675196 #5726] DEBUG -- :    (119.7ms)  CREATE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
+D, [2016-02-12T08:58:47.808847 #5726] DEBUG -- :    (131.3ms)  CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")
+D, [2016-02-12T08:58:47.855733 #5726] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:47.858935 #5726] DEBUG -- :   SQL (0.4ms)  INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?)  [["authentication_token", "1234"], ["created_at", 2016-02-12 03:28:47 UTC], ["email", "test at test.de"], ["encrypted_password", "$2a$10$c2G6rHjGeamQIOFI0c1/b.4mvFBw4AfOtgVrAkO1QPMuAyporj5e6"], ["updated_at", 2016-02-12 03:28:47 UTC], ["username", "test"]]
+D, [2016-02-12T08:58:47.987080 #5726] DEBUG -- :    (127.8ms)  commit transaction
+D, [2016-02-12T08:58:48.000400 #5726] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:48.002840 #5726] DEBUG -- :   SQL (0.6ms)  INSERT INTO "people" ("created_at", "diaspora_handle", "guid", "owner_id", "serialized_public_key", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:48 UTC], ["diaspora_handle", "test at local.host"], ["guid", "1697a4b0198901321e9b10e6ba921ce9"], ["owner_id", 1], ["serialized_public_key", "some pub key"], ["updated_at", 2016-02-12 03:28:48 UTC], ["url", "http://remote.host/"]]
+D, [2016-02-12T08:58:48.131969 #5726] DEBUG -- :    (128.7ms)  commit transaction
+D, [2016-02-12T08:58:48.149458 #5726] DEBUG -- :    (0.0ms)  begin transaction
+D, [2016-02-12T08:58:48.151222 #5726] DEBUG -- :   SQL (0.5ms)  INSERT INTO "profiles" ("created_at", "diaspora_handle", "first_name", "image_url", "last_name", "person_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:48 UTC], ["diaspora_handle", "test at local.host"], ["first_name", "Harry"], ["image_url", "http://path.to/image.png"], ["last_name", "Hirsch"], ["person_id", 1], ["updated_at", 2016-02-12 03:28:48 UTC]]
+D, [2016-02-12T08:58:48.276598 #5726] DEBUG -- :    (125.0ms)  commit transaction
+D, [2016-02-12T08:58:48.291658 #5726] DEBUG -- :    (0.2ms)  begin transaction
+D, [2016-02-12T08:58:48.294250 #5726] DEBUG -- :   SQL (1.1ms)  INSERT INTO "contacts" ("created_at", "person_id", "receiving", "sharing", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:48 UTC], ["person_id", 1], ["receiving", true], ["sharing", true], ["updated_at", 2016-02-12 03:28:48 UTC], ["user_id", 1]]
+D, [2016-02-12T08:58:48.410279 #5726] DEBUG -- :    (115.4ms)  commit transaction
+D, [2016-02-12T08:58:48.424950 #5726] DEBUG -- :    (0.0ms)  begin transaction
+D, [2016-02-12T08:58:48.426732 #5726] DEBUG -- :   SQL (0.5ms)  INSERT INTO "aspects" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:48 UTC], ["name", "without_chat"], ["updated_at", 2016-02-12 03:28:48 UTC], ["user_id", 1]]
+D, [2016-02-12T08:58:48.554880 #5726] DEBUG -- :    (127.8ms)  commit transaction
+D, [2016-02-12T08:58:48.567195 #5726] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:48.569164 #5726] DEBUG -- :   SQL (0.5ms)  INSERT INTO "aspect_memberships" ("aspect_id", "contact_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["aspect_id", 1], ["contact_id", 1], ["created_at", 2016-02-12 03:28:48 UTC], ["updated_at", 2016-02-12 03:28:48 UTC]]
+D, [2016-02-12T08:58:48.677477 #5726] DEBUG -- :    (108.0ms)  commit transaction
+D, [2016-02-12T08:58:48.682110 #5726] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:48.750653 #5726] DEBUG -- :   Vines::Storage::Sql::User Load (0.4ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test2' LIMIT 1
+D, [2016-02-12T08:58:48.753247 #5726] DEBUG -- :   Vines::Storage::Sql::User Load (0.4ms)  SELECT "users".* FROM "users" WHERE "users"."username" = 'test2' LIMIT 1
+D, [2016-02-12T08:58:48.756164 #5726] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:48.763930 #5726] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.3ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages" WHERE "chat_offline_messages"."to" = 'someone at inthe.void'
+D, [2016-02-12T08:58:48.772419 #5726] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:48.774628 #5726] DEBUG -- :   SQL (1.0ms)  INSERT INTO "chat_offline_messages" ("created_at", "from", "message", "to") VALUES (?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:48 UTC], ["from", "test at local.host"], ["message", "test"], ["to", "someone at inthe.void"]]
+D, [2016-02-12T08:58:48.901547 #5726] DEBUG -- :    (126.6ms)  commit transaction
+D, [2016-02-12T08:58:48.906555 #5726] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.4ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages" WHERE "chat_offline_messages"."to" = 'someone at inthe.void'
+D, [2016-02-12T08:58:48.910620 #5726] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.6ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:48.911221 #5726] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:48.913326 #5726] DEBUG -- :   SQL (0.8ms)  DELETE FROM "chat_offline_messages" WHERE "chat_offline_messages"."id" = ?  [["id", 1]]
+D, [2016-02-12T08:58:49.024635 #5726] DEBUG -- :    (111.0ms)  commit transaction
+D, [2016-02-12T08:58:49.029172 #5726] DEBUG -- :   Vines::Storage::Sql::Person Load (0.2ms)  SELECT "people".* FROM "people" WHERE "people"."diaspora_handle" = 'test at local.host' LIMIT 1
+D, [2016-02-12T08:58:49.038893 #5726] DEBUG -- :   Vines::Storage::Sql::Profile Load (0.3ms)  SELECT "profiles".* FROM "profiles" WHERE "profiles"."person_id" = ? ORDER BY "profiles"."id" ASC LIMIT 1  [["person_id", 1]]
+D, [2016-02-12T08:58:49.042260 #5726] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.1ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:49.044939 #5726] DEBUG -- :    (0.6ms)  begin transaction
+D, [2016-02-12T08:58:49.045996 #5726] DEBUG -- :   SQL (0.3ms)  INSERT INTO "chat_offline_messages" ("created_at", "from", "message", "to") VALUES (?, ?, ?, ?)  [["created_at", 2016-02-12 03:28:49 UTC], ["from", "test at local.host"], ["message", "test"], ["to", "someone at inthe.void"]]
+D, [2016-02-12T08:58:49.146690 #5726] DEBUG -- :    (100.4ms)  commit transaction
+D, [2016-02-12T08:58:49.149175 #5726] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.4ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"
+D, [2016-02-12T08:58:49.154447 #5726] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.4ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages" WHERE "chat_offline_messages"."id" = ? LIMIT 1  [["id", 2]]
+D, [2016-02-12T08:58:49.154983 #5726] DEBUG -- :    (0.1ms)  begin transaction
+D, [2016-02-12T08:58:49.155963 #5726] DEBUG -- :   SQL (0.3ms)  DELETE FROM "chat_offline_messages" WHERE "chat_offline_messages"."id" = ?  [["id", 2]]
+D, [2016-02-12T08:58:49.258153 #5726] DEBUG -- :    (102.0ms)  commit transaction
+D, [2016-02-12T08:58:49.259768 #5726] DEBUG -- :   Vines::Storage::Sql::ChatOfflineMessage Load (0.4ms)  SELECT "chat_offline_messages".* FROM "chat_offline_messages"

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-diaspora-vines.git



More information about the Pkg-ruby-extras-commits mailing list