level_up 0.1.0 → 0.2.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.
- data/CHANGELOG.txt +7 -0
- data/README.md +29 -29
- data/app/controllers/level_up/jobs_controller.rb +15 -16
- data/app/helpers/level_up/home_helper.rb +5 -1
- data/app/models/level_up/job.rb +65 -55
- data/app/models/level_up/{state → task}/cancel.rb +1 -1
- data/app/models/level_up/{state → task}/end.rb +1 -1
- data/app/models/level_up/task/start.rb +8 -0
- data/app/models/level_up/{state.rb → task.rb} +13 -13
- data/app/views/level_up/home/index.html.erb +4 -4
- data/app/views/level_up/jobs/edit.html.erb +4 -4
- data/app/views/level_up/jobs/index.html.erb +7 -7
- data/app/views/level_up/jobs/show.html.erb +6 -6
- data/db/migrate/20130212111454_create_level_up_jobs.rb +4 -4
- data/lib/level_up/configuration.rb +14 -2
- data/lib/level_up/version.rb +1 -1
- data/test/dummy/app/models/account_banish.rb +18 -0
- data/test/dummy/app/models/account_downgrade.rb +13 -0
- data/test/dummy/app/{jobs → models}/account_upgrade.rb +3 -3
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/{20130212113009_create_delayed_jobs.rb → 20130404201224_create_delayed_jobs.rb} +0 -0
- data/test/dummy/db/migrate/{20130215111404_create_level_up_jobs.level_up.rb → 20130404201329_create_level_up_jobs.level_up.rb} +4 -4
- data/test/dummy/db/schema.rb +9 -9
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +4020 -0
- data/test/dummy/log/test.log +21327 -0
- data/test/dummy/tmp/cache/assets/C2C/CE0/sprockets%2F33f519d653c9b4886c417440a0993824 +0 -0
- data/test/dummy/tmp/cache/assets/C6A/F00/sprockets%2F177385361781d5fe78d217f1f48b8566 +0 -0
- data/test/dummy/tmp/cache/assets/C6C/ED0/sprockets%2F320c25374f5ea136824c04c256e1605b +0 -0
- data/test/dummy/tmp/cache/assets/C87/110/sprockets%2Fc4428c04b8830f451f7636c2811f975d +0 -0
- data/test/dummy/tmp/cache/assets/CB9/E40/sprockets%2F43e6286ecc7751fc65d32b72c6158940 +0 -0
- data/test/dummy/tmp/cache/assets/CCE/7E0/sprockets%2F7d295633b50bfa8b04345d5e600b343a +0 -0
- data/test/dummy/tmp/cache/assets/CD5/450/sprockets%2F2ac0e7e07211a99107e0ba7e2680c885 +0 -0
- data/test/dummy/tmp/cache/assets/CE4/220/sprockets%2Ff1a78dd6750c553265fd3a242d76c277 +0 -0
- data/test/dummy/tmp/cache/assets/CF7/BA0/sprockets%2F8f9487ea6943415e46a5d895e0920ebe +0 -0
- data/test/dummy/tmp/cache/assets/D0E/2B0/sprockets%2F3e386ff8d231b92766061c4fad4ad504 +0 -0
- data/test/dummy/tmp/cache/assets/D19/660/sprockets%2F018d64588c824dd3e7e6c8d6d0d6510e +0 -0
- data/test/dummy/tmp/cache/assets/D25/E10/sprockets%2F989ec024c5db6ae875689b410f8e6d53 +0 -0
- data/test/dummy/tmp/cache/assets/D33/200/sprockets%2Fc291105cf21ca8e744c65f3d4f446aa1 +0 -0
- data/test/dummy/tmp/cache/assets/D34/610/sprockets%2Fcc081ecb5b32894151f16a144383befe +0 -0
- data/test/dummy/tmp/cache/assets/D4D/110/sprockets%2Fc16dfb491d9b98f482b4f0059dd355b8 +0 -0
- data/test/dummy/tmp/cache/assets/D4F/890/sprockets%2Fe3f96e9aa9b032c43788676c5ce066db +0 -0
- data/test/dummy/tmp/cache/assets/D53/370/sprockets%2F1cf0ca91840a1483edcac4d0c403b149 +0 -0
- data/test/dummy/tmp/cache/assets/D69/B90/sprockets%2Fdb0ee3e51128419c85616ceaca66ab58 +0 -0
- data/test/dummy/tmp/cache/assets/D75/B20/sprockets%2Fb659146edbe91be3b1b9d64cb9370c76 +0 -0
- data/test/dummy/tmp/cache/assets/D79/430/sprockets%2Fc030f9d26fab468c49dc494195d77eab +0 -0
- data/test/dummy/tmp/cache/assets/D9D/3C0/sprockets%2F3019d99c7bae1e55eb7c2bf4688b1b1a +0 -0
- data/test/dummy/tmp/cache/assets/DAA/1A0/sprockets%2Fba643993838fce8ddc1d42e6ce1fc346 +0 -0
- data/test/dummy/tmp/cache/assets/DD4/DA0/sprockets%2F17fadf3354a429c53acfe9fca6268d5d +0 -0
- data/test/dummy/tmp/cache/assets/DF8/880/sprockets%2F255d8bde2bf6681724e4ddedcc3cbc02 +0 -0
- data/test/dummy/tmp/job_1.svg +78 -0
- data/test/dummy/tmp/job_2.svg +78 -0
- data/test/dummy/tmp/job_3.svg +78 -0
- data/test/unit/level_up/job_test.rb +124 -52
- metadata +84 -19
- data/app/models/level_up/state/start.rb +0 -9
- data/app/views/level_up/home/workflow.html.erb +0 -5
- data/test/dummy/app/jobs/account_banish.rb +0 -18
- data/test/dummy/app/jobs/account_downgrade.rb +0 -13
- data/test/dummy/app/jobs/mailing_list_subscription.rb +0 -15
|
@@ -0,0 +1,4020 @@
|
|
|
1
|
+
Connecting to database specified by database.yml
|
|
2
|
+
Connecting to database specified by database.yml
|
|
3
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
4
|
+
[1m[35m (42.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
5
|
+
[1m[36m (4.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
6
|
+
Connecting to database specified by database.yml
|
|
7
|
+
Connecting to database specified by database.yml
|
|
8
|
+
[1m[36m (1.4ms)[0m [1mselect sqlite_version(*)[0m
|
|
9
|
+
[1m[35m (3.7ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
10
|
+
[1m[36m (4.1ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
11
|
+
[1m[35m (4.1ms)[0m CREATE TABLE "level_up_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "delayed_job_id" integer, "key" varchar(255), "state" varchar(255) DEFAULT 'start', "error" boolean DEFAULT 'f', "timer" boolean DEFAULT 'f', "task" boolean DEFAULT 'f', "task_description" text, "failed_at" datetime, "failed_in" varchar(255), "backtrace" text, "started_at" datetime, "ended_at" datetime, "canceled_at" datetime, "retry_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
12
|
+
[1m[36m (4.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_delayed_job_id" ON "level_up_jobs" ("delayed_job_id")[0m
|
|
13
|
+
[1m[35m (6.4ms)[0m CREATE INDEX "index_level_up_jobs_on_key" ON "level_up_jobs" ("key")
|
|
14
|
+
[1m[36m (4.2ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_state" ON "level_up_jobs" ("state")[0m
|
|
15
|
+
[1m[35m (4.8ms)[0m CREATE INDEX "index_level_up_jobs_on_type" ON "level_up_jobs" ("type")
|
|
16
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
17
|
+
[1m[35m (3.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130215111404')
|
|
18
|
+
[1m[36m (3.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130212113009')[0m
|
|
19
|
+
[1m[35m (4.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130212111454')
|
|
20
|
+
Connecting to database specified by database.yml
|
|
21
|
+
Connecting to database specified by database.yml
|
|
22
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
23
|
+
Connecting to database specified by database.yml
|
|
24
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
25
|
+
Migrating to CreateDelayedJobs (20130212113009)
|
|
26
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
27
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
28
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
29
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
30
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130212113009')
|
|
31
|
+
[1m[36m (45.0ms)[0m [1mcommit transaction[0m
|
|
32
|
+
Migrating to CreateLevelUpJobs (20130215111404)
|
|
33
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
34
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "level_up_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "delayed_job_id" integer, "key" varchar(255), "state" varchar(255) DEFAULT 'start', "error" boolean DEFAULT 'f', "timer" boolean DEFAULT 'f', "task" boolean DEFAULT 'f', "task_description" text, "failed_at" datetime, "failed_in" varchar(255), "backtrace" text, "started_at" datetime, "ended_at" datetime, "canceled_at" datetime, "retry_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
35
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_level_up_jobs_on_type" ON "level_up_jobs" ("type")
|
|
36
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_delayed_job_id" ON "level_up_jobs" ("delayed_job_id")[0m
|
|
37
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_level_up_jobs_on_state" ON "level_up_jobs" ("state")
|
|
38
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_key" ON "level_up_jobs" ("key")[0m
|
|
39
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130215111404')
|
|
40
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
|
41
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
42
|
+
Connecting to database specified by database.yml
|
|
43
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
44
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
45
|
+
[1m[36m (39.1ms)[0m [1mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
46
|
+
[1m[35m (3.1ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
|
47
|
+
[1m[36m (6.4ms)[0m [1mCREATE TABLE "level_up_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "delayed_job_id" integer, "key" varchar(255), "state" varchar(255) DEFAULT 'start', "error" boolean DEFAULT 'f', "timer" boolean DEFAULT 'f', "task" boolean DEFAULT 'f', "task_description" text, "failed_at" datetime, "failed_in" varchar(255), "backtrace" text, "started_at" datetime, "ended_at" datetime, "canceled_at" datetime, "retry_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
48
|
+
[1m[35m (6.6ms)[0m CREATE INDEX "index_level_up_jobs_on_delayed_job_id" ON "level_up_jobs" ("delayed_job_id")
|
|
49
|
+
[1m[36m (4.3ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_key" ON "level_up_jobs" ("key")[0m
|
|
50
|
+
[1m[35m (5.2ms)[0m CREATE INDEX "index_level_up_jobs_on_state" ON "level_up_jobs" ("state")
|
|
51
|
+
[1m[36m (5.0ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_type" ON "level_up_jobs" ("type")[0m
|
|
52
|
+
[1m[35m (5.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
53
|
+
[1m[36m (4.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
54
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
55
|
+
[1m[36m (6.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130215111404')[0m
|
|
56
|
+
[1m[35m (6.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130212113009')
|
|
57
|
+
Connecting to database specified by database.yml
|
|
58
|
+
Connecting to database specified by database.yml
|
|
59
|
+
Connecting to database specified by database.yml
|
|
60
|
+
Connecting to database specified by database.yml
|
|
61
|
+
Connecting to database specified by database.yml
|
|
62
|
+
Connecting to database specified by database.yml
|
|
63
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
64
|
+
[1m[35m (41.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
65
|
+
[1m[36m (3.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
66
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
67
|
+
Migrating to CreateDelayedJobs (20130404181626)
|
|
68
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
69
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
70
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
71
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130404181626')
|
|
72
|
+
[1m[36m (5.7ms)[0m [1mcommit transaction[0m
|
|
73
|
+
Migrating to CreateLevelUpJobs (20130404181637)
|
|
74
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
75
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "level_up_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "delayed_job_id" integer, "key" varchar(255), "activity" varchar(255) DEFAULT 'start', "error" boolean DEFAULT 'f', "timer" boolean DEFAULT 'f', "task" boolean DEFAULT 'f', "task_description" text, "failed_at" datetime, "failed_in" varchar(255), "backtrace" text, "started_at" datetime, "ended_at" datetime, "canceled_at" datetime, "retry_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
76
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_level_up_jobs_on_type" ON "level_up_jobs" ("type")
|
|
77
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_delayed_job_id" ON "level_up_jobs" ("delayed_job_id")[0m
|
|
78
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_level_up_jobs_on_activity" ON "level_up_jobs" ("activity")
|
|
79
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_key" ON "level_up_jobs" ("key")[0m
|
|
80
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130404181637')
|
|
81
|
+
[1m[36m (3.9ms)[0m [1mcommit transaction[0m
|
|
82
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
83
|
+
Connecting to database specified by database.yml
|
|
84
|
+
[1m[36m (1.0ms)[0m [1mselect sqlite_version(*)[0m
|
|
85
|
+
[1m[35m (37.3ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
86
|
+
[1m[36m (3.2ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
87
|
+
[1m[35m (5.0ms)[0m CREATE TABLE "level_up_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "delayed_job_id" integer, "key" varchar(255), "activity" varchar(255) DEFAULT 'start', "error" boolean DEFAULT 'f', "timer" boolean DEFAULT 'f', "task" boolean DEFAULT 'f', "task_description" text, "failed_at" datetime, "failed_in" varchar(255), "backtrace" text, "started_at" datetime, "ended_at" datetime, "canceled_at" datetime, "retry_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
88
|
+
[1m[36m (5.5ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_activity" ON "level_up_jobs" ("activity")[0m
|
|
89
|
+
[1m[35m (3.8ms)[0m CREATE INDEX "index_level_up_jobs_on_delayed_job_id" ON "level_up_jobs" ("delayed_job_id")
|
|
90
|
+
[1m[36m (4.9ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_key" ON "level_up_jobs" ("key")[0m
|
|
91
|
+
[1m[35m (4.1ms)[0m CREATE INDEX "index_level_up_jobs_on_type" ON "level_up_jobs" ("type")
|
|
92
|
+
[1m[36m (4.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
93
|
+
[1m[35m (5.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
94
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
95
|
+
[1m[35m (4.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130404181637')
|
|
96
|
+
[1m[36m (5.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130404181626')[0m
|
|
97
|
+
Connecting to database specified by database.yml
|
|
98
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
99
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
100
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
101
|
+
[1m[35m (3.1ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
|
102
|
+
[1m[36m (4.2ms)[0m [1mCREATE TABLE "level_up_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "delayed_job_id" integer, "key" varchar(255), "activity" varchar(255) DEFAULT 'start', "error" boolean DEFAULT 'f', "timer" boolean DEFAULT 'f', "task" boolean DEFAULT 'f', "task_description" text, "failed_at" datetime, "failed_in" varchar(255), "backtrace" text, "started_at" datetime, "ended_at" datetime, "canceled_at" datetime, "retry_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
103
|
+
[1m[35m (4.1ms)[0m CREATE INDEX "index_level_up_jobs_on_activity" ON "level_up_jobs" ("activity")
|
|
104
|
+
[1m[36m (4.4ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_delayed_job_id" ON "level_up_jobs" ("delayed_job_id")[0m
|
|
105
|
+
[1m[35m (3.9ms)[0m CREATE INDEX "index_level_up_jobs_on_key" ON "level_up_jobs" ("key")
|
|
106
|
+
[1m[36m (5.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_type" ON "level_up_jobs" ("type")[0m
|
|
107
|
+
[1m[35m (4.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
108
|
+
[1m[36m (5.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
109
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
|
110
|
+
[1m[36m (5.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130404181637')[0m
|
|
111
|
+
[1m[35m (4.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130404181626')
|
|
112
|
+
Connecting to database specified by database.yml
|
|
113
|
+
Connecting to database specified by database.yml
|
|
114
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
115
|
+
[1m[35m (38.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
116
|
+
[1m[36m (3.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
117
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
118
|
+
Migrating to CreateDelayedJobs (20130404201224)
|
|
119
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
120
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
121
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
122
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130404201224')
|
|
123
|
+
[1m[36m (5.0ms)[0m [1mcommit transaction[0m
|
|
124
|
+
Migrating to CreateLevelUpJobs (20130404201231)
|
|
125
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
126
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "level_up_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "delayed_job_id" integer, "key" varchar(255), "task" varchar(255) DEFAULT 'start', "error" boolean DEFAULT 'f', "timer" boolean DEFAULT 'f', "manual_task" boolean DEFAULT 'f', "manual_task_description" text, "failed_at" datetime, "failed_in" varchar(255), "backtrace" text, "started_at" datetime, "ended_at" datetime, "canceled_at" datetime, "retry_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
127
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_level_up_jobs_on_type" ON "level_up_jobs" ("type")
|
|
128
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_delayed_job_id" ON "level_up_jobs" ("delayed_job_id")[0m
|
|
129
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_level_up_jobs_on_activity" ON "level_up_jobs" ("activity")
|
|
130
|
+
SQLite3::SQLException: table level_up_jobs has no column named activity: CREATE INDEX "index_level_up_jobs_on_activity" ON "level_up_jobs" ("activity")
|
|
131
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
132
|
+
Connecting to database specified by database.yml
|
|
133
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
134
|
+
[1m[35m (6.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
135
|
+
[1m[36m (5.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
136
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
137
|
+
Migrating to CreateDelayedJobs (20130404201224)
|
|
138
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
139
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
140
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
141
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130404201224')
|
|
142
|
+
[1m[36m (5.9ms)[0m [1mcommit transaction[0m
|
|
143
|
+
Migrating to CreateLevelUpJobs (20130404201329)
|
|
144
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
145
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "level_up_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "delayed_job_id" integer, "key" varchar(255), "task" varchar(255) DEFAULT 'start', "error" boolean DEFAULT 'f', "timer" boolean DEFAULT 'f', "manual_task" boolean DEFAULT 'f', "manual_task_description" text, "failed_at" datetime, "failed_in" varchar(255), "backtrace" text, "started_at" datetime, "ended_at" datetime, "canceled_at" datetime, "retry_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
146
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_level_up_jobs_on_type" ON "level_up_jobs" ("type")
|
|
147
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_delayed_job_id" ON "level_up_jobs" ("delayed_job_id")[0m
|
|
148
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_level_up_jobs_on_task" ON "level_up_jobs" ("task")
|
|
149
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_key" ON "level_up_jobs" ("key")[0m
|
|
150
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130404201329')
|
|
151
|
+
[1m[36m (6.0ms)[0m [1mcommit transaction[0m
|
|
152
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
153
|
+
Connecting to database specified by database.yml
|
|
154
|
+
[1m[36m (1.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
155
|
+
[1m[35m (41.4ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
156
|
+
[1m[36m (3.3ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
157
|
+
[1m[35m (4.2ms)[0m CREATE TABLE "level_up_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "delayed_job_id" integer, "key" varchar(255), "task" varchar(255) DEFAULT 'start', "error" boolean DEFAULT 'f', "timer" boolean DEFAULT 'f', "manual_task" boolean DEFAULT 'f', "manual_task_description" text, "failed_at" datetime, "failed_in" varchar(255), "backtrace" text, "started_at" datetime, "ended_at" datetime, "canceled_at" datetime, "retry_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
158
|
+
[1m[36m (5.4ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_delayed_job_id" ON "level_up_jobs" ("delayed_job_id")[0m
|
|
159
|
+
[1m[35m (4.2ms)[0m CREATE INDEX "index_level_up_jobs_on_key" ON "level_up_jobs" ("key")
|
|
160
|
+
[1m[36m (5.1ms)[0m [1mCREATE INDEX "index_level_up_jobs_on_task" ON "level_up_jobs" ("task")[0m
|
|
161
|
+
[1m[35m (5.6ms)[0m CREATE INDEX "index_level_up_jobs_on_type" ON "level_up_jobs" ("type")
|
|
162
|
+
[1m[36m (4.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
163
|
+
[1m[35m (4.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
164
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
165
|
+
[1m[35m (5.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130404201329')
|
|
166
|
+
[1m[36m (4.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130404201224')[0m
|
|
167
|
+
Connecting to database specified by database.yml
|
|
168
|
+
Connecting to database specified by database.yml
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
Started GET "/" for 127.0.0.1 at 2013-04-05 00:02:53 +0200
|
|
172
|
+
|
|
173
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
|
174
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
175
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
176
|
+
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
177
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
178
|
+
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
179
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
180
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
181
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
182
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
183
|
+
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
184
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
185
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
186
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
187
|
+
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
188
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
189
|
+
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
190
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
191
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
192
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
193
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.5ms)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
Started GET "/level_up" for 127.0.0.1 at 2013-04-05 00:02:56 +0200
|
|
200
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
201
|
+
Filter chain halted as #<Proc:0x000001031282d0@/Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_controller/metal/http_authentication.rb:112> rendered or redirected
|
|
202
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
Started GET "/level_up" for 127.0.0.1 at 2013-04-05 00:02:57 +0200
|
|
206
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
207
|
+
Filter chain halted as #<Proc:0x000001031282d0@/Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_controller/metal/http_authentication.rb:112> rendered or redirected
|
|
208
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
Started GET "/level_up" for 127.0.0.1 at 2013-04-05 00:03:19 +0200
|
|
212
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
213
|
+
[1m[36m (0.7ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at[0m
|
|
214
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at
|
|
215
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at[0m
|
|
216
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at
|
|
217
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)[0m
|
|
218
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1
|
|
219
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (21.6ms)
|
|
220
|
+
Completed 500 Internal Server Error in 135ms
|
|
221
|
+
|
|
222
|
+
ActionView::Template::Error (undefined method `key' for nil:NilClass):
|
|
223
|
+
5: <div class="number"><%= link_to LevelUp::Job.queued.size, jobs_path(search: {delayed_job_id_eq: true}) %></div>
|
|
224
|
+
6: <div class="stats">
|
|
225
|
+
7: <ul>
|
|
226
|
+
8: <li><label>Most recent:</label><%= job_entry(LevelUp::Job.queued.first) %></li>
|
|
227
|
+
9: <li><label>Oldest:</label><%= job_entry(LevelUp::Job.queued.last) %></li>
|
|
228
|
+
10: </ul>
|
|
229
|
+
11: </div>
|
|
230
|
+
/Users/kimious/Workspace/level_up/app/helpers/level_up/home_helper.rb:4:in `job_entry'
|
|
231
|
+
/Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb:8:in `___sers_kimious__orkspace_level_up_app_views_level_up_home_index_html_erb___2468017167007271531_2158532520'
|
|
232
|
+
actionpack (3.2.12) lib/action_view/template.rb:145:in `block in render'
|
|
233
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:125:in `instrument'
|
|
234
|
+
actionpack (3.2.12) lib/action_view/template.rb:143:in `render'
|
|
235
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
|
236
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
|
237
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
238
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
239
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
|
240
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
|
241
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
|
242
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
|
243
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
|
244
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
|
245
|
+
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
246
|
+
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
247
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
|
248
|
+
actionpack (3.2.12) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
|
249
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
|
250
|
+
actionpack (3.2.12) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
|
251
|
+
actionpack (3.2.12) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
|
252
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:88:in `render'
|
|
253
|
+
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
254
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
|
255
|
+
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
256
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
|
257
|
+
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
258
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
|
259
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
|
260
|
+
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
261
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
|
262
|
+
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
263
|
+
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
264
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:167:in `process_action'
|
|
265
|
+
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
266
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
267
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:414:in `_run__3913159287712823690__process_action__296128110520141313__callbacks'
|
|
268
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
269
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
270
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
271
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
272
|
+
actionpack (3.2.12) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
273
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
274
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
275
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
276
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
|
277
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
278
|
+
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
279
|
+
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
280
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:121:in `process'
|
|
281
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
|
282
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
|
283
|
+
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
284
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
|
285
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
286
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
287
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
288
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
289
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
290
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
291
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
292
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
293
|
+
railties (3.2.12) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
|
294
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
295
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
296
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
297
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
298
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
299
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
300
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
|
301
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
302
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
303
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
304
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
305
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
306
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
307
|
+
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
|
308
|
+
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
309
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
310
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__3166129814561238358__call__996284714328951154__callbacks'
|
|
311
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
312
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
313
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
314
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
315
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
316
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
317
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
318
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
319
|
+
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
320
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
321
|
+
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
322
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
323
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
324
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
325
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
326
|
+
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
327
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
328
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
329
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
330
|
+
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
331
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
332
|
+
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
333
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
334
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
335
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
336
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
|
340
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
|
341
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (32.0ms)
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
Started GET "/level_up" for 127.0.0.1 at 2013-04-05 00:09:52 +0200
|
|
345
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
346
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at[0m
|
|
347
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at
|
|
348
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at[0m
|
|
349
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at
|
|
350
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)[0m
|
|
351
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1
|
|
352
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
353
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't'
|
|
354
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' LIMIT 1[0m
|
|
355
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
356
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'[0m
|
|
357
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 1
|
|
358
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
359
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't'
|
|
360
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' LIMIT 1[0m
|
|
361
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
362
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (7.6ms)
|
|
363
|
+
Compiled level_up/rwdgrid.css (0ms) (pid 20214)
|
|
364
|
+
Compiled level_up/home.css (15ms) (pid 20214)
|
|
365
|
+
Compiled level_up/jobs.css (24ms) (pid 20214)
|
|
366
|
+
Compiled level_up/application.css (473ms) (pid 20214)
|
|
367
|
+
Compiled jquery.js (2ms) (pid 20214)
|
|
368
|
+
Compiled jquery_ujs.js (0ms) (pid 20214)
|
|
369
|
+
Compiled level_up/home.js (0ms) (pid 20214)
|
|
370
|
+
Compiled level_up/jobs.js (0ms) (pid 20214)
|
|
371
|
+
Compiled level_up/application.js (94ms) (pid 20214)
|
|
372
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (38.8ms)
|
|
373
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.4ms)
|
|
374
|
+
Completed 200 OK in 813ms (Views: 802.2ms | ActiveRecord: 2.0ms)
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
378
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (2ms)
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
382
|
+
Served asset /level_up/application.css - 304 Not Modified (4ms)
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
386
|
+
Served asset /level_up/home.css - 304 Not Modified (2ms)
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
390
|
+
Served asset /level_up/jobs.css - 304 Not Modified (1ms)
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
394
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
398
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
402
|
+
Served asset /level_up/application.js - 304 Not Modified (9ms)
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
406
|
+
Served asset /level_up/jobs.js - 304 Not Modified (2ms)
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
410
|
+
Served asset /level_up/home.js - 304 Not Modified (2ms)
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:09:53 +0200
|
|
414
|
+
Served asset /level_up/search.png - 304 Not Modified (6ms)
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
418
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
419
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
420
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
421
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (25.9ms)
|
|
422
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
423
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
424
|
+
Completed 200 OK in 99ms (Views: 33.2ms | ActiveRecord: 0.3ms)
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
428
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
432
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
436
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
440
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
444
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
448
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
452
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
456
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
460
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:10:08 +0200
|
|
464
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
Started GET "/level_up/jobs?utf8=%E2%9C%93&search%5Bkey_contains%5D=&commit=Search&search%5Bdelayed_job_id_eq%5D=&search%5Btimer_eq%5D=&search%5Bmanual_task_eq%5D=true&search%5Berror_eq%5D=" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
468
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
469
|
+
Parameters: {"utf8"=>"✓", "search"=>{"key_contains"=>"", "delayed_job_id_eq"=>"", "timer_eq"=>"", "manual_task_eq"=>"true", "error_eq"=>""}, "commit"=>"Search"}
|
|
470
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'[0m
|
|
471
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 20 OFFSET 0
|
|
472
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (24.1ms)
|
|
473
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
474
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
475
|
+
Completed 200 OK in 87ms (Views: 75.0ms | ActiveRecord: 0.3ms)
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
479
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
483
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
487
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
491
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
495
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
499
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
503
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
507
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
511
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:10:14 +0200
|
|
515
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
516
|
+
Connecting to database specified by database.yml
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
Started GET "/level_up/jobs?utf8=%E2%9C%93&search%5Bkey_contains%5D=&commit=Search&search%5Bdelayed_job_id_eq%5D=&search%5Btimer_eq%5D=&search%5Bmanual_task_eq%5D=true&search%5Berror_eq%5D=" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
520
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
521
|
+
Parameters: {"utf8"=>"✓", "search"=>{"key_contains"=>"", "delayed_job_id_eq"=>"", "timer_eq"=>"", "manual_task_eq"=>"true", "error_eq"=>""}, "commit"=>"Search"}
|
|
522
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'[0m
|
|
523
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 20 OFFSET 0
|
|
524
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (23.4ms)
|
|
525
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
526
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
527
|
+
Completed 200 OK in 41ms (Views: 30.4ms | ActiveRecord: 0.4ms)
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
531
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
535
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
539
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
543
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
547
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
551
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
555
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
559
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
563
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:12:08 +0200
|
|
567
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
Started GET "/level_up/" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
571
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
572
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at[0m
|
|
573
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at
|
|
574
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at[0m
|
|
575
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at
|
|
576
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)[0m
|
|
577
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1
|
|
578
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
579
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't'
|
|
580
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' LIMIT 1[0m
|
|
581
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
582
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'[0m
|
|
583
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 1
|
|
584
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
585
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't'
|
|
586
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' LIMIT 1[0m
|
|
587
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
588
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (6.8ms)
|
|
589
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
590
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
591
|
+
Completed 200 OK in 19ms (Views: 12.6ms | ActiveRecord: 1.5ms)
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
595
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
599
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
603
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
607
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
611
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
615
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
619
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
623
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
627
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:12:33 +0200
|
|
631
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:12:37 +0200
|
|
635
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
636
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
637
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
638
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (113.8ms)
|
|
639
|
+
Completed 500 Internal Server Error in 117ms
|
|
640
|
+
|
|
641
|
+
ActionView::Template::Error (undefined method `state' for #<AccountBanish:0x000001033c73d8>):
|
|
642
|
+
53: <tr>
|
|
643
|
+
54: <td><%= link_to job.key, job_path(job) %></td>
|
|
644
|
+
55: <td><%= job.type %></td>
|
|
645
|
+
56: <td><%= job.state.humanize.downcase %></td>
|
|
646
|
+
57: <td><%= status_tag job.delayed_job, :purple %></td>
|
|
647
|
+
58: <td><%= status_tag job.timer, :blue %></td>
|
|
648
|
+
59: <td><%= status_tag job.task, :orange %></td>
|
|
649
|
+
activemodel (3.2.12) lib/active_model/attribute_methods.rb:407:in `method_missing'
|
|
650
|
+
activerecord (3.2.12) lib/active_record/attribute_methods.rb:149:in `method_missing'
|
|
651
|
+
/Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb:56:in `block in ___sers_kimious__orkspace_level_up_app_views_level_up_jobs_index_html_erb__1042808780866852129_2153687120'
|
|
652
|
+
activerecord (3.2.12) lib/active_record/relation/delegation.rb:6:in `each'
|
|
653
|
+
activerecord (3.2.12) lib/active_record/relation/delegation.rb:6:in `each'
|
|
654
|
+
/Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb:52:in `___sers_kimious__orkspace_level_up_app_views_level_up_jobs_index_html_erb__1042808780866852129_2153687120'
|
|
655
|
+
actionpack (3.2.12) lib/action_view/template.rb:145:in `block in render'
|
|
656
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:125:in `instrument'
|
|
657
|
+
actionpack (3.2.12) lib/action_view/template.rb:143:in `render'
|
|
658
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
|
659
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
|
660
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
661
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
662
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
|
663
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
|
664
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
|
665
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
|
666
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
|
667
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
|
668
|
+
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
669
|
+
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
670
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
|
671
|
+
actionpack (3.2.12) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
|
672
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
|
673
|
+
actionpack (3.2.12) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
|
674
|
+
actionpack (3.2.12) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
|
675
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:88:in `render'
|
|
676
|
+
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
677
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
|
678
|
+
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
679
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
|
680
|
+
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
681
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
|
682
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
|
683
|
+
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
684
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
|
685
|
+
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
686
|
+
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
687
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:167:in `process_action'
|
|
688
|
+
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
689
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
690
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:414:in `_run__4495618274090452880__process_action__296128110520141313__callbacks'
|
|
691
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
692
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
693
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
694
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
695
|
+
actionpack (3.2.12) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
696
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
697
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
698
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
699
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
|
700
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
701
|
+
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
702
|
+
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
703
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:121:in `process'
|
|
704
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
|
705
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
|
706
|
+
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
707
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
|
708
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
709
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
710
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
711
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
712
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
713
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
714
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
715
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
716
|
+
railties (3.2.12) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
|
717
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
718
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
719
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
720
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
721
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
722
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
723
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
|
724
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
725
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
726
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
727
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
728
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
729
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
730
|
+
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
|
731
|
+
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
732
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
733
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__3166129814561238358__call__996284714328951154__callbacks'
|
|
734
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
735
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
736
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
737
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
738
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
739
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
740
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
741
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
742
|
+
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
743
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
744
|
+
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
745
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
746
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
747
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
748
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
749
|
+
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
750
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
751
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
752
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
753
|
+
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
754
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
755
|
+
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
756
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
757
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
758
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
759
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
|
763
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
|
764
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.4ms)
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
768
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
769
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
770
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
771
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (273.2ms)
|
|
772
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
773
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
774
|
+
Completed 200 OK in 282ms (Views: 280.7ms | ActiveRecord: 0.3ms)
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
778
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
782
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
786
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
790
|
+
Served asset /level_up/home.css - 304 Not Modified (1ms)
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
794
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
798
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
802
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
806
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
810
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:13:03 +0200
|
|
814
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
818
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
819
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
820
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
821
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (25.9ms)
|
|
822
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
823
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
824
|
+
Completed 200 OK in 34ms (Views: 32.9ms | ActiveRecord: 0.3ms)
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
828
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
832
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
836
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
840
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
844
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
848
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
852
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
856
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
860
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:13:12 +0200
|
|
864
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
868
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
869
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
870
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
871
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (87.3ms)
|
|
872
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
873
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
874
|
+
Completed 200 OK in 96ms (Views: 95.0ms | ActiveRecord: 0.3ms)
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
878
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
882
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
886
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
890
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
894
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
898
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
902
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
906
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:13:55 +0200
|
|
910
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:13:56 +0200
|
|
914
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:18:01 +0200
|
|
918
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
919
|
+
Parameters: {"id"=>"1"}
|
|
920
|
+
[1m[36mLevelUp::Job Load (0.3ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
921
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (3.9ms)
|
|
922
|
+
Completed 500 Internal Server Error in 8ms
|
|
923
|
+
|
|
924
|
+
ActionView::Template::Error (undefined method `state?' for #<AccountBanish:0x000001031fe650>):
|
|
925
|
+
48: <div class="grid-4">
|
|
926
|
+
49: <div class="simple-panel job-commands">
|
|
927
|
+
50: <h2>Job commands</h2>
|
|
928
|
+
51: <% if @job.state?(:end) %>
|
|
929
|
+
52: Ended
|
|
930
|
+
53: <% elsif @job.queued? %>
|
|
931
|
+
54: <div class="command">
|
|
932
|
+
activemodel (3.2.12) lib/active_model/attribute_methods.rb:407:in `method_missing'
|
|
933
|
+
activerecord (3.2.12) lib/active_record/attribute_methods.rb:149:in `method_missing'
|
|
934
|
+
/Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb:51:in `___sers_kimious__orkspace_level_up_app_views_level_up_jobs_show_html_erb__2633263139727786675_2173705080'
|
|
935
|
+
actionpack (3.2.12) lib/action_view/template.rb:145:in `block in render'
|
|
936
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:125:in `instrument'
|
|
937
|
+
actionpack (3.2.12) lib/action_view/template.rb:143:in `render'
|
|
938
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
|
939
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
|
940
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
941
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
942
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
|
943
|
+
actionpack (3.2.12) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
|
944
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
|
945
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
|
946
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
|
947
|
+
actionpack (3.2.12) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
|
948
|
+
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
949
|
+
actionpack (3.2.12) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
950
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
|
951
|
+
actionpack (3.2.12) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
|
952
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
|
953
|
+
actionpack (3.2.12) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
|
954
|
+
actionpack (3.2.12) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
|
955
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:88:in `render'
|
|
956
|
+
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
957
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
|
958
|
+
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
959
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
|
960
|
+
activesupport (3.2.12) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
961
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
|
962
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
|
963
|
+
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
964
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
|
965
|
+
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
966
|
+
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
967
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:167:in `process_action'
|
|
968
|
+
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
969
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
970
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:414:in `_run__4495618274090452880__process_action__2273307736179661745__callbacks'
|
|
971
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
972
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
973
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
974
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
975
|
+
actionpack (3.2.12) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
976
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
977
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
978
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
979
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
|
980
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
981
|
+
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
982
|
+
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
983
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:121:in `process'
|
|
984
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
|
985
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
|
986
|
+
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
987
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
|
988
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
989
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
990
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
991
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
992
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
993
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
994
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
995
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
996
|
+
railties (3.2.12) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
|
997
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
998
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
999
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
1000
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
1001
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
1002
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
1003
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
|
1004
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
1005
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
1006
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
1007
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
1008
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
1009
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
1010
|
+
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
|
1011
|
+
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
1012
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
1013
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__3166129814561238358__call__996284714328951154__callbacks'
|
|
1014
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
1015
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
1016
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
1017
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1018
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
1019
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
1020
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
1021
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1022
|
+
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1023
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1024
|
+
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1025
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
1026
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1027
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1028
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1029
|
+
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1030
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1031
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
1032
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
1033
|
+
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
1034
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1035
|
+
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1036
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1037
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1038
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1039
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1040
|
+
|
|
1041
|
+
|
|
1042
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
|
1043
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
|
1044
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.9ms)
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1048
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1049
|
+
Parameters: {"id"=>"1"}
|
|
1050
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1051
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (5.1ms)
|
|
1052
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
1053
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1054
|
+
Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.1ms)
|
|
1055
|
+
|
|
1056
|
+
|
|
1057
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1058
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1062
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1066
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1070
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1071
|
+
|
|
1072
|
+
|
|
1073
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1074
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1075
|
+
|
|
1076
|
+
|
|
1077
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1078
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1082
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1083
|
+
|
|
1084
|
+
|
|
1085
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1086
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1090
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1094
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1095
|
+
Parameters: {"id"=>"1"}
|
|
1096
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1097
|
+
Rendered text template (0.0ms)
|
|
1098
|
+
Sent data job_1.svg (18.4ms)
|
|
1099
|
+
Completed 200 OK in 354ms (Views: 17.5ms | ActiveRecord: 0.1ms)
|
|
1100
|
+
|
|
1101
|
+
|
|
1102
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:18:16 +0200
|
|
1103
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1104
|
+
|
|
1105
|
+
|
|
1106
|
+
Started GET "/level_up/jobs/1/edit" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1107
|
+
Processing by LevelUp::JobsController#edit as HTML
|
|
1108
|
+
Parameters: {"id"=>"1"}
|
|
1109
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1110
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/edit.html.erb within layouts/level_up/application (39.7ms)
|
|
1111
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
1112
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1113
|
+
Completed 200 OK in 98ms (Views: 95.6ms | ActiveRecord: 0.2ms)
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1117
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1121
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1125
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1129
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1133
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1137
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1138
|
+
|
|
1139
|
+
|
|
1140
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1141
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1145
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1146
|
+
|
|
1147
|
+
|
|
1148
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1149
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1150
|
+
|
|
1151
|
+
|
|
1152
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:21:43 +0200
|
|
1153
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1154
|
+
|
|
1155
|
+
|
|
1156
|
+
Started GET "/level_up/jobs/1/edit" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1157
|
+
Processing by LevelUp::JobsController#edit as HTML
|
|
1158
|
+
Parameters: {"id"=>"1"}
|
|
1159
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1160
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/edit.html.erb within layouts/level_up/application (66.7ms)
|
|
1161
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (1.3ms)
|
|
1162
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1163
|
+
Completed 200 OK in 136ms (Views: 135.1ms | ActiveRecord: 0.2ms)
|
|
1164
|
+
|
|
1165
|
+
|
|
1166
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1167
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1171
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1175
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1176
|
+
|
|
1177
|
+
|
|
1178
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1179
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1180
|
+
|
|
1181
|
+
|
|
1182
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1183
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1184
|
+
|
|
1185
|
+
|
|
1186
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1187
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1188
|
+
|
|
1189
|
+
|
|
1190
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1191
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1195
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1196
|
+
|
|
1197
|
+
|
|
1198
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1199
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1200
|
+
|
|
1201
|
+
|
|
1202
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:22:00 +0200
|
|
1203
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
Started GET "/level_up/jobs/1/edit" for 127.0.0.1 at 2013-04-05 00:22:55 +0200
|
|
1207
|
+
Processing by LevelUp::JobsController#edit as HTML
|
|
1208
|
+
Parameters: {"id"=>"1"}
|
|
1209
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1210
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/edit.html.erb within layouts/level_up/application (31.7ms)
|
|
1211
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
1212
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1213
|
+
Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.1ms)
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:22:55 +0200
|
|
1217
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1218
|
+
|
|
1219
|
+
|
|
1220
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:22:55 +0200
|
|
1221
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1222
|
+
|
|
1223
|
+
|
|
1224
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:22:55 +0200
|
|
1225
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1226
|
+
|
|
1227
|
+
|
|
1228
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:55 +0200
|
|
1229
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1230
|
+
|
|
1231
|
+
|
|
1232
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:22:56 +0200
|
|
1233
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1234
|
+
|
|
1235
|
+
|
|
1236
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:56 +0200
|
|
1237
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1238
|
+
|
|
1239
|
+
|
|
1240
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:56 +0200
|
|
1241
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:56 +0200
|
|
1245
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:22:56 +0200
|
|
1249
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1250
|
+
|
|
1251
|
+
|
|
1252
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:22:56 +0200
|
|
1253
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1257
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1258
|
+
Parameters: {"id"=>"1"}
|
|
1259
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1260
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (3.4ms)
|
|
1261
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
1262
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
1263
|
+
Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.1ms)
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1267
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1271
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1275
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1279
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1283
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1284
|
+
|
|
1285
|
+
|
|
1286
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1287
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1288
|
+
|
|
1289
|
+
|
|
1290
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1291
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1295
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1296
|
+
|
|
1297
|
+
|
|
1298
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:01 +0200
|
|
1299
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:23:02 +0200
|
|
1303
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1304
|
+
Parameters: {"id"=>"1"}
|
|
1305
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1306
|
+
Rendered text template (0.0ms)
|
|
1307
|
+
Sent data job_1.svg (2.3ms)
|
|
1308
|
+
Completed 200 OK in 62ms (Views: 1.9ms | ActiveRecord: 0.1ms)
|
|
1309
|
+
|
|
1310
|
+
|
|
1311
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:23:02 +0200
|
|
1312
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1313
|
+
|
|
1314
|
+
|
|
1315
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:23:23 +0200
|
|
1316
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1317
|
+
Parameters: {"id"=>"1"}
|
|
1318
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1319
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (7.8ms)
|
|
1320
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (1.0ms)
|
|
1321
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1322
|
+
Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.2ms)
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:23:23 +0200
|
|
1326
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:23:23 +0200
|
|
1330
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1331
|
+
|
|
1332
|
+
|
|
1333
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:23:23 +0200
|
|
1334
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1335
|
+
|
|
1336
|
+
|
|
1337
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:23 +0200
|
|
1338
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1339
|
+
|
|
1340
|
+
|
|
1341
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:23:23 +0200
|
|
1342
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:23 +0200
|
|
1346
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:23 +0200
|
|
1350
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:23 +0200
|
|
1354
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1355
|
+
|
|
1356
|
+
|
|
1357
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:23:24 +0200
|
|
1358
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:23:24 +0200
|
|
1362
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1363
|
+
Parameters: {"id"=>"1"}
|
|
1364
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1365
|
+
Rendered text template (0.0ms)
|
|
1366
|
+
Sent data job_1.svg (6.1ms)
|
|
1367
|
+
Completed 200 OK in 49ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
|
1368
|
+
|
|
1369
|
+
|
|
1370
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:23:24 +0200
|
|
1371
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1372
|
+
|
|
1373
|
+
|
|
1374
|
+
Started POST "/level_up/jobs/1/reboot" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1375
|
+
Processing by LevelUp::JobsController#reboot as HTML
|
|
1376
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Reboot", "id"=>"1"}
|
|
1377
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1378
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1379
|
+
[1m[36mSQL (14.9ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Thu, 04 Apr 2013 22:24:18 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:Delayed::PerformableMethod\nobject: !ruby/ActiveRecord:AccountBanish\n attributes:\n id: 1\n type: AccountBanish\n delayed_job_id: \n key: account-2376\n task: start\n error: f\n timer: f\n manual_task: f\n manual_task_description: \n failed_at: \n failed_in: \n backtrace: !ruby/struct:ActiveRecord::AttributeMethods::Serialization::Attribute\n coder: !ruby/object:ActiveRecord::Coders::YAMLColumn\n object_class: !ruby/class 'Object'\n value: \n state: :serialized\n started_at: \n ended_at: \n canceled_at: \n retry_at: \n created_at: '2013-04-04 22:12:05.502100'\n updated_at: '2013-04-04 22:12:05.502100'\nmethod_name: :event!\nargs:\n- \n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Thu, 04 Apr 2013 22:24:18 UTC +00:00], ["updated_at", Thu, 04 Apr 2013 22:24:18 UTC +00:00]]
|
|
1380
|
+
[1m[35m (0.3ms)[0m UPDATE "level_up_jobs" SET "delayed_job_id" = 1, "updated_at" = '2013-04-04 22:24:18.138255', "backtrace" = '---
|
|
1381
|
+
...
|
|
1382
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1
|
|
1383
|
+
[1m[36m (16.5ms)[0m [1mcommit transaction[0m
|
|
1384
|
+
Redirected to http://localhost:4000/level_up/jobs/1
|
|
1385
|
+
Completed 302 Found in 59ms (ActiveRecord: 32.2ms)
|
|
1386
|
+
|
|
1387
|
+
|
|
1388
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1389
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1390
|
+
Parameters: {"id"=>"1"}
|
|
1391
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1392
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 1 LIMIT 1[0m
|
|
1393
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (22.0ms)
|
|
1394
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
1395
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1396
|
+
Completed 200 OK in 32ms (Views: 30.3ms | ActiveRecord: 0.3ms)
|
|
1397
|
+
|
|
1398
|
+
|
|
1399
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1400
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1401
|
+
|
|
1402
|
+
|
|
1403
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1404
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1405
|
+
|
|
1406
|
+
|
|
1407
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1408
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1412
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1413
|
+
|
|
1414
|
+
|
|
1415
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1416
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1420
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1424
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1425
|
+
|
|
1426
|
+
|
|
1427
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1428
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1429
|
+
|
|
1430
|
+
|
|
1431
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1432
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1436
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1437
|
+
Parameters: {"id"=>"1"}
|
|
1438
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1439
|
+
Rendered text template (0.0ms)
|
|
1440
|
+
Sent data job_1.svg (2.0ms)
|
|
1441
|
+
Completed 200 OK in 58ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:24:18 +0200
|
|
1445
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
Started POST "/level_up/jobs/1/unqueue" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1449
|
+
Processing by LevelUp::JobsController#unqueue as HTML
|
|
1450
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Unqueue", "id"=>"1"}
|
|
1451
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1452
|
+
[1m[35mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 1 LIMIT 1
|
|
1453
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1454
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 1]]
|
|
1455
|
+
[1m[36m (38.0ms)[0m [1mcommit transaction[0m
|
|
1456
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1457
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "level_up_jobs" SET "delayed_job_id" = NULL, "updated_at" = '2013-04-04 22:24:23.335408', "backtrace" = '---
|
|
1458
|
+
...
|
|
1459
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1[0m
|
|
1460
|
+
[1m[35m (3.8ms)[0m commit transaction
|
|
1461
|
+
Redirected to http://localhost:4000/level_up/jobs/1
|
|
1462
|
+
Completed 302 Found in 55ms (ActiveRecord: 43.0ms)
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1466
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1467
|
+
Parameters: {"id"=>"1"}
|
|
1468
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1469
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (4.0ms)
|
|
1470
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
1471
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1472
|
+
Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.1ms)
|
|
1473
|
+
|
|
1474
|
+
|
|
1475
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1476
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1477
|
+
|
|
1478
|
+
|
|
1479
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1480
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1481
|
+
|
|
1482
|
+
|
|
1483
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1484
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1485
|
+
|
|
1486
|
+
|
|
1487
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1488
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1489
|
+
|
|
1490
|
+
|
|
1491
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1492
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1496
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1497
|
+
|
|
1498
|
+
|
|
1499
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1500
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1501
|
+
|
|
1502
|
+
|
|
1503
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:23 +0200
|
|
1504
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1505
|
+
|
|
1506
|
+
|
|
1507
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:24 +0200
|
|
1508
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:24:24 +0200
|
|
1512
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1513
|
+
Parameters: {"id"=>"1"}
|
|
1514
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1515
|
+
Rendered text template (0.0ms)
|
|
1516
|
+
Sent data job_1.svg (1.7ms)
|
|
1517
|
+
Completed 200 OK in 54ms (Views: 1.3ms | ActiveRecord: 0.1ms)
|
|
1518
|
+
|
|
1519
|
+
|
|
1520
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:24:24 +0200
|
|
1521
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1522
|
+
|
|
1523
|
+
|
|
1524
|
+
Started POST "/level_up/jobs/1/move?task=banish" for 127.0.0.1 at 2013-04-05 00:24:28 +0200
|
|
1525
|
+
Processing by LevelUp::JobsController#move as HTML
|
|
1526
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Move to: Banish", "task"=>"banish", "id"=>"1"}
|
|
1527
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1528
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
1529
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Thu, 04 Apr 2013 22:24:28 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:Delayed::PerformableMethod\nobject: !ruby/ActiveRecord:AccountBanish\n attributes:\n id: 1\n type: AccountBanish\n delayed_job_id: \n key: account-2376\n task: start\n error: f\n timer: f\n manual_task: f\n manual_task_description: \n failed_at: \n failed_in: \n backtrace: !ruby/struct:ActiveRecord::AttributeMethods::Serialization::Attribute\n coder: !ruby/object:ActiveRecord::Coders::YAMLColumn\n object_class: !ruby/class 'Object'\n value: ! \"--- \\n...\\n\"\n state: :serialized\n started_at: \n ended_at: \n canceled_at: \n retry_at: \n created_at: '2013-04-04 22:12:05.502100'\n updated_at: '2013-04-04 22:24:23.335408'\nmethod_name: :event!\nargs:\n- banish\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Thu, 04 Apr 2013 22:24:28 UTC +00:00], ["updated_at", Thu, 04 Apr 2013 22:24:28 UTC +00:00]]
|
|
1530
|
+
[1m[35m (0.3ms)[0m UPDATE "level_up_jobs" SET "delayed_job_id" = 2, "updated_at" = '2013-04-04 22:24:28.159396', "backtrace" = '---
|
|
1531
|
+
...
|
|
1532
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1
|
|
1533
|
+
[1m[36m (44.4ms)[0m [1mcommit transaction[0m
|
|
1534
|
+
Completed 404 Not Found in 61ms
|
|
1535
|
+
|
|
1536
|
+
ActionController::RoutingError (No route matches {:action=>"show", :controller=>"level_up/jobs", :id=>nil}):
|
|
1537
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:533:in `raise_routing_error'
|
|
1538
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:529:in `rescue in generate'
|
|
1539
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:521:in `generate'
|
|
1540
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:562:in `generate'
|
|
1541
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:587:in `url_for'
|
|
1542
|
+
actionpack (3.2.12) lib/action_dispatch/routing/url_for.rb:148:in `url_for'
|
|
1543
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:213:in `job_path'
|
|
1544
|
+
/Users/kimious/Workspace/level_up/app/controllers/level_up/jobs_controller.rb:72:in `move'
|
|
1545
|
+
actionpack (3.2.12) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
1546
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:167:in `process_action'
|
|
1547
|
+
actionpack (3.2.12) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
1548
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
1549
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:414:in `_run__4495618274090452880__process_action__4280298609866671705__callbacks'
|
|
1550
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
1551
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
1552
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
1553
|
+
actionpack (3.2.12) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
1554
|
+
actionpack (3.2.12) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
1555
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
1556
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
1557
|
+
activesupport (3.2.12) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
1558
|
+
activesupport (3.2.12) lib/active_support/notifications.rb:123:in `instrument'
|
|
1559
|
+
actionpack (3.2.12) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
1560
|
+
actionpack (3.2.12) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
1561
|
+
activerecord (3.2.12) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
1562
|
+
actionpack (3.2.12) lib/abstract_controller/base.rb:121:in `process'
|
|
1563
|
+
actionpack (3.2.12) lib/abstract_controller/rendering.rb:45:in `process'
|
|
1564
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:203:in `dispatch'
|
|
1565
|
+
actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
1566
|
+
actionpack (3.2.12) lib/action_controller/metal.rb:246:in `block in action'
|
|
1567
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
1568
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
1569
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
1570
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
1571
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
1572
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
1573
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
1574
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
1575
|
+
railties (3.2.12) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
|
1576
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
1577
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
1578
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
1579
|
+
actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
1580
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
1581
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
1582
|
+
rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
|
|
1583
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
1584
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
1585
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
1586
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
1587
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
1588
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
1589
|
+
activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
|
|
1590
|
+
activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
1591
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
1592
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `_run__3166129814561238358__call__996284714328951154__callbacks'
|
|
1593
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
1594
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
1595
|
+
activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
1596
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1597
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
1598
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
1599
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
1600
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1601
|
+
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1602
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1603
|
+
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1604
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
1605
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1606
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1607
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1608
|
+
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1609
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1610
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
1611
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
1612
|
+
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
1613
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1614
|
+
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1615
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1616
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
1617
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
1618
|
+
/Users/kimious/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
1619
|
+
|
|
1620
|
+
|
|
1621
|
+
Rendered /Users/kimious/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
|
|
1622
|
+
|
|
1623
|
+
|
|
1624
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1625
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1626
|
+
Parameters: {"id"=>"1"}
|
|
1627
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1628
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 2 LIMIT 1[0m
|
|
1629
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (5.4ms)
|
|
1630
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
1631
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1632
|
+
Completed 200 OK in 55ms (Views: 13.8ms | ActiveRecord: 1.2ms)
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1636
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1640
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1641
|
+
|
|
1642
|
+
|
|
1643
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1644
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1645
|
+
|
|
1646
|
+
|
|
1647
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1648
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1649
|
+
|
|
1650
|
+
|
|
1651
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1652
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1653
|
+
|
|
1654
|
+
|
|
1655
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1656
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1657
|
+
|
|
1658
|
+
|
|
1659
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1660
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1661
|
+
|
|
1662
|
+
|
|
1663
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1664
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1665
|
+
|
|
1666
|
+
|
|
1667
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1668
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1672
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1673
|
+
Parameters: {"id"=>"1"}
|
|
1674
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1675
|
+
Rendered text template (0.0ms)
|
|
1676
|
+
Sent data job_1.svg (2.2ms)
|
|
1677
|
+
Completed 200 OK in 66ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
|
1678
|
+
|
|
1679
|
+
|
|
1680
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:24:57 +0200
|
|
1681
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1682
|
+
|
|
1683
|
+
|
|
1684
|
+
Started POST "/level_up/jobs/1/unqueue" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1685
|
+
Processing by LevelUp::JobsController#unqueue as HTML
|
|
1686
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Unqueue", "id"=>"1"}
|
|
1687
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1688
|
+
[1m[35mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 2 LIMIT 1
|
|
1689
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1690
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 2]]
|
|
1691
|
+
[1m[36m (43.8ms)[0m [1mcommit transaction[0m
|
|
1692
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
1693
|
+
[1m[36m (0.5ms)[0m [1mUPDATE "level_up_jobs" SET "delayed_job_id" = NULL, "updated_at" = '2013-04-04 22:25:01.200438', "backtrace" = '---
|
|
1694
|
+
...
|
|
1695
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1[0m
|
|
1696
|
+
[1m[35m (4.3ms)[0m commit transaction
|
|
1697
|
+
Redirected to http://localhost:4000/level_up/jobs/1
|
|
1698
|
+
Completed 302 Found in 64ms (ActiveRecord: 49.5ms)
|
|
1699
|
+
|
|
1700
|
+
|
|
1701
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1702
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1703
|
+
Parameters: {"id"=>"1"}
|
|
1704
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1705
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (4.1ms)
|
|
1706
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
1707
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1708
|
+
Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.1ms)
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1712
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1713
|
+
|
|
1714
|
+
|
|
1715
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1716
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1717
|
+
|
|
1718
|
+
|
|
1719
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1720
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1721
|
+
|
|
1722
|
+
|
|
1723
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1724
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1725
|
+
|
|
1726
|
+
|
|
1727
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1728
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1732
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1733
|
+
|
|
1734
|
+
|
|
1735
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1736
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1737
|
+
|
|
1738
|
+
|
|
1739
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1740
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1741
|
+
|
|
1742
|
+
|
|
1743
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1744
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1745
|
+
|
|
1746
|
+
|
|
1747
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1748
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1749
|
+
Parameters: {"id"=>"1"}
|
|
1750
|
+
[1m[35mLevelUp::Job Load (0.4ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1751
|
+
Rendered text template (0.0ms)
|
|
1752
|
+
Sent data job_1.svg (4.1ms)
|
|
1753
|
+
Completed 200 OK in 69ms (Views: 3.2ms | ActiveRecord: 0.4ms)
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:25:01 +0200
|
|
1757
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1758
|
+
|
|
1759
|
+
|
|
1760
|
+
Started POST "/level_up/jobs/1/move?task=banish" for 127.0.0.1 at 2013-04-05 00:25:02 +0200
|
|
1761
|
+
Processing by LevelUp::JobsController#move as HTML
|
|
1762
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Move to: Banish", "task"=>"banish", "id"=>"1"}
|
|
1763
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1764
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1765
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Thu, 04 Apr 2013 22:25:02 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:Delayed::PerformableMethod\nobject: !ruby/ActiveRecord:AccountBanish\n attributes:\n id: 1\n type: AccountBanish\n delayed_job_id: \n key: account-2376\n task: start\n error: f\n timer: f\n manual_task: f\n manual_task_description: \n failed_at: \n failed_in: \n backtrace: !ruby/struct:ActiveRecord::AttributeMethods::Serialization::Attribute\n coder: !ruby/object:ActiveRecord::Coders::YAMLColumn\n object_class: !ruby/class 'Object'\n value: ! \"--- \\n...\\n\"\n state: :serialized\n started_at: \n ended_at: \n canceled_at: \n retry_at: \n created_at: '2013-04-04 22:12:05.502100'\n updated_at: '2013-04-04 22:25:01.200438'\nmethod_name: :event!\nargs:\n- banish\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Thu, 04 Apr 2013 22:25:02 UTC +00:00], ["updated_at", Thu, 04 Apr 2013 22:25:02 UTC +00:00]]
|
|
1766
|
+
[1m[35m (0.3ms)[0m UPDATE "level_up_jobs" SET "delayed_job_id" = 3, "updated_at" = '2013-04-04 22:25:02.944772', "backtrace" = '---
|
|
1767
|
+
...
|
|
1768
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1
|
|
1769
|
+
[1m[36m (3.7ms)[0m [1mcommit transaction[0m
|
|
1770
|
+
Redirected to http://localhost:4000/level_up/jobs/1
|
|
1771
|
+
Completed 302 Found in 20ms (ActiveRecord: 4.9ms)
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:25:02 +0200
|
|
1775
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1776
|
+
Parameters: {"id"=>"1"}
|
|
1777
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1778
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 3 LIMIT 1[0m
|
|
1779
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (4.1ms)
|
|
1780
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
1781
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1782
|
+
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.3ms)
|
|
1783
|
+
|
|
1784
|
+
|
|
1785
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1786
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1790
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1791
|
+
|
|
1792
|
+
|
|
1793
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1794
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1795
|
+
|
|
1796
|
+
|
|
1797
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1798
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1799
|
+
|
|
1800
|
+
|
|
1801
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1802
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1803
|
+
|
|
1804
|
+
|
|
1805
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1806
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1807
|
+
|
|
1808
|
+
|
|
1809
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1810
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1811
|
+
|
|
1812
|
+
|
|
1813
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1814
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1815
|
+
|
|
1816
|
+
|
|
1817
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1818
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1819
|
+
|
|
1820
|
+
|
|
1821
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1822
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1823
|
+
Parameters: {"id"=>"1"}
|
|
1824
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1825
|
+
Rendered text template (0.0ms)
|
|
1826
|
+
Sent data job_1.svg (1.3ms)
|
|
1827
|
+
Completed 200 OK in 104ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
|
1828
|
+
|
|
1829
|
+
|
|
1830
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:25:03 +0200
|
|
1831
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1832
|
+
|
|
1833
|
+
|
|
1834
|
+
Started POST "/level_up/jobs/1/unqueue" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1835
|
+
Processing by LevelUp::JobsController#unqueue as HTML
|
|
1836
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Unqueue", "id"=>"1"}
|
|
1837
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1838
|
+
[1m[35mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 3 LIMIT 1
|
|
1839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1840
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 3]]
|
|
1841
|
+
[1m[36m (40.6ms)[0m [1mcommit transaction[0m
|
|
1842
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1843
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "level_up_jobs" SET "delayed_job_id" = NULL, "updated_at" = '2013-04-04 22:25:04.249038', "backtrace" = '---
|
|
1844
|
+
...
|
|
1845
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1[0m
|
|
1846
|
+
[1m[35m (4.0ms)[0m commit transaction
|
|
1847
|
+
Redirected to http://localhost:4000/level_up/jobs/1
|
|
1848
|
+
Completed 302 Found in 56ms (ActiveRecord: 45.8ms)
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1852
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1853
|
+
Parameters: {"id"=>"1"}
|
|
1854
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1855
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (4.5ms)
|
|
1856
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
1857
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1858
|
+
Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms)
|
|
1859
|
+
|
|
1860
|
+
|
|
1861
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1862
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1863
|
+
|
|
1864
|
+
|
|
1865
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1866
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1867
|
+
|
|
1868
|
+
|
|
1869
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1870
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1871
|
+
|
|
1872
|
+
|
|
1873
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1874
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1875
|
+
|
|
1876
|
+
|
|
1877
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1878
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1879
|
+
|
|
1880
|
+
|
|
1881
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1882
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1883
|
+
|
|
1884
|
+
|
|
1885
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1886
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1887
|
+
|
|
1888
|
+
|
|
1889
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1890
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1891
|
+
|
|
1892
|
+
|
|
1893
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1894
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1895
|
+
|
|
1896
|
+
|
|
1897
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1898
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1899
|
+
Parameters: {"id"=>"1"}
|
|
1900
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1901
|
+
Rendered text template (0.0ms)
|
|
1902
|
+
Sent data job_1.svg (4.3ms)
|
|
1903
|
+
Completed 200 OK in 41ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
|
1904
|
+
|
|
1905
|
+
|
|
1906
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:25:04 +0200
|
|
1907
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1908
|
+
|
|
1909
|
+
|
|
1910
|
+
Started POST "/level_up/jobs/1/run" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1911
|
+
Processing by LevelUp::JobsController#run as HTML
|
|
1912
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Rerun the current task", "id"=>"1"}
|
|
1913
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1914
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1915
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "level_up_jobs" SET "updated_at" = '2013-04-04 22:25:06.195992', "backtrace" = '---
|
|
1916
|
+
...
|
|
1917
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1[0m
|
|
1918
|
+
[1m[35m (39.3ms)[0m commit transaction
|
|
1919
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1920
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
1921
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1922
|
+
[1m[35m (0.4ms)[0m UPDATE "level_up_jobs" SET "started_at" = '2013-04-04 22:25:06.000000', "updated_at" = '2013-04-04 22:25:06.243006', "backtrace" = '---
|
|
1923
|
+
...
|
|
1924
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1
|
|
1925
|
+
[1m[36m (5.0ms)[0m [1mcommit transaction[0m
|
|
1926
|
+
Redirected to http://localhost:4000/level_up/jobs/1
|
|
1927
|
+
Completed 302 Found in 66ms (ActiveRecord: 45.6ms)
|
|
1928
|
+
|
|
1929
|
+
|
|
1930
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1931
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
1932
|
+
Parameters: {"id"=>"1"}
|
|
1933
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1934
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (7.0ms)
|
|
1935
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (1.3ms)
|
|
1936
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1937
|
+
Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.1ms)
|
|
1938
|
+
|
|
1939
|
+
|
|
1940
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1941
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
1942
|
+
|
|
1943
|
+
|
|
1944
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1945
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
1946
|
+
|
|
1947
|
+
|
|
1948
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1949
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
1950
|
+
|
|
1951
|
+
|
|
1952
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1953
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1954
|
+
|
|
1955
|
+
|
|
1956
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1957
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
1958
|
+
|
|
1959
|
+
|
|
1960
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1961
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1962
|
+
|
|
1963
|
+
|
|
1964
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1965
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
1966
|
+
|
|
1967
|
+
|
|
1968
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1969
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
1970
|
+
|
|
1971
|
+
|
|
1972
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1973
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
1974
|
+
|
|
1975
|
+
|
|
1976
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1977
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
1978
|
+
Parameters: {"id"=>"1"}
|
|
1979
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
1980
|
+
Rendered text template (0.0ms)
|
|
1981
|
+
Sent data job_1.svg (5.1ms)
|
|
1982
|
+
Completed 200 OK in 38ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
|
1983
|
+
|
|
1984
|
+
|
|
1985
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:25:06 +0200
|
|
1986
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
1987
|
+
|
|
1988
|
+
|
|
1989
|
+
Started GET "/level_up/jobs/1/edit" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
1990
|
+
Processing by LevelUp::JobsController#edit as HTML
|
|
1991
|
+
Parameters: {"id"=>"1"}
|
|
1992
|
+
[1m[35mLevelUp::Job Load (0.3ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
1993
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/edit.html.erb within layouts/level_up/application (38.2ms)
|
|
1994
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
1995
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
1996
|
+
Completed 200 OK in 49ms (Views: 46.6ms | ActiveRecord: 0.3ms)
|
|
1997
|
+
|
|
1998
|
+
|
|
1999
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2000
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2001
|
+
|
|
2002
|
+
|
|
2003
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2004
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2005
|
+
|
|
2006
|
+
|
|
2007
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2008
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2009
|
+
|
|
2010
|
+
|
|
2011
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2012
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2013
|
+
|
|
2014
|
+
|
|
2015
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2016
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2017
|
+
|
|
2018
|
+
|
|
2019
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2020
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2021
|
+
|
|
2022
|
+
|
|
2023
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2024
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2025
|
+
|
|
2026
|
+
|
|
2027
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2028
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2029
|
+
|
|
2030
|
+
|
|
2031
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2032
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2033
|
+
|
|
2034
|
+
|
|
2035
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:25:30 +0200
|
|
2036
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2037
|
+
|
|
2038
|
+
|
|
2039
|
+
Started PUT "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2040
|
+
Processing by LevelUp::JobsController#update as HTML
|
|
2041
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "job"=>{"key"=>"account-2376", "task"=>"start", "timer"=>"0", "manual_task"=>"0", "error"=>"0", "created_at(1i)"=>"2013", "created_at(2i)"=>"4", "created_at(3i)"=>"4", "created_at(4i)"=>"22", "created_at(5i)"=>"12", "created_at(6i)"=>"05", "updated_at(1i)"=>"2013", "updated_at(2i)"=>"4", "updated_at(3i)"=>"4", "updated_at(4i)"=>"22", "updated_at(5i)"=>"25", "updated_at(6i)"=>"06", "started_at(1i)"=>"", "started_at(2i)"=>"4", "started_at(3i)"=>"4", "started_at(4i)"=>"22", "started_at(5i)"=>"25", "started_at(6i)"=>"06", "ended_at(1i)"=>"", "ended_at(2i)"=>"", "ended_at(3i)"=>"", "ended_at(4i)"=>"", "ended_at(5i)"=>"", "ended_at(6i)"=>"", "canceled_at(1i)"=>"", "canceled_at(2i)"=>"", "canceled_at(3i)"=>"", "canceled_at(4i)"=>"", "canceled_at(5i)"=>"", "canceled_at(6i)"=>""}, "commit"=>"Update", "id"=>"1"}
|
|
2042
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2043
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2044
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "level_up_jobs" SET "started_at" = NULL, "updated_at" = '2013-04-04 22:25:34.717536', "backtrace" = '---
|
|
2045
|
+
...
|
|
2046
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1[0m
|
|
2047
|
+
[1m[35m (66.8ms)[0m commit transaction
|
|
2048
|
+
Redirected to http://localhost:4000/level_up/jobs/1
|
|
2049
|
+
Completed 302 Found in 137ms (ActiveRecord: 67.4ms)
|
|
2050
|
+
|
|
2051
|
+
|
|
2052
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2053
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
2054
|
+
Parameters: {"id"=>"1"}
|
|
2055
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2056
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (3.5ms)
|
|
2057
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
2058
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2059
|
+
Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.1ms)
|
|
2060
|
+
|
|
2061
|
+
|
|
2062
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2063
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2064
|
+
|
|
2065
|
+
|
|
2066
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2067
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2068
|
+
|
|
2069
|
+
|
|
2070
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2071
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2075
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2076
|
+
|
|
2077
|
+
|
|
2078
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2079
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2080
|
+
|
|
2081
|
+
|
|
2082
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2083
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2084
|
+
|
|
2085
|
+
|
|
2086
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2087
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2088
|
+
|
|
2089
|
+
|
|
2090
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2091
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2092
|
+
|
|
2093
|
+
|
|
2094
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2095
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2096
|
+
|
|
2097
|
+
|
|
2098
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:25:34 +0200
|
|
2099
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
2100
|
+
Parameters: {"id"=>"1"}
|
|
2101
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2102
|
+
Rendered text template (0.0ms)
|
|
2103
|
+
Sent data job_1.svg (2.8ms)
|
|
2104
|
+
Completed 200 OK in 41ms (Views: 2.2ms | ActiveRecord: 0.1ms)
|
|
2105
|
+
|
|
2106
|
+
|
|
2107
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:25:35 +0200
|
|
2108
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2109
|
+
|
|
2110
|
+
|
|
2111
|
+
Started POST "/level_up/jobs/1/run" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2112
|
+
Processing by LevelUp::JobsController#run as HTML
|
|
2113
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Rerun the current task", "id"=>"1"}
|
|
2114
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2115
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2116
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "level_up_jobs" SET "updated_at" = '2013-04-04 22:25:41.763627', "backtrace" = '---
|
|
2117
|
+
...
|
|
2118
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1[0m
|
|
2119
|
+
[1m[35m (43.2ms)[0m commit transaction
|
|
2120
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
2121
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
2122
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2123
|
+
[1m[35m (0.4ms)[0m UPDATE "level_up_jobs" SET "started_at" = '2013-04-04 22:25:41.000000', "updated_at" = '2013-04-04 22:25:41.810646', "backtrace" = '---
|
|
2124
|
+
...
|
|
2125
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1
|
|
2126
|
+
[1m[36m (4.4ms)[0m [1mcommit transaction[0m
|
|
2127
|
+
Redirected to http://localhost:4000/level_up/jobs/1
|
|
2128
|
+
Completed 302 Found in 66ms (ActiveRecord: 49.0ms)
|
|
2129
|
+
|
|
2130
|
+
|
|
2131
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2132
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
2133
|
+
Parameters: {"id"=>"1"}
|
|
2134
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2135
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (4.5ms)
|
|
2136
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
2137
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2138
|
+
Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.1ms)
|
|
2139
|
+
|
|
2140
|
+
|
|
2141
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2142
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2143
|
+
|
|
2144
|
+
|
|
2145
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2146
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2147
|
+
|
|
2148
|
+
|
|
2149
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2150
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2151
|
+
|
|
2152
|
+
|
|
2153
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2154
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2155
|
+
|
|
2156
|
+
|
|
2157
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2158
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2159
|
+
|
|
2160
|
+
|
|
2161
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2162
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2163
|
+
|
|
2164
|
+
|
|
2165
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2166
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2167
|
+
|
|
2168
|
+
|
|
2169
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2170
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2171
|
+
|
|
2172
|
+
|
|
2173
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2174
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2175
|
+
|
|
2176
|
+
|
|
2177
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:25:41 +0200
|
|
2178
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
2179
|
+
Parameters: {"id"=>"1"}
|
|
2180
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2181
|
+
Rendered text template (0.0ms)
|
|
2182
|
+
Sent data job_1.svg (2.4ms)
|
|
2183
|
+
Completed 200 OK in 59ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
|
2184
|
+
|
|
2185
|
+
|
|
2186
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:25:42 +0200
|
|
2187
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2188
|
+
|
|
2189
|
+
|
|
2190
|
+
Started GET "/level_up/jobs/1/edit" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2191
|
+
Processing by LevelUp::JobsController#edit as HTML
|
|
2192
|
+
Parameters: {"id"=>"1"}
|
|
2193
|
+
[1m[35mLevelUp::Job Load (0.4ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2194
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/edit.html.erb within layouts/level_up/application (74.5ms)
|
|
2195
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (1.1ms)
|
|
2196
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2197
|
+
Completed 200 OK in 85ms (Views: 83.4ms | ActiveRecord: 0.4ms)
|
|
2198
|
+
|
|
2199
|
+
|
|
2200
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2201
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2202
|
+
|
|
2203
|
+
|
|
2204
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2205
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2206
|
+
|
|
2207
|
+
|
|
2208
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2209
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2210
|
+
|
|
2211
|
+
|
|
2212
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2213
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2214
|
+
|
|
2215
|
+
|
|
2216
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2217
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2218
|
+
|
|
2219
|
+
|
|
2220
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2221
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2222
|
+
|
|
2223
|
+
|
|
2224
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2225
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2226
|
+
|
|
2227
|
+
|
|
2228
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2229
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2230
|
+
|
|
2231
|
+
|
|
2232
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2233
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2234
|
+
|
|
2235
|
+
|
|
2236
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:25:43 +0200
|
|
2237
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2238
|
+
|
|
2239
|
+
|
|
2240
|
+
Started PUT "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:25:46 +0200
|
|
2241
|
+
Processing by LevelUp::JobsController#update as HTML
|
|
2242
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "job"=>{"key"=>"account-2376", "task"=>"start", "timer"=>"0", "manual_task"=>"0", "error"=>"0", "created_at(1i)"=>"2013", "created_at(2i)"=>"4", "created_at(3i)"=>"4", "created_at(4i)"=>"22", "created_at(5i)"=>"12", "created_at(6i)"=>"05", "updated_at(1i)"=>"2013", "updated_at(2i)"=>"4", "updated_at(3i)"=>"4", "updated_at(4i)"=>"22", "updated_at(5i)"=>"25", "updated_at(6i)"=>"41", "started_at(1i)"=>"", "started_at(2i)"=>"4", "started_at(3i)"=>"4", "started_at(4i)"=>"22", "started_at(5i)"=>"25", "started_at(6i)"=>"41", "ended_at(1i)"=>"", "ended_at(2i)"=>"", "ended_at(3i)"=>"", "ended_at(4i)"=>"", "ended_at(5i)"=>"", "ended_at(6i)"=>"", "canceled_at(1i)"=>"", "canceled_at(2i)"=>"", "canceled_at(3i)"=>"", "canceled_at(4i)"=>"", "canceled_at(5i)"=>"", "canceled_at(6i)"=>""}, "commit"=>"Update", "id"=>"1"}
|
|
2243
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2244
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2245
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "level_up_jobs" SET "started_at" = NULL, "updated_at" = '2013-04-04 22:25:46.973131', "backtrace" = '---
|
|
2246
|
+
...
|
|
2247
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 1[0m
|
|
2248
|
+
[1m[35m (16.7ms)[0m commit transaction
|
|
2249
|
+
Redirected to http://localhost:4000/level_up/jobs/1
|
|
2250
|
+
Completed 302 Found in 30ms (ActiveRecord: 17.3ms)
|
|
2251
|
+
|
|
2252
|
+
|
|
2253
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2254
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
2255
|
+
Parameters: {"id"=>"1"}
|
|
2256
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2257
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (4.8ms)
|
|
2258
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
2259
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2260
|
+
Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.1ms)
|
|
2261
|
+
|
|
2262
|
+
|
|
2263
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2264
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2265
|
+
|
|
2266
|
+
|
|
2267
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2268
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2269
|
+
|
|
2270
|
+
|
|
2271
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2272
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2273
|
+
|
|
2274
|
+
|
|
2275
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2276
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2277
|
+
|
|
2278
|
+
|
|
2279
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2280
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2281
|
+
|
|
2282
|
+
|
|
2283
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2284
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2285
|
+
|
|
2286
|
+
|
|
2287
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2288
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2289
|
+
|
|
2290
|
+
|
|
2291
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2292
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2293
|
+
|
|
2294
|
+
|
|
2295
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2296
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2297
|
+
|
|
2298
|
+
|
|
2299
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2300
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
2301
|
+
Parameters: {"id"=>"1"}
|
|
2302
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2303
|
+
Rendered text template (0.0ms)
|
|
2304
|
+
Sent data job_1.svg (4.2ms)
|
|
2305
|
+
Completed 200 OK in 44ms (Views: 2.0ms | ActiveRecord: 0.1ms)
|
|
2306
|
+
|
|
2307
|
+
|
|
2308
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:25:47 +0200
|
|
2309
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2310
|
+
|
|
2311
|
+
|
|
2312
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2313
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
2314
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
2315
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
2316
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (34.7ms)
|
|
2317
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
2318
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
2319
|
+
Completed 200 OK in 44ms (Views: 42.6ms | ActiveRecord: 0.4ms)
|
|
2320
|
+
|
|
2321
|
+
|
|
2322
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2323
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2324
|
+
|
|
2325
|
+
|
|
2326
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2327
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2328
|
+
|
|
2329
|
+
|
|
2330
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2331
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2332
|
+
|
|
2333
|
+
|
|
2334
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2335
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2336
|
+
|
|
2337
|
+
|
|
2338
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2339
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2340
|
+
|
|
2341
|
+
|
|
2342
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2343
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2344
|
+
|
|
2345
|
+
|
|
2346
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2347
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2348
|
+
|
|
2349
|
+
|
|
2350
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2351
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2352
|
+
|
|
2353
|
+
|
|
2354
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2355
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2356
|
+
|
|
2357
|
+
|
|
2358
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:27:29 +0200
|
|
2359
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2360
|
+
|
|
2361
|
+
|
|
2362
|
+
Started GET "/level_up/" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2363
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
2364
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at[0m
|
|
2365
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at
|
|
2366
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at[0m
|
|
2367
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at
|
|
2368
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)[0m
|
|
2369
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1
|
|
2370
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
2371
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't'
|
|
2372
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' LIMIT 1[0m
|
|
2373
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
2374
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'[0m
|
|
2375
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 1
|
|
2376
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
2377
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't'
|
|
2378
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' LIMIT 1[0m
|
|
2379
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
2380
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (8.3ms)
|
|
2381
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
2382
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2383
|
+
Completed 200 OK in 79ms (Views: 72.1ms | ActiveRecord: 1.7ms)
|
|
2384
|
+
|
|
2385
|
+
|
|
2386
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2387
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2388
|
+
|
|
2389
|
+
|
|
2390
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2391
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2392
|
+
|
|
2393
|
+
|
|
2394
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2395
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2396
|
+
|
|
2397
|
+
|
|
2398
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2399
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2400
|
+
|
|
2401
|
+
|
|
2402
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2403
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2404
|
+
|
|
2405
|
+
|
|
2406
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2407
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2408
|
+
|
|
2409
|
+
|
|
2410
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2411
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2412
|
+
|
|
2413
|
+
|
|
2414
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2415
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2416
|
+
|
|
2417
|
+
|
|
2418
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2419
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2420
|
+
|
|
2421
|
+
|
|
2422
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:27:38 +0200
|
|
2423
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2424
|
+
|
|
2425
|
+
|
|
2426
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2427
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
2428
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
2429
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
2430
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (30.8ms)
|
|
2431
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
2432
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2433
|
+
Completed 200 OK in 39ms (Views: 38.0ms | ActiveRecord: 0.4ms)
|
|
2434
|
+
|
|
2435
|
+
|
|
2436
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2437
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2438
|
+
|
|
2439
|
+
|
|
2440
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2441
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2442
|
+
|
|
2443
|
+
|
|
2444
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2445
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2446
|
+
|
|
2447
|
+
|
|
2448
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2449
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2450
|
+
|
|
2451
|
+
|
|
2452
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2453
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2454
|
+
|
|
2455
|
+
|
|
2456
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2457
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2458
|
+
|
|
2459
|
+
|
|
2460
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2461
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2462
|
+
|
|
2463
|
+
|
|
2464
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2465
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2466
|
+
|
|
2467
|
+
|
|
2468
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:06 +0200
|
|
2469
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2470
|
+
|
|
2471
|
+
|
|
2472
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:28:07 +0200
|
|
2473
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2474
|
+
|
|
2475
|
+
|
|
2476
|
+
Started GET "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2477
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
2478
|
+
Parameters: {"id"=>"1"}
|
|
2479
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2480
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (3.5ms)
|
|
2481
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.6ms)
|
|
2482
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
2483
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.1ms)
|
|
2484
|
+
|
|
2485
|
+
|
|
2486
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2487
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2488
|
+
|
|
2489
|
+
|
|
2490
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2491
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2492
|
+
|
|
2493
|
+
|
|
2494
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2495
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2496
|
+
|
|
2497
|
+
|
|
2498
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2499
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2500
|
+
|
|
2501
|
+
|
|
2502
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2503
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2504
|
+
|
|
2505
|
+
|
|
2506
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2507
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2508
|
+
|
|
2509
|
+
|
|
2510
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2511
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2512
|
+
|
|
2513
|
+
|
|
2514
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2515
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2516
|
+
|
|
2517
|
+
|
|
2518
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2519
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2520
|
+
|
|
2521
|
+
|
|
2522
|
+
Started GET "/level_up/jobs/1/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2523
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
2524
|
+
Parameters: {"id"=>"1"}
|
|
2525
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
2526
|
+
Rendered text template (0.0ms)
|
|
2527
|
+
Sent data job_1.svg (1.9ms)
|
|
2528
|
+
Completed 200 OK in 94ms (Views: 1.4ms | ActiveRecord: 0.1ms)
|
|
2529
|
+
|
|
2530
|
+
|
|
2531
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:28:08 +0200
|
|
2532
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2533
|
+
|
|
2534
|
+
|
|
2535
|
+
Started DELETE "/level_up/jobs/1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2536
|
+
Processing by LevelUp::JobsController#destroy as HTML
|
|
2537
|
+
Parameters: {"authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "id"=>"1"}
|
|
2538
|
+
[1m[36mLevelUp::Job Load (0.3ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
2539
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2540
|
+
[1m[36mSQL (1.4ms)[0m [1mDELETE FROM "level_up_jobs" WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = ?[0m [["id", 1]]
|
|
2541
|
+
[1m[35m (39.0ms)[0m commit transaction
|
|
2542
|
+
Redirected to http://localhost:4000/level_up/jobs
|
|
2543
|
+
Completed 302 Found in 48ms (ActiveRecord: 40.8ms)
|
|
2544
|
+
|
|
2545
|
+
|
|
2546
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2547
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
2548
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
2549
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
2550
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (97.4ms)
|
|
2551
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
2552
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2553
|
+
Completed 200 OK in 106ms (Views: 105.2ms | ActiveRecord: 0.4ms)
|
|
2554
|
+
|
|
2555
|
+
|
|
2556
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2557
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2558
|
+
|
|
2559
|
+
|
|
2560
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2561
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2562
|
+
|
|
2563
|
+
|
|
2564
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2565
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2566
|
+
|
|
2567
|
+
|
|
2568
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2569
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2570
|
+
|
|
2571
|
+
|
|
2572
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2573
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2574
|
+
|
|
2575
|
+
|
|
2576
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2577
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2578
|
+
|
|
2579
|
+
|
|
2580
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2581
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2582
|
+
|
|
2583
|
+
|
|
2584
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2585
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2586
|
+
|
|
2587
|
+
|
|
2588
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2589
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2590
|
+
|
|
2591
|
+
|
|
2592
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:28:11 +0200
|
|
2593
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2594
|
+
|
|
2595
|
+
|
|
2596
|
+
Started GET "/level_up/" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2597
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
2598
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at[0m
|
|
2599
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at
|
|
2600
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at[0m
|
|
2601
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at
|
|
2602
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)[0m
|
|
2603
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1
|
|
2604
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
2605
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't'
|
|
2606
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' LIMIT 1[0m
|
|
2607
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
2608
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'[0m
|
|
2609
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 1
|
|
2610
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
2611
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't'
|
|
2612
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' LIMIT 1[0m
|
|
2613
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
2614
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (6.9ms)
|
|
2615
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
2616
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
2617
|
+
Completed 200 OK in 20ms (Views: 12.9ms | ActiveRecord: 1.5ms)
|
|
2618
|
+
|
|
2619
|
+
|
|
2620
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2621
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2622
|
+
|
|
2623
|
+
|
|
2624
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2625
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2626
|
+
|
|
2627
|
+
|
|
2628
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2629
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2630
|
+
|
|
2631
|
+
|
|
2632
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2633
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2634
|
+
|
|
2635
|
+
|
|
2636
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2637
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2638
|
+
|
|
2639
|
+
|
|
2640
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2641
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2642
|
+
|
|
2643
|
+
|
|
2644
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2645
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2646
|
+
|
|
2647
|
+
|
|
2648
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2649
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2650
|
+
|
|
2651
|
+
|
|
2652
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2653
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2654
|
+
|
|
2655
|
+
|
|
2656
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:28:14 +0200
|
|
2657
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2658
|
+
|
|
2659
|
+
|
|
2660
|
+
Started GET "/level_up/" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2661
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
2662
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at[0m
|
|
2663
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at
|
|
2664
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at[0m
|
|
2665
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at
|
|
2666
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)[0m
|
|
2667
|
+
[1m[35mLevelUp::Job Load (0.3ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1
|
|
2668
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
2669
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't'
|
|
2670
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' LIMIT 1[0m
|
|
2671
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
2672
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'[0m
|
|
2673
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 1
|
|
2674
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
2675
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't'
|
|
2676
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' LIMIT 1[0m
|
|
2677
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
2678
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (61.9ms)
|
|
2679
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
2680
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2681
|
+
Completed 200 OK in 86ms (Views: 69.9ms | ActiveRecord: 2.8ms)
|
|
2682
|
+
|
|
2683
|
+
|
|
2684
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2685
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2686
|
+
|
|
2687
|
+
|
|
2688
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2689
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2690
|
+
|
|
2691
|
+
|
|
2692
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2693
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2694
|
+
|
|
2695
|
+
|
|
2696
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2697
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2698
|
+
|
|
2699
|
+
|
|
2700
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2701
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2702
|
+
|
|
2703
|
+
|
|
2704
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2705
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2706
|
+
|
|
2707
|
+
|
|
2708
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2709
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2710
|
+
|
|
2711
|
+
|
|
2712
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2713
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2714
|
+
|
|
2715
|
+
|
|
2716
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2717
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2718
|
+
|
|
2719
|
+
|
|
2720
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:00 +0200
|
|
2721
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2722
|
+
|
|
2723
|
+
|
|
2724
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2725
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
2726
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
2727
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
2728
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (59.5ms)
|
|
2729
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
2730
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
2731
|
+
Completed 200 OK in 68ms (Views: 66.9ms | ActiveRecord: 0.4ms)
|
|
2732
|
+
|
|
2733
|
+
|
|
2734
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2735
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2736
|
+
|
|
2737
|
+
|
|
2738
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2739
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2740
|
+
|
|
2741
|
+
|
|
2742
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2743
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2744
|
+
|
|
2745
|
+
|
|
2746
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2747
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2748
|
+
|
|
2749
|
+
|
|
2750
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2751
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2752
|
+
|
|
2753
|
+
|
|
2754
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2755
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2756
|
+
|
|
2757
|
+
|
|
2758
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2759
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2760
|
+
|
|
2761
|
+
|
|
2762
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2763
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2764
|
+
|
|
2765
|
+
|
|
2766
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2767
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2768
|
+
|
|
2769
|
+
|
|
2770
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:02 +0200
|
|
2771
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2772
|
+
|
|
2773
|
+
|
|
2774
|
+
Started GET "/level_up/jobs/2" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2775
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
2776
|
+
Parameters: {"id"=>"2"}
|
|
2777
|
+
[1m[36mLevelUp::Job Load (0.3ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "2"]]
|
|
2778
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (3.2ms)
|
|
2779
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
2780
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2781
|
+
Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.3ms)
|
|
2782
|
+
|
|
2783
|
+
|
|
2784
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2785
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2786
|
+
|
|
2787
|
+
|
|
2788
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2789
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2790
|
+
|
|
2791
|
+
|
|
2792
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2793
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2794
|
+
|
|
2795
|
+
|
|
2796
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2797
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2798
|
+
|
|
2799
|
+
|
|
2800
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2801
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2802
|
+
|
|
2803
|
+
|
|
2804
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2805
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2806
|
+
|
|
2807
|
+
|
|
2808
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2809
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2810
|
+
|
|
2811
|
+
|
|
2812
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2813
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2814
|
+
|
|
2815
|
+
|
|
2816
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2817
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2818
|
+
|
|
2819
|
+
|
|
2820
|
+
Started GET "/level_up/jobs/2/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:47:03 +0200
|
|
2821
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
2822
|
+
Parameters: {"id"=>"2"}
|
|
2823
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "2"]]
|
|
2824
|
+
Rendered text template (0.0ms)
|
|
2825
|
+
Sent data job_2.svg (1.9ms)
|
|
2826
|
+
Completed 200 OK in 71ms (Views: 1.4ms | ActiveRecord: 0.1ms)
|
|
2827
|
+
|
|
2828
|
+
|
|
2829
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:04 +0200
|
|
2830
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2831
|
+
|
|
2832
|
+
|
|
2833
|
+
Started POST "/level_up/jobs/2/move?task=banish" for 127.0.0.1 at 2013-04-05 00:47:05 +0200
|
|
2834
|
+
Processing by LevelUp::JobsController#move as HTML
|
|
2835
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Move to: Banish", "task"=>"banish", "id"=>"2"}
|
|
2836
|
+
[1m[36mLevelUp::Job Load (0.4ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "2"]]
|
|
2837
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2838
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Thu, 04 Apr 2013 22:47:05 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:Delayed::PerformableMethod\nobject: !ruby/ActiveRecord:AccountBanish\n attributes:\n id: 2\n type: AccountBanish\n delayed_job_id: \n key: account-2376\n task: start\n error: f\n timer: f\n manual_task: f\n manual_task_description: \n failed_at: \n failed_in: \n backtrace: !ruby/struct:ActiveRecord::AttributeMethods::Serialization::Attribute\n coder: !ruby/object:ActiveRecord::Coders::YAMLColumn\n object_class: !ruby/class 'Object'\n value: \n state: :serialized\n started_at: \n ended_at: \n canceled_at: \n retry_at: \n created_at: '2013-04-04 22:46:59.225936'\n updated_at: '2013-04-04 22:46:59.225936'\nmethod_name: :event!\nargs:\n- banish\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Thu, 04 Apr 2013 22:47:05 UTC +00:00], ["updated_at", Thu, 04 Apr 2013 22:47:05 UTC +00:00]]
|
|
2839
|
+
[1m[35m (0.3ms)[0m UPDATE "level_up_jobs" SET "delayed_job_id" = 4, "updated_at" = '2013-04-04 22:47:05.857575', "backtrace" = '---
|
|
2840
|
+
...
|
|
2841
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 2
|
|
2842
|
+
[1m[36m (42.9ms)[0m [1mcommit transaction[0m
|
|
2843
|
+
Redirected to http://localhost:4000/level_up/jobs/2
|
|
2844
|
+
Completed 302 Found in 57ms (ActiveRecord: 44.3ms)
|
|
2845
|
+
|
|
2846
|
+
|
|
2847
|
+
Started GET "/level_up/jobs/2" for 127.0.0.1 at 2013-04-05 00:47:05 +0200
|
|
2848
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
2849
|
+
Parameters: {"id"=>"2"}
|
|
2850
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "2"]]
|
|
2851
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 4 LIMIT 1[0m
|
|
2852
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (5.2ms)
|
|
2853
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
2854
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2855
|
+
Completed 200 OK in 17ms (Views: 14.3ms | ActiveRecord: 0.5ms)
|
|
2856
|
+
|
|
2857
|
+
|
|
2858
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:05 +0200
|
|
2859
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2860
|
+
|
|
2861
|
+
|
|
2862
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:05 +0200
|
|
2863
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2864
|
+
|
|
2865
|
+
|
|
2866
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:05 +0200
|
|
2867
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2868
|
+
|
|
2869
|
+
|
|
2870
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:05 +0200
|
|
2871
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2872
|
+
|
|
2873
|
+
|
|
2874
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:05 +0200
|
|
2875
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2876
|
+
|
|
2877
|
+
|
|
2878
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:05 +0200
|
|
2879
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2880
|
+
|
|
2881
|
+
|
|
2882
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:06 +0200
|
|
2883
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2884
|
+
|
|
2885
|
+
|
|
2886
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:06 +0200
|
|
2887
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2888
|
+
|
|
2889
|
+
|
|
2890
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:06 +0200
|
|
2891
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2892
|
+
|
|
2893
|
+
|
|
2894
|
+
Started GET "/level_up/jobs/2/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:47:06 +0200
|
|
2895
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
2896
|
+
Parameters: {"id"=>"2"}
|
|
2897
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "2"]]
|
|
2898
|
+
Rendered text template (0.0ms)
|
|
2899
|
+
Sent data job_2.svg (1.8ms)
|
|
2900
|
+
Completed 200 OK in 62ms (Views: 1.4ms | ActiveRecord: 0.1ms)
|
|
2901
|
+
|
|
2902
|
+
|
|
2903
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:06 +0200
|
|
2904
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2905
|
+
|
|
2906
|
+
|
|
2907
|
+
Started POST "/level_up/jobs/2/unqueue" for 127.0.0.1 at 2013-04-05 00:47:07 +0200
|
|
2908
|
+
Processing by LevelUp::JobsController#unqueue as HTML
|
|
2909
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Unqueue", "id"=>"2"}
|
|
2910
|
+
[1m[36mLevelUp::Job Load (0.4ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "2"]]
|
|
2911
|
+
[1m[35mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 4 LIMIT 1
|
|
2912
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
2913
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 4]]
|
|
2914
|
+
[1m[36m (143.4ms)[0m [1mcommit transaction[0m
|
|
2915
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
2916
|
+
[1m[36m (0.5ms)[0m [1mUPDATE "level_up_jobs" SET "delayed_job_id" = NULL, "updated_at" = '2013-04-04 22:47:07.908034', "backtrace" = '---
|
|
2917
|
+
...
|
|
2918
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 2[0m
|
|
2919
|
+
[1m[35m (5.2ms)[0m commit transaction
|
|
2920
|
+
Redirected to http://localhost:4000/level_up/jobs/2
|
|
2921
|
+
Completed 302 Found in 162ms (ActiveRecord: 150.1ms)
|
|
2922
|
+
|
|
2923
|
+
|
|
2924
|
+
Started GET "/level_up/jobs/2" for 127.0.0.1 at 2013-04-05 00:47:07 +0200
|
|
2925
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
2926
|
+
Parameters: {"id"=>"2"}
|
|
2927
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "2"]]
|
|
2928
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (4.2ms)
|
|
2929
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
2930
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
2931
|
+
Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.1ms)
|
|
2932
|
+
|
|
2933
|
+
|
|
2934
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:07 +0200
|
|
2935
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
2936
|
+
|
|
2937
|
+
|
|
2938
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:07 +0200
|
|
2939
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
2940
|
+
|
|
2941
|
+
|
|
2942
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:07 +0200
|
|
2943
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
2944
|
+
|
|
2945
|
+
|
|
2946
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:08 +0200
|
|
2947
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
2948
|
+
|
|
2949
|
+
|
|
2950
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:08 +0200
|
|
2951
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
2952
|
+
|
|
2953
|
+
|
|
2954
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:08 +0200
|
|
2955
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
2956
|
+
|
|
2957
|
+
|
|
2958
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:08 +0200
|
|
2959
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
2960
|
+
|
|
2961
|
+
|
|
2962
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:08 +0200
|
|
2963
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
2964
|
+
|
|
2965
|
+
|
|
2966
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:08 +0200
|
|
2967
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
2968
|
+
|
|
2969
|
+
|
|
2970
|
+
Started GET "/level_up/jobs/2/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:47:08 +0200
|
|
2971
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
2972
|
+
Parameters: {"id"=>"2"}
|
|
2973
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "2"]]
|
|
2974
|
+
Rendered text template (0.0ms)
|
|
2975
|
+
Sent data job_2.svg (2.2ms)
|
|
2976
|
+
Completed 200 OK in 92ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
|
2977
|
+
|
|
2978
|
+
|
|
2979
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:08 +0200
|
|
2980
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
2981
|
+
|
|
2982
|
+
|
|
2983
|
+
Started DELETE "/level_up/jobs/2" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
2984
|
+
Processing by LevelUp::JobsController#destroy as HTML
|
|
2985
|
+
Parameters: {"authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "id"=>"2"}
|
|
2986
|
+
[1m[36mLevelUp::Job Load (0.4ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "2"]]
|
|
2987
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2988
|
+
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "level_up_jobs" WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = ?[0m [["id", 2]]
|
|
2989
|
+
[1m[35m (45.4ms)[0m commit transaction
|
|
2990
|
+
Redirected to http://localhost:4000/level_up/jobs
|
|
2991
|
+
Completed 302 Found in 52ms (ActiveRecord: 46.5ms)
|
|
2992
|
+
|
|
2993
|
+
|
|
2994
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
2995
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
2996
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
2997
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
2998
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (99.8ms)
|
|
2999
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
3000
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3001
|
+
Completed 200 OK in 109ms (Views: 107.5ms | ActiveRecord: 0.4ms)
|
|
3002
|
+
|
|
3003
|
+
|
|
3004
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3005
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3006
|
+
|
|
3007
|
+
|
|
3008
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3009
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3010
|
+
|
|
3011
|
+
|
|
3012
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3013
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3014
|
+
|
|
3015
|
+
|
|
3016
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3017
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3018
|
+
|
|
3019
|
+
|
|
3020
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3021
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3022
|
+
|
|
3023
|
+
|
|
3024
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3025
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3026
|
+
|
|
3027
|
+
|
|
3028
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3029
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3030
|
+
|
|
3031
|
+
|
|
3032
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3033
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3034
|
+
|
|
3035
|
+
|
|
3036
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3037
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3038
|
+
|
|
3039
|
+
|
|
3040
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:13 +0200
|
|
3041
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3042
|
+
|
|
3043
|
+
|
|
3044
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3045
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
3046
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
3047
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
3048
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (25.2ms)
|
|
3049
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
3050
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
3051
|
+
Completed 200 OK in 33ms (Views: 32.0ms | ActiveRecord: 0.4ms)
|
|
3052
|
+
|
|
3053
|
+
|
|
3054
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3055
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3056
|
+
|
|
3057
|
+
|
|
3058
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3059
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3060
|
+
|
|
3061
|
+
|
|
3062
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3063
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3064
|
+
|
|
3065
|
+
|
|
3066
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3067
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3068
|
+
|
|
3069
|
+
|
|
3070
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3071
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3072
|
+
|
|
3073
|
+
|
|
3074
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3075
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3076
|
+
|
|
3077
|
+
|
|
3078
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3079
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3080
|
+
|
|
3081
|
+
|
|
3082
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3083
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3084
|
+
|
|
3085
|
+
|
|
3086
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3087
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3088
|
+
|
|
3089
|
+
|
|
3090
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:18 +0200
|
|
3091
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3092
|
+
|
|
3093
|
+
|
|
3094
|
+
Started GET "/level_up/jobs/3" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3095
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
3096
|
+
Parameters: {"id"=>"3"}
|
|
3097
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "3"]]
|
|
3098
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (3.2ms)
|
|
3099
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
3100
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3101
|
+
Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.1ms)
|
|
3102
|
+
|
|
3103
|
+
|
|
3104
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3105
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3106
|
+
|
|
3107
|
+
|
|
3108
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3109
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3110
|
+
|
|
3111
|
+
|
|
3112
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3113
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3114
|
+
|
|
3115
|
+
|
|
3116
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3117
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3118
|
+
|
|
3119
|
+
|
|
3120
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3121
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3122
|
+
|
|
3123
|
+
|
|
3124
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3125
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3126
|
+
|
|
3127
|
+
|
|
3128
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3129
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3130
|
+
|
|
3131
|
+
|
|
3132
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3133
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3134
|
+
|
|
3135
|
+
|
|
3136
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3137
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3138
|
+
|
|
3139
|
+
|
|
3140
|
+
Started GET "/level_up/jobs/3/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3141
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
3142
|
+
Parameters: {"id"=>"3"}
|
|
3143
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "3"]]
|
|
3144
|
+
Rendered text template (0.0ms)
|
|
3145
|
+
Sent data job_3.svg (2.6ms)
|
|
3146
|
+
Completed 200 OK in 51ms (Views: 1.9ms | ActiveRecord: 0.1ms)
|
|
3147
|
+
|
|
3148
|
+
|
|
3149
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:20 +0200
|
|
3150
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3151
|
+
|
|
3152
|
+
|
|
3153
|
+
Started POST "/level_up/jobs/3/move?task=banish" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3154
|
+
Processing by LevelUp::JobsController#move as HTML
|
|
3155
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Move to: Banish", "task"=>"banish", "id"=>"3"}
|
|
3156
|
+
[1m[36mLevelUp::Job Load (0.4ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "3"]]
|
|
3157
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
3158
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Thu, 04 Apr 2013 22:47:23 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:Delayed::PerformableMethod\nobject: !ruby/ActiveRecord:AccountBanish\n attributes:\n id: 3\n type: AccountBanish\n delayed_job_id: \n key: account-2376\n task: start\n error: f\n timer: f\n manual_task: f\n manual_task_description: \n failed_at: \n failed_in: \n backtrace: !ruby/struct:ActiveRecord::AttributeMethods::Serialization::Attribute\n coder: !ruby/object:ActiveRecord::Coders::YAMLColumn\n object_class: !ruby/class 'Object'\n value: \n state: :serialized\n started_at: \n ended_at: \n canceled_at: \n retry_at: \n created_at: '2013-04-04 22:47:16.192681'\n updated_at: '2013-04-04 22:47:16.192681'\nmethod_name: :event!\nargs:\n- banish\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Thu, 04 Apr 2013 22:47:23 UTC +00:00], ["updated_at", Thu, 04 Apr 2013 22:47:23 UTC +00:00]]
|
|
3159
|
+
[1m[35m (0.2ms)[0m UPDATE "level_up_jobs" SET "delayed_job_id" = 5, "updated_at" = '2013-04-04 22:47:23.302415', "backtrace" = '---
|
|
3160
|
+
...
|
|
3161
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 3
|
|
3162
|
+
[1m[36m (6.5ms)[0m [1mcommit transaction[0m
|
|
3163
|
+
Redirected to http://localhost:4000/level_up/jobs/3
|
|
3164
|
+
Completed 302 Found in 19ms (ActiveRecord: 7.9ms)
|
|
3165
|
+
|
|
3166
|
+
|
|
3167
|
+
Started GET "/level_up/jobs/3" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3168
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
3169
|
+
Parameters: {"id"=>"3"}
|
|
3170
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "3"]]
|
|
3171
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 5 LIMIT 1[0m
|
|
3172
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (4.6ms)
|
|
3173
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
3174
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
3175
|
+
Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.3ms)
|
|
3176
|
+
|
|
3177
|
+
|
|
3178
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3179
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3180
|
+
|
|
3181
|
+
|
|
3182
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3183
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3184
|
+
|
|
3185
|
+
|
|
3186
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3187
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3188
|
+
|
|
3189
|
+
|
|
3190
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3191
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3192
|
+
|
|
3193
|
+
|
|
3194
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3195
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3196
|
+
|
|
3197
|
+
|
|
3198
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3199
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3200
|
+
|
|
3201
|
+
|
|
3202
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3203
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3204
|
+
|
|
3205
|
+
|
|
3206
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3207
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3208
|
+
|
|
3209
|
+
|
|
3210
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3211
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3212
|
+
|
|
3213
|
+
|
|
3214
|
+
Started GET "/level_up/jobs/3/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3215
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
3216
|
+
Parameters: {"id"=>"3"}
|
|
3217
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "3"]]
|
|
3218
|
+
Rendered text template (0.0ms)
|
|
3219
|
+
Sent data job_3.svg (2.4ms)
|
|
3220
|
+
Completed 200 OK in 43ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
|
3221
|
+
|
|
3222
|
+
|
|
3223
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:23 +0200
|
|
3224
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3225
|
+
|
|
3226
|
+
|
|
3227
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3228
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
3229
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" [0m
|
|
3230
|
+
[1m[35mLevelUp::Job Load (0.2ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0
|
|
3231
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 5 LIMIT 1[0m
|
|
3232
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (33.0ms)
|
|
3233
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
3234
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3235
|
+
Completed 200 OK in 43ms (Views: 40.8ms | ActiveRecord: 0.6ms)
|
|
3236
|
+
|
|
3237
|
+
|
|
3238
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3239
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3240
|
+
|
|
3241
|
+
|
|
3242
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3243
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3244
|
+
|
|
3245
|
+
|
|
3246
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3247
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3248
|
+
|
|
3249
|
+
|
|
3250
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3251
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3252
|
+
|
|
3253
|
+
|
|
3254
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3255
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3256
|
+
|
|
3257
|
+
|
|
3258
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3259
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3260
|
+
|
|
3261
|
+
|
|
3262
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3263
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3264
|
+
|
|
3265
|
+
|
|
3266
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3267
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3268
|
+
|
|
3269
|
+
|
|
3270
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3271
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3272
|
+
|
|
3273
|
+
|
|
3274
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:24 +0200
|
|
3275
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3276
|
+
|
|
3277
|
+
|
|
3278
|
+
Started GET "/level_up/" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3279
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
3280
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at
|
|
3281
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at[0m
|
|
3282
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at
|
|
3283
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at[0m
|
|
3284
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)
|
|
3285
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1[0m
|
|
3286
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
3287
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't'[0m
|
|
3288
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' LIMIT 1
|
|
3289
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
3290
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'
|
|
3291
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 1[0m
|
|
3292
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
3293
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't'[0m
|
|
3294
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' LIMIT 1
|
|
3295
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
3296
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (8.7ms)
|
|
3297
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
3298
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3299
|
+
Completed 200 OK in 22ms (Views: 15.0ms | ActiveRecord: 1.8ms)
|
|
3300
|
+
|
|
3301
|
+
|
|
3302
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3303
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3304
|
+
|
|
3305
|
+
|
|
3306
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3307
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3308
|
+
|
|
3309
|
+
|
|
3310
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3311
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3312
|
+
|
|
3313
|
+
|
|
3314
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3315
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3316
|
+
|
|
3317
|
+
|
|
3318
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3319
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3320
|
+
|
|
3321
|
+
|
|
3322
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3323
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3324
|
+
|
|
3325
|
+
|
|
3326
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3327
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3328
|
+
|
|
3329
|
+
|
|
3330
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3331
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3332
|
+
|
|
3333
|
+
|
|
3334
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3335
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3336
|
+
|
|
3337
|
+
|
|
3338
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:27 +0200
|
|
3339
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3340
|
+
|
|
3341
|
+
|
|
3342
|
+
Started GET "/level_up/jobs?search%5Bdelayed_job_id_eq%5D=true" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3343
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
3344
|
+
Parameters: {"search"=>{"delayed_job_id_eq"=>"true"}}
|
|
3345
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE ("level_up_jobs"."delayed_job_id" IS NOT NULL)
|
|
3346
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE ("level_up_jobs"."delayed_job_id" IS NOT NULL) LIMIT 20 OFFSET 0[0m
|
|
3347
|
+
[1m[35mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 5 LIMIT 1
|
|
3348
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (84.8ms)
|
|
3349
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
3350
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3351
|
+
Completed 200 OK in 95ms (Views: 92.0ms | ActiveRecord: 0.6ms)
|
|
3352
|
+
|
|
3353
|
+
|
|
3354
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3355
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3356
|
+
|
|
3357
|
+
|
|
3358
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3359
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3360
|
+
|
|
3361
|
+
|
|
3362
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3363
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3364
|
+
|
|
3365
|
+
|
|
3366
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3367
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3368
|
+
|
|
3369
|
+
|
|
3370
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3371
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3372
|
+
|
|
3373
|
+
|
|
3374
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3375
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3376
|
+
|
|
3377
|
+
|
|
3378
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3379
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3380
|
+
|
|
3381
|
+
|
|
3382
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3383
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3384
|
+
|
|
3385
|
+
|
|
3386
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3387
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3388
|
+
|
|
3389
|
+
|
|
3390
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:29 +0200
|
|
3391
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3392
|
+
|
|
3393
|
+
|
|
3394
|
+
Started GET "/level_up/" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3395
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
3396
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at[0m
|
|
3397
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at
|
|
3398
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at[0m
|
|
3399
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at
|
|
3400
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)[0m
|
|
3401
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1
|
|
3402
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
3403
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't'
|
|
3404
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' LIMIT 1[0m
|
|
3405
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
3406
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'[0m
|
|
3407
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 1
|
|
3408
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
3409
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't'
|
|
3410
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' LIMIT 1[0m
|
|
3411
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
3412
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (9.5ms)
|
|
3413
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
3414
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
3415
|
+
Completed 200 OK in 25ms (Views: 18.0ms | ActiveRecord: 2.0ms)
|
|
3416
|
+
|
|
3417
|
+
|
|
3418
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3419
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3420
|
+
|
|
3421
|
+
|
|
3422
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3423
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3424
|
+
|
|
3425
|
+
|
|
3426
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3427
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3428
|
+
|
|
3429
|
+
|
|
3430
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3431
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3432
|
+
|
|
3433
|
+
|
|
3434
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3435
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3436
|
+
|
|
3437
|
+
|
|
3438
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3439
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3440
|
+
|
|
3441
|
+
|
|
3442
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3443
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3444
|
+
|
|
3445
|
+
|
|
3446
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3447
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3448
|
+
|
|
3449
|
+
|
|
3450
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3451
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3452
|
+
|
|
3453
|
+
|
|
3454
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:32 +0200
|
|
3455
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3456
|
+
|
|
3457
|
+
|
|
3458
|
+
Started GET "/level_up/jobs?search%5Bdelayed_job_id_eq%5D=true" for 127.0.0.1 at 2013-04-05 00:47:38 +0200
|
|
3459
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
3460
|
+
Parameters: {"search"=>{"delayed_job_id_eq"=>"true"}}
|
|
3461
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE ("level_up_jobs"."delayed_job_id" IS NOT NULL)[0m
|
|
3462
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE ("level_up_jobs"."delayed_job_id" IS NOT NULL) LIMIT 20 OFFSET 0
|
|
3463
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 5 LIMIT 1[0m
|
|
3464
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (25.8ms)
|
|
3465
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (1.0ms)
|
|
3466
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3467
|
+
Completed 200 OK in 37ms (Views: 33.3ms | ActiveRecord: 0.4ms)
|
|
3468
|
+
|
|
3469
|
+
|
|
3470
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:38 +0200
|
|
3471
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3472
|
+
|
|
3473
|
+
|
|
3474
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:38 +0200
|
|
3475
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3476
|
+
|
|
3477
|
+
|
|
3478
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:38 +0200
|
|
3479
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3480
|
+
|
|
3481
|
+
|
|
3482
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:38 +0200
|
|
3483
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3484
|
+
|
|
3485
|
+
|
|
3486
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:39 +0200
|
|
3487
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3488
|
+
|
|
3489
|
+
|
|
3490
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:39 +0200
|
|
3491
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3492
|
+
|
|
3493
|
+
|
|
3494
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:39 +0200
|
|
3495
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3496
|
+
|
|
3497
|
+
|
|
3498
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:39 +0200
|
|
3499
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3500
|
+
|
|
3501
|
+
|
|
3502
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:39 +0200
|
|
3503
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3504
|
+
|
|
3505
|
+
|
|
3506
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:39 +0200
|
|
3507
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3508
|
+
|
|
3509
|
+
|
|
3510
|
+
Started GET "/level_up/jobs/3" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3511
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
3512
|
+
Parameters: {"id"=>"3"}
|
|
3513
|
+
[1m[35mLevelUp::Job Load (0.3ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "3"]]
|
|
3514
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 5 LIMIT 1[0m
|
|
3515
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (3.9ms)
|
|
3516
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
3517
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
3518
|
+
Completed 200 OK in 14ms (Views: 11.6ms | ActiveRecord: 0.5ms)
|
|
3519
|
+
|
|
3520
|
+
|
|
3521
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3522
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3523
|
+
|
|
3524
|
+
|
|
3525
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3526
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3527
|
+
|
|
3528
|
+
|
|
3529
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3530
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3531
|
+
|
|
3532
|
+
|
|
3533
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3534
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3535
|
+
|
|
3536
|
+
|
|
3537
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3538
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3539
|
+
|
|
3540
|
+
|
|
3541
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3542
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3543
|
+
|
|
3544
|
+
|
|
3545
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3546
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3547
|
+
|
|
3548
|
+
|
|
3549
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3550
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3551
|
+
|
|
3552
|
+
|
|
3553
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3554
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3555
|
+
|
|
3556
|
+
|
|
3557
|
+
Started GET "/level_up/jobs/3/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3558
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
3559
|
+
Parameters: {"id"=>"3"}
|
|
3560
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "3"]]
|
|
3561
|
+
Rendered text template (0.0ms)
|
|
3562
|
+
Sent data job_3.svg (6.2ms)
|
|
3563
|
+
Completed 200 OK in 70ms (Views: 5.6ms | ActiveRecord: 0.1ms)
|
|
3564
|
+
|
|
3565
|
+
|
|
3566
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:40 +0200
|
|
3567
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3568
|
+
|
|
3569
|
+
|
|
3570
|
+
Started POST "/level_up/jobs/3/unqueue" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3571
|
+
Processing by LevelUp::JobsController#unqueue as HTML
|
|
3572
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Unqueue", "id"=>"3"}
|
|
3573
|
+
[1m[36mLevelUp::Job Load (0.4ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "3"]]
|
|
3574
|
+
[1m[35mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 5 LIMIT 1
|
|
3575
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
3576
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 5]]
|
|
3577
|
+
[1m[36m (43.8ms)[0m [1mcommit transaction[0m
|
|
3578
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
3579
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "level_up_jobs" SET "delayed_job_id" = NULL, "updated_at" = '2013-04-04 22:47:43.064220', "backtrace" = '---
|
|
3580
|
+
...
|
|
3581
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 3[0m
|
|
3582
|
+
[1m[35m (5.2ms)[0m commit transaction
|
|
3583
|
+
Redirected to http://localhost:4000/level_up/jobs/3
|
|
3584
|
+
Completed 302 Found in 62ms (ActiveRecord: 50.4ms)
|
|
3585
|
+
|
|
3586
|
+
|
|
3587
|
+
Started GET "/level_up/jobs/3" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3588
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
3589
|
+
Parameters: {"id"=>"3"}
|
|
3590
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "3"]]
|
|
3591
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (4.2ms)
|
|
3592
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.9ms)
|
|
3593
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3594
|
+
Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.1ms)
|
|
3595
|
+
|
|
3596
|
+
|
|
3597
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3598
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3599
|
+
|
|
3600
|
+
|
|
3601
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3602
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3603
|
+
|
|
3604
|
+
|
|
3605
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3606
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3607
|
+
|
|
3608
|
+
|
|
3609
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3610
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3611
|
+
|
|
3612
|
+
|
|
3613
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3614
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3615
|
+
|
|
3616
|
+
|
|
3617
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3618
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3619
|
+
|
|
3620
|
+
|
|
3621
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3622
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3623
|
+
|
|
3624
|
+
|
|
3625
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3626
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3627
|
+
|
|
3628
|
+
|
|
3629
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3630
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3631
|
+
|
|
3632
|
+
|
|
3633
|
+
Started GET "/level_up/jobs/3/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3634
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
3635
|
+
Parameters: {"id"=>"3"}
|
|
3636
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "3"]]
|
|
3637
|
+
Rendered text template (0.0ms)
|
|
3638
|
+
Sent data job_3.svg (2.0ms)
|
|
3639
|
+
Completed 200 OK in 60ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
|
3640
|
+
|
|
3641
|
+
|
|
3642
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:43 +0200
|
|
3643
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3644
|
+
|
|
3645
|
+
|
|
3646
|
+
Started POST "/level_up/jobs/3/run" for 127.0.0.1 at 2013-04-05 00:47:44 +0200
|
|
3647
|
+
Processing by LevelUp::JobsController#run as HTML
|
|
3648
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "commit"=>"Rerun the current task", "id"=>"3"}
|
|
3649
|
+
[1m[36mLevelUp::Job Load (0.4ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "3"]]
|
|
3650
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
3651
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "level_up_jobs" SET "updated_at" = '2013-04-04 22:47:44.963665', "backtrace" = '---
|
|
3652
|
+
...
|
|
3653
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 3[0m
|
|
3654
|
+
[1m[35m (37.7ms)[0m commit transaction
|
|
3655
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
3656
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
3657
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
3658
|
+
[1m[35m (0.4ms)[0m UPDATE "level_up_jobs" SET "started_at" = '2013-04-04 22:47:45.000000', "updated_at" = '2013-04-04 22:47:45.008081', "backtrace" = '---
|
|
3659
|
+
...
|
|
3660
|
+
' WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = 3
|
|
3661
|
+
[1m[36m (5.4ms)[0m [1mcommit transaction[0m
|
|
3662
|
+
Redirected to http://localhost:4000/level_up/jobs/3
|
|
3663
|
+
Completed 302 Found in 63ms (ActiveRecord: 44.5ms)
|
|
3664
|
+
|
|
3665
|
+
|
|
3666
|
+
Started GET "/level_up/jobs/3" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3667
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
3668
|
+
Parameters: {"id"=>"3"}
|
|
3669
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "3"]]
|
|
3670
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (5.6ms)
|
|
3671
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
3672
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3673
|
+
Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms)
|
|
3674
|
+
|
|
3675
|
+
|
|
3676
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3677
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3678
|
+
|
|
3679
|
+
|
|
3680
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3681
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3682
|
+
|
|
3683
|
+
|
|
3684
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3685
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3686
|
+
|
|
3687
|
+
|
|
3688
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3689
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3690
|
+
|
|
3691
|
+
|
|
3692
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3693
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3694
|
+
|
|
3695
|
+
|
|
3696
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3697
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3698
|
+
|
|
3699
|
+
|
|
3700
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3701
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3702
|
+
|
|
3703
|
+
|
|
3704
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3705
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3706
|
+
|
|
3707
|
+
|
|
3708
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3709
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3710
|
+
|
|
3711
|
+
|
|
3712
|
+
Started GET "/level_up/jobs/3/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3713
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
3714
|
+
Parameters: {"id"=>"3"}
|
|
3715
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "3"]]
|
|
3716
|
+
Rendered text template (0.0ms)
|
|
3717
|
+
Sent data job_3.svg (6.2ms)
|
|
3718
|
+
Completed 200 OK in 46ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
|
3719
|
+
|
|
3720
|
+
|
|
3721
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:45 +0200
|
|
3722
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3723
|
+
|
|
3724
|
+
|
|
3725
|
+
Started GET "/level_up/" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3726
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
3727
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at
|
|
3728
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at[0m
|
|
3729
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at
|
|
3730
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at[0m
|
|
3731
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)
|
|
3732
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1[0m
|
|
3733
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
3734
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't'[0m
|
|
3735
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' LIMIT 1
|
|
3736
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
3737
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'
|
|
3738
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 1[0m
|
|
3739
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
3740
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't'[0m
|
|
3741
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' LIMIT 1
|
|
3742
|
+
[1m[36mLevelUp::Job Load (0.2ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
3743
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (10.2ms)
|
|
3744
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (1.0ms)
|
|
3745
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3746
|
+
Completed 200 OK in 65ms (Views: 18.2ms | ActiveRecord: 2.1ms)
|
|
3747
|
+
|
|
3748
|
+
|
|
3749
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3750
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3751
|
+
|
|
3752
|
+
|
|
3753
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3754
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3755
|
+
|
|
3756
|
+
|
|
3757
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3758
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3759
|
+
|
|
3760
|
+
|
|
3761
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3762
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3763
|
+
|
|
3764
|
+
|
|
3765
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3766
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3767
|
+
|
|
3768
|
+
|
|
3769
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3770
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3771
|
+
|
|
3772
|
+
|
|
3773
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3774
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3775
|
+
|
|
3776
|
+
|
|
3777
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3778
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3779
|
+
|
|
3780
|
+
|
|
3781
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3782
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3783
|
+
|
|
3784
|
+
|
|
3785
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:46 +0200
|
|
3786
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3787
|
+
|
|
3788
|
+
|
|
3789
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3790
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
3791
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "level_up_jobs"
|
|
3792
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0[0m
|
|
3793
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (87.7ms)
|
|
3794
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.8ms)
|
|
3795
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
3796
|
+
Completed 200 OK in 96ms (Views: 94.7ms | ActiveRecord: 0.3ms)
|
|
3797
|
+
|
|
3798
|
+
|
|
3799
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3800
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3801
|
+
|
|
3802
|
+
|
|
3803
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3804
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3805
|
+
|
|
3806
|
+
|
|
3807
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3808
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3809
|
+
|
|
3810
|
+
|
|
3811
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3812
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3813
|
+
|
|
3814
|
+
|
|
3815
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3816
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3817
|
+
|
|
3818
|
+
|
|
3819
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3820
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3821
|
+
|
|
3822
|
+
|
|
3823
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3824
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3825
|
+
|
|
3826
|
+
|
|
3827
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3828
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3829
|
+
|
|
3830
|
+
|
|
3831
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3832
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3833
|
+
|
|
3834
|
+
|
|
3835
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:50 +0200
|
|
3836
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3837
|
+
|
|
3838
|
+
|
|
3839
|
+
Started GET "/level_up/jobs/3" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3840
|
+
Processing by LevelUp::JobsController#show as HTML
|
|
3841
|
+
Parameters: {"id"=>"3"}
|
|
3842
|
+
[1m[35mLevelUp::Job Load (0.3ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "3"]]
|
|
3843
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/show.html.erb within layouts/level_up/application (3.3ms)
|
|
3844
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
3845
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
3846
|
+
Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.3ms)
|
|
3847
|
+
|
|
3848
|
+
|
|
3849
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3850
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3851
|
+
|
|
3852
|
+
|
|
3853
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3854
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3855
|
+
|
|
3856
|
+
|
|
3857
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3858
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3859
|
+
|
|
3860
|
+
|
|
3861
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3862
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3863
|
+
|
|
3864
|
+
|
|
3865
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3866
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3867
|
+
|
|
3868
|
+
|
|
3869
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3870
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3871
|
+
|
|
3872
|
+
|
|
3873
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3874
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3875
|
+
|
|
3876
|
+
|
|
3877
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3878
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3879
|
+
|
|
3880
|
+
|
|
3881
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3882
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3883
|
+
|
|
3884
|
+
|
|
3885
|
+
Started GET "/level_up/jobs/3/graphviz.svg" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3886
|
+
Processing by LevelUp::JobsController#graphviz as SVG
|
|
3887
|
+
Parameters: {"id"=>"3"}
|
|
3888
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1[0m [["id", "3"]]
|
|
3889
|
+
Rendered text template (0.0ms)
|
|
3890
|
+
Sent data job_3.svg (3.8ms)
|
|
3891
|
+
Completed 200 OK in 45ms (Views: 2.8ms | ActiveRecord: 0.1ms)
|
|
3892
|
+
|
|
3893
|
+
|
|
3894
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:51 +0200
|
|
3895
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3896
|
+
|
|
3897
|
+
|
|
3898
|
+
Started DELETE "/level_up/jobs/3" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3899
|
+
Processing by LevelUp::JobsController#destroy as HTML
|
|
3900
|
+
Parameters: {"authenticity_token"=>"eexntc13uLqHq0TraWhm1GZunbqMfKqXS8t/PyidjWM=", "id"=>"3"}
|
|
3901
|
+
[1m[35mLevelUp::Job Load (0.6ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."id" = ? LIMIT 1 [["id", "3"]]
|
|
3902
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
3903
|
+
[1m[35mSQL (0.9ms)[0m DELETE FROM "level_up_jobs" WHERE "level_up_jobs"."type" IN ('AccountBanish') AND "level_up_jobs"."id" = ? [["id", 3]]
|
|
3904
|
+
[1m[36m (4.4ms)[0m [1mcommit transaction[0m
|
|
3905
|
+
Redirected to http://localhost:4000/level_up/jobs
|
|
3906
|
+
Completed 302 Found in 12ms (ActiveRecord: 6.0ms)
|
|
3907
|
+
|
|
3908
|
+
|
|
3909
|
+
Started GET "/level_up/jobs" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3910
|
+
Processing by LevelUp::JobsController#index as HTML
|
|
3911
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "level_up_jobs"
|
|
3912
|
+
[1m[36mLevelUp::Job Load (0.3ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" LIMIT 20 OFFSET 0[0m
|
|
3913
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/jobs/index.html.erb within layouts/level_up/application (68.3ms)
|
|
3914
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (1.1ms)
|
|
3915
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.1ms)
|
|
3916
|
+
Completed 200 OK in 78ms (Views: 76.9ms | ActiveRecord: 0.5ms)
|
|
3917
|
+
|
|
3918
|
+
|
|
3919
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3920
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3921
|
+
|
|
3922
|
+
|
|
3923
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3924
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
3925
|
+
|
|
3926
|
+
|
|
3927
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3928
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
3929
|
+
|
|
3930
|
+
|
|
3931
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3932
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3933
|
+
|
|
3934
|
+
|
|
3935
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3936
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3937
|
+
|
|
3938
|
+
|
|
3939
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3940
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
3941
|
+
|
|
3942
|
+
|
|
3943
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3944
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
3945
|
+
|
|
3946
|
+
|
|
3947
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3948
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3949
|
+
|
|
3950
|
+
|
|
3951
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:53 +0200
|
|
3952
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
3953
|
+
|
|
3954
|
+
|
|
3955
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
3956
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|
|
3957
|
+
|
|
3958
|
+
|
|
3959
|
+
Started GET "/level_up/" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
3960
|
+
Processing by LevelUp::HomeController#index as HTML
|
|
3961
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) AS count_all, DATE(created_at) AS date_created_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(created_at) ORDER BY created_at
|
|
3962
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(started_at) AS date_started_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(started_at) ORDER BY created_at[0m
|
|
3963
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) AS count_all, DATE(ended_at) AS date_ended_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(ended_at) ORDER BY created_at
|
|
3964
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) AS count_all, DATE(canceled_at) AS date_canceled_at FROM "level_up_jobs" WHERE ("level_up_jobs"."created_at" BETWEEN '2013-03-05' AND '2013-04-05') GROUP BY DATE(canceled_at) ORDER BY created_at[0m
|
|
3965
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE (delayed_job_id is not null)
|
|
3966
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) LIMIT 1[0m
|
|
3967
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE (delayed_job_id is not null) ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
3968
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't'[0m
|
|
3969
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' LIMIT 1
|
|
3970
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."timer" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
3971
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't'
|
|
3972
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' LIMIT 1[0m
|
|
3973
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."manual_task" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1
|
|
3974
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't'[0m
|
|
3975
|
+
[1m[35mLevelUp::Job Load (0.1ms)[0m SELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' LIMIT 1
|
|
3976
|
+
[1m[36mLevelUp::Job Load (0.1ms)[0m [1mSELECT "level_up_jobs".* FROM "level_up_jobs" WHERE "level_up_jobs"."error" = 't' ORDER BY "level_up_jobs"."id" DESC LIMIT 1[0m
|
|
3977
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/level_up/home/index.html.erb within layouts/level_up/application (7.0ms)
|
|
3978
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_header.html.erb (0.7ms)
|
|
3979
|
+
Rendered /Users/kimious/Workspace/level_up/app/views/layouts/level_up/_footer.html.erb (0.0ms)
|
|
3980
|
+
Completed 200 OK in 20ms (Views: 13.2ms | ActiveRecord: 1.6ms)
|
|
3981
|
+
|
|
3982
|
+
|
|
3983
|
+
Started GET "/assets/level_up/rwdgrid.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
3984
|
+
Served asset /level_up/rwdgrid.css - 304 Not Modified (0ms)
|
|
3985
|
+
|
|
3986
|
+
|
|
3987
|
+
Started GET "/assets/level_up/application.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
3988
|
+
Served asset /level_up/application.css - 304 Not Modified (0ms)
|
|
3989
|
+
|
|
3990
|
+
|
|
3991
|
+
Started GET "/assets/level_up/jobs.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
3992
|
+
Served asset /level_up/jobs.css - 304 Not Modified (0ms)
|
|
3993
|
+
|
|
3994
|
+
|
|
3995
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
3996
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
3997
|
+
|
|
3998
|
+
|
|
3999
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
4000
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
4001
|
+
|
|
4002
|
+
|
|
4003
|
+
Started GET "/assets/level_up/jobs.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
4004
|
+
Served asset /level_up/jobs.js - 304 Not Modified (0ms)
|
|
4005
|
+
|
|
4006
|
+
|
|
4007
|
+
Started GET "/assets/level_up/home.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
4008
|
+
Served asset /level_up/home.js - 304 Not Modified (0ms)
|
|
4009
|
+
|
|
4010
|
+
|
|
4011
|
+
Started GET "/assets/level_up/home.css?body=1" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
4012
|
+
Served asset /level_up/home.css - 304 Not Modified (0ms)
|
|
4013
|
+
|
|
4014
|
+
|
|
4015
|
+
Started GET "/assets/level_up/application.js?body=1" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
4016
|
+
Served asset /level_up/application.js - 304 Not Modified (0ms)
|
|
4017
|
+
|
|
4018
|
+
|
|
4019
|
+
Started GET "/assets/level_up/search.png" for 127.0.0.1 at 2013-04-05 00:47:54 +0200
|
|
4020
|
+
Served asset /level_up/search.png - 304 Not Modified (0ms)
|