cable_room 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +1 -0
- data/cable_room.gemspec +32 -0
- data/lib/cable_room/channel_base.rb +194 -0
- data/lib/cable_room/channel_tracker.rb +118 -0
- data/lib/cable_room/ports.rb +62 -0
- data/lib/cable_room/railtie.rb +53 -0
- data/lib/cable_room/room/base.rb +92 -0
- data/lib/cable_room/room/callbacks.rb +33 -0
- data/lib/cable_room/room/channel_adapter.rb +20 -0
- data/lib/cable_room/room/input_handling.rb +31 -0
- data/lib/cable_room/room/lifecycle.rb +53 -0
- data/lib/cable_room/room/member_management.rb +67 -0
- data/lib/cable_room/room/reaping.rb +84 -0
- data/lib/cable_room/room/threading.rb +13 -0
- data/lib/cable_room/room/user_management.rb +72 -0
- data/lib/cable_room/room.rb +20 -0
- data/lib/cable_room/room_member.rb +170 -0
- data/lib/cable_room/version.rb +3 -0
- data/lib/cable_room.rb +36 -0
- data/spec/cable_room/room_member_spec.rb +113 -0
- data/spec/internal/config/cable.yml +2 -0
- data/spec/internal/config/database.yml +5 -0
- data/spec/internal/config/routes.rb +5 -0
- data/spec/internal/config/storage.yml +3 -0
- data/spec/internal/db/schema.rb +6 -0
- data/spec/internal/log/test.log +720 -0
- data/spec/internal/public/favicon.ico +0 -0
- data/spec/spec_helper.rb +20 -0
- metadata +165 -0
|
@@ -0,0 +1,720 @@
|
|
|
1
|
+
[1m[35mSQL (0.1ms)[0m [1m[35mSET search_path TO public[0m
|
|
2
|
+
[1m[35m (51.9ms)[0m [1m[35mDROP DATABASE IF EXISTS "cable-room-test"[0m
|
|
3
|
+
[1m[35m (70.7ms)[0m [1m[35mCREATE DATABASE "cable-room-test" ENCODING = 'unicode'[0m
|
|
4
|
+
[1m[35m (2.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
|
5
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)[0m
|
|
6
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1[0m [[nil, "environment"]]
|
|
7
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ('environment', 'test', '2025-10-10 22:08:19.090962', '2025-10-10 22:08:19.090964') RETURNING "key"[0m
|
|
8
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT pg_try_advisory_lock(5097399884987476185)[0m
|
|
9
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
10
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1[0m [[nil, "environment"]]
|
|
11
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT pg_advisory_unlock(5097399884987476185)[0m
|
|
12
|
+
[1m[35mSQL (0.1ms)[0m [1m[35mSET search_path TO public[0m
|
|
13
|
+
[1m[35m (97.6ms)[0m [1m[35mDROP DATABASE IF EXISTS "cable-room-test"[0m
|
|
14
|
+
[1m[35m (67.7ms)[0m [1m[35mCREATE DATABASE "cable-room-test" ENCODING = 'unicode'[0m
|
|
15
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
|
16
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)[0m
|
|
17
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1[0m [[nil, "environment"]]
|
|
18
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.2ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ('environment', 'test', '2025-10-10 22:09:07.906590', '2025-10-10 22:09:07.906591') RETURNING "key"[0m
|
|
19
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT pg_try_advisory_lock(5097399884987476185)[0m
|
|
20
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
21
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1[0m [[nil, "environment"]]
|
|
22
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT pg_advisory_unlock(5097399884987476185)[0m
|
|
23
|
+
Shutting down CableRoom
|
|
24
|
+
Shutting down CableRoom
|
|
25
|
+
[ActionCable] Broadcasting to TestRoom:87c5aa4ec8e532e9d0f089a8b74d63f6:to_room: {type: "member_joined", mtok: "317a94f9318edab5cc4238b1e56c7dfb"}
|
|
26
|
+
[ActionCable] Broadcasting to TestRoom:87c5aa4ec8e532e9ABC:to_room: {type: "member_joined", mtok: "c75cee7580538baadea0220a68009cfd"}
|
|
27
|
+
[ActionCable] Broadcasting to TestRoom:87c5aa4ec8e532e9a510f1f321b30409:to_room: {type: "member_joined", mtok: "33b961be3af40b35a868e6c2b537559f"}
|
|
28
|
+
[ActionCable] Broadcasting to TestRoom:87c5aa4ec8e532e9325f389a84e704b1:to_room: {type: "member_joined", mtok: "11ce33dcb544fb530dc7a923ebe89e00"}
|
|
29
|
+
[ActionCable] Broadcasting to TestRoom:87c5aa4ec8e532e9A:to_room: {type: "member_joined", mtok: "df0cbaebbe3017878b2f293e83cd11a5"}
|
|
30
|
+
[ActionCable] Broadcasting to TestRoom:87c5aa4ec8e532e9283593aafe5511bb:to_room: {type: "member_joined", mtok: "5f7eb8bafa556527ccec1e80e63441f5"}
|
|
31
|
+
[ActionCable] Broadcasting to TestRoom:87c5aa4ec8e532e9edf72bab37429f87:to_room: {type: "member_joined", mtok: "1f5e3b5b73bbcc3ea28702afbfdc453e"}
|
|
32
|
+
[ActionCable] Broadcasting to TestRoom:87c5aa4ec8e532e9ab3aaafe4725bad8:to_room: {type: "member_joined", mtok: "32d779c5a3f377b93eed7ac124c89215"}
|
|
33
|
+
Shutting down CableRoom
|
|
34
|
+
[ActionCable] Broadcasting to TestRoom:2360946578aa7f79f7e019acf22b45ca:to_room: {type: "member_joined", mtok: "4bb3b9a4914eef223264ff1b762babed"}
|
|
35
|
+
[ActionCable] Broadcasting to TestRoom:2360946578aa7f79ABC:to_room: {type: "member_joined", mtok: "4051224f4e129df6e98017f1ec3f7623"}
|
|
36
|
+
[ActionCable] Broadcasting to TestRoom:2360946578aa7f79698ebbae4107c7b7:to_room: {type: "member_joined", mtok: "be36dfdae8f216e4ff2a3efc11c4e6e7"}
|
|
37
|
+
[ActionCable] Broadcasting to TestRoom:2360946578aa7f79b396789ed2317929:to_room: {type: "member_joined", mtok: "926d5d911bf4f932721a23157c88bf2c"}
|
|
38
|
+
[ActionCable] Broadcasting to TestRoom:2360946578aa7f79A:to_room: {type: "member_joined", mtok: "44b1b5c559efac32589ef443559bc30d"}
|
|
39
|
+
[ActionCable] Broadcasting to TestRoom:2360946578aa7f7903a0863b047dce42:to_room: {type: "member_joined", mtok: "67f155feb8e4e9a472abb62e4719e016"}
|
|
40
|
+
[ActionCable] Broadcasting to TestRoom:2360946578aa7f791ba4c96391bcd7e8:to_room: {type: "member_joined", mtok: "538c5b8496fba0f47e0b485d6417667a"}
|
|
41
|
+
[ActionCable] Broadcasting to TestRoom:2360946578aa7f798f449e963feed5f8:to_room: {type: "member_joined", mtok: "ebccd2d0bb31af0a365312c10284b194"}
|
|
42
|
+
Shutting down CableRoom
|
|
43
|
+
[ActionCable] Broadcasting to TestRoom:607535ef4cd1f22d44e1d0b9b49f8290:to_room: {type: "member_joined", mtok: "893a36fc260a752b9a0b4dc9e1990f69"}
|
|
44
|
+
[ActionCable] Broadcasting to TestRoom:607535ef4cd1f22dABC:to_room: {type: "member_joined", mtok: "baa6d96d5c3afea9814e151ba25e93be"}
|
|
45
|
+
[ActionCable] Broadcasting to TestRoom:607535ef4cd1f22d7fa70314f69eb344:to_room: {type: "member_joined", mtok: "e481f0238dfb58f8bd805debaec1dec0"}
|
|
46
|
+
[ActionCable] Broadcasting to TestRoom:607535ef4cd1f22d1a645ff9d460ffb7:to_room: {type: "member_joined", mtok: "a513cb58b099901fbed799aece09e16c"}
|
|
47
|
+
[ActionCable] Broadcasting to TestRoom:607535ef4cd1f22dA:to_room: {type: "member_joined", mtok: "06fb1a74fedfd8dd84b63d26d4cfd63b"}
|
|
48
|
+
[ActionCable] Broadcasting to TestRoom:607535ef4cd1f22d9d1a659a33f43246:to_room: {type: "member_joined", mtok: "c1e8fc59e4e6695cb5032dec0cec0577"}
|
|
49
|
+
[ActionCable] Broadcasting to TestRoom:607535ef4cd1f22dac0e7698747ec80f:to_room: {type: "member_joined", mtok: "36bd908dfa8fc6a9073f0d7784bbacdb"}
|
|
50
|
+
[ActionCable] Broadcasting to TestRoom:607535ef4cd1f22da9de580a0512f790:to_room: {type: "member_joined", mtok: "16c437100add9a55097daa9d5be2ee38"}
|
|
51
|
+
Shutting down CableRoom
|
|
52
|
+
[ActionCable] Broadcasting to TestRoom:4873deb553988f2c169dfc03e525c06b:to_room: {type: "member_joined", mtok: "48c402fcc35b79b89feea4939ad7f5c6"}
|
|
53
|
+
[ActionCable] Broadcasting to TestRoom:4873deb553988f2cABC:to_room: {type: "member_joined", mtok: "a6a18a8d92002cc5b93199ee14b0bc3f"}
|
|
54
|
+
[ActionCable] Broadcasting to TestRoom:4873deb553988f2c3b145e90aac948a0:to_room: {type: "member_joined", mtok: "0ddbc6c58e543590acad62c26efeb282"}
|
|
55
|
+
[ActionCable] Broadcasting to TestRoom:4873deb553988f2c72f6a56cadde79c0:to_room: {type: "member_joined", mtok: "89f1ed91fb0d34c6faa1d5327dcb8729"}
|
|
56
|
+
[ActionCable] Broadcasting to TestRoom:4873deb553988f2cA:to_room: {type: "member_joined", mtok: "f8f1c443d42950ec0d280160163b1c27"}
|
|
57
|
+
[ActionCable] Broadcasting to TestRoom:4873deb553988f2cf29e28cfeb58373b:to_room: {type: "member_joined", mtok: "74187dcb7aec317841420ae6626f6c69"}
|
|
58
|
+
[ActionCable] Broadcasting to TestRoom:4873deb553988f2c3d7b33312e02ec32:to_room: {type: "member_joined", mtok: "979e0317cf0580e6443372eb08547315"}
|
|
59
|
+
[ActionCable] Broadcasting to TestRoom:4873deb553988f2c79562cdba260e65e:to_room: {type: "member_joined", mtok: "8056430813dc18fe3919ae56175ae1e1"}
|
|
60
|
+
Shutting down CableRoom
|
|
61
|
+
[ActionCable] Broadcasting to TestRoom:609d2f282aaab6c3a796666291fbf917:to_room: {type: "member_joined", mtok: "a2963a1eaf4e915d874aa503aea803a4"}
|
|
62
|
+
[ActionCable] Broadcasting to TestRoom:609d2f282aaab6c3ABC:to_room: {type: "member_joined", mtok: "608cbb5b3a72e1c59a9197b43e118a04"}
|
|
63
|
+
[ActionCable] Broadcasting to TestRoom:609d2f282aaab6c3cfbeb18998b73112:to_room: {type: "member_joined", mtok: "f3e0740390a72588114884005f6b1b55"}
|
|
64
|
+
[ActionCable] Broadcasting to TestRoom:609d2f282aaab6c3309bcf5867ad98d9:to_room: {type: "member_joined", mtok: "09cd0007627ddc56b302d479e02e9ca8"}
|
|
65
|
+
[ActionCable] Broadcasting to TestRoom:609d2f282aaab6c3A:to_room: {type: "member_joined", mtok: "56292abdf58d8134e04e3438a5a9aaeb"}
|
|
66
|
+
[ActionCable] Broadcasting to TestRoom:609d2f282aaab6c38c520700d21f6e29:to_room: {type: "member_joined", mtok: "e35aee92b673cf3f009aa6563ad95f0b"}
|
|
67
|
+
[ActionCable] Broadcasting to TestRoom:609d2f282aaab6c30fb01133443a58ff:to_room: {type: "member_joined", mtok: "69fcb442ca5353160c2d81c3cc5fca67"}
|
|
68
|
+
[ActionCable] Broadcasting to TestRoom:609d2f282aaab6c3943c45a653549763:to_room: {type: "member_joined", mtok: "de3b2f273518a5fcfe381161b54bd14f"}
|
|
69
|
+
Shutting down CableRoom
|
|
70
|
+
[ActionCable] Broadcasting to TestRoom:f2ef5c5dfa00bbadbff73db26ec502e5:to_room: {type: "member_joined", mtok: "ec2fcd8aa86f2009d758a8e7960d2fb1"}
|
|
71
|
+
[ActionCable] Broadcasting to TestRoom:f2ef5c5dfa00bbadABC:to_room: {type: "member_joined", mtok: "070eeea9e6d61c655ac1a692ef617a1f"}
|
|
72
|
+
[ActionCable] Broadcasting to TestRoom:f2ef5c5dfa00bbad2de9a7517e03b73a:to_room: {type: "member_joined", mtok: "441f85d4fc2771ccbd17650214a05023"}
|
|
73
|
+
[ActionCable] Broadcasting to TestRoom:f2ef5c5dfa00bbadead1a8e8e8022627:to_room: {type: "member_joined", mtok: "3b6c9ac92747a1652b5371bf7dd4924c"}
|
|
74
|
+
[ActionCable] Broadcasting to TestRoom:f2ef5c5dfa00bbadA:to_room: {type: "member_joined", mtok: "599b2fd8ca3b6fef091b32dd62fcfeaa"}
|
|
75
|
+
[ActionCable] Broadcasting to TestRoom:f2ef5c5dfa00bbad1f2b0d006b65da08:to_room: {type: "member_joined", mtok: "0d508bf2a4c22f101df2f9168e1d1df9"}
|
|
76
|
+
[ActionCable] Broadcasting to TestRoom:f2ef5c5dfa00bbad1bb74498e1f8a98b:to_room: {type: "member_joined", mtok: "b1583d2ab70a042c3cc32b15992b342b"}
|
|
77
|
+
[ActionCable] Broadcasting to TestRoom:f2ef5c5dfa00bbad24ded4c6ceb26c20:to_room: {type: "member_joined", mtok: "61b7096605d457a765c3ad7a32315a1d"}
|
|
78
|
+
Shutting down CableRoom
|
|
79
|
+
[ActionCable] Broadcasting to TestRoom:38cb7198de0cfaf1f4c64774205bd29a:to_room: {type: "member_joined", mtok: "c609ff41d7362c7c5e195edcd0697653"}
|
|
80
|
+
[ActionCable] Broadcasting to TestRoom:38cb7198de0cfaf1ABC:to_room: {type: "member_joined", mtok: "a9f0e918d3663d39738d1adc472caef4"}
|
|
81
|
+
[ActionCable] Broadcasting to TestRoom:38cb7198de0cfaf1400cdd716bd887c5:to_room: {type: "member_joined", mtok: "7bd9aa720b4aaeaef7332c9990197276"}
|
|
82
|
+
[ActionCable] Broadcasting to TestRoom:38cb7198de0cfaf1ef42ee0e4dde77c9:to_room: {type: "member_joined", mtok: "6970452fdf2763de1e52bec5468721b1"}
|
|
83
|
+
[ActionCable] Broadcasting to TestRoom:38cb7198de0cfaf1A:to_room: {type: "member_joined", mtok: "0485b56e08bfd472ef7272db092af621"}
|
|
84
|
+
[ActionCable] Broadcasting to TestRoom:38cb7198de0cfaf175276bf5c968675b:to_room: {type: "member_joined", mtok: "c8e17f71371d4fe0090d594f11443e95"}
|
|
85
|
+
[ActionCable] Broadcasting to TestRoom:38cb7198de0cfaf17407c4599e130d87:to_room: {type: "member_joined", mtok: "cbc9d7659d077f7ee02b18d87a8e86ed"}
|
|
86
|
+
[ActionCable] Broadcasting to TestRoom:38cb7198de0cfaf1fc848e9ce75300ec:to_room: {type: "member_joined", mtok: "3b4925d43e30d0202f83932473fa09a2"}
|
|
87
|
+
Shutting down CableRoom
|
|
88
|
+
[ActionCable] Broadcasting to TestRoom:00f4b41846006b41397b9726e4b34818:to_room: {type: "member_joined", mtok: "17b0f6df774dea41270bb13cce23dc82"}
|
|
89
|
+
[TestRoom 2675c765561b] Initializing new TestRoom
|
|
90
|
+
[TestRoom 2675c765561b] UUID: 2675c765561b
|
|
91
|
+
[TestRoom 2675c765561b] Key: TestRoom:00f4b41846006b41397b9726e4b34818
|
|
92
|
+
[TestRoom 2675c765561b] Ping watchdog
|
|
93
|
+
[ActionCable] Broadcasting to TestRoom:00f4b41846006b41ABC:to_room: {type: "member_joined", mtok: "36a70257302f946d8b86bca0b60dfb52"}
|
|
94
|
+
[TestRoom b0b765609546] Initializing new TestRoom
|
|
95
|
+
[TestRoom b0b765609546] UUID: b0b765609546
|
|
96
|
+
[TestRoom b0b765609546] Key: TestRoom:00f4b41846006b41ABC
|
|
97
|
+
[TestRoom b0b765609546] Ping watchdog
|
|
98
|
+
[ActionCable] Broadcasting to TestRoom:00f4b41846006b4154d5affd4f5b8c63:to_room: {type: "member_joined", mtok: "c42ac5228ab52fcef4e4a245ae9d117f"}
|
|
99
|
+
[ActionCable] Broadcasting to TestRoom:00f4b41846006b4115589d40b54ae778:to_room: {type: "member_joined", mtok: "1b3bc39be070f418a189abd44bb62685"}
|
|
100
|
+
[TestRoom 86b7507e8098] Initializing new TestRoom
|
|
101
|
+
[TestRoom 86b7507e8098] UUID: 86b7507e8098
|
|
102
|
+
[TestRoom 86b7507e8098] Key: TestRoom:00f4b41846006b4115589d40b54ae778
|
|
103
|
+
[TestRoom 86b7507e8098] Ping watchdog
|
|
104
|
+
[ActionCable] Broadcasting to TestRoom:00f4b41846006b41A:to_room: {type: "member_joined", mtok: "03e08e1f1bcb294bc5f74a303aae5570"}
|
|
105
|
+
[TestRoom 97d128b6f8b0] Initializing new TestRoom
|
|
106
|
+
[TestRoom 97d128b6f8b0] UUID: 97d128b6f8b0
|
|
107
|
+
[TestRoom 97d128b6f8b0] Key: TestRoom:00f4b41846006b41A
|
|
108
|
+
[TestRoom 97d128b6f8b0] Ping watchdog
|
|
109
|
+
[ActionCable] Broadcasting to TestRoom:00f4b41846006b41091f049ef69d08ef:to_room: {type: "member_joined", mtok: "4822a61196236a9cac6fe0abbfa90267"}
|
|
110
|
+
[TestRoom 561b4dcc15f4] Initializing new TestRoom
|
|
111
|
+
[TestRoom 561b4dcc15f4] UUID: 561b4dcc15f4
|
|
112
|
+
[TestRoom 561b4dcc15f4] Key: TestRoom:00f4b41846006b41091f049ef69d08ef
|
|
113
|
+
[TestRoom 561b4dcc15f4] Ping watchdog
|
|
114
|
+
[ActionCable] Broadcasting to TestRoom:00f4b41846006b415665366da4c7e726:to_room: {type: "member_joined", mtok: "d03acde0d67498fd124815586d4885d9"}
|
|
115
|
+
[TestRoom 160b133dbb96] Initializing new TestRoom
|
|
116
|
+
[TestRoom 160b133dbb96] UUID: 160b133dbb96
|
|
117
|
+
[TestRoom 160b133dbb96] Key: TestRoom:00f4b41846006b415665366da4c7e726
|
|
118
|
+
[TestRoom 160b133dbb96] Ping watchdog
|
|
119
|
+
[ActionCable] Broadcasting to TestRoom:00f4b41846006b413a76149b76e090b1:to_room: {type: "member_joined", mtok: "bdd515562c7bca835e8922f2a4be2ece"}
|
|
120
|
+
[TestRoom 42a7aace151f] Initializing new TestRoom
|
|
121
|
+
[TestRoom 42a7aace151f] UUID: 42a7aace151f
|
|
122
|
+
[TestRoom 42a7aace151f] Key: TestRoom:00f4b41846006b413a76149b76e090b1
|
|
123
|
+
[TestRoom 42a7aace151f] Ping watchdog
|
|
124
|
+
Shutting down CableRoom
|
|
125
|
+
[ActionCable] Broadcasting to TestRoom:d782d9f3ae380e3fb99cfec0dbb6272f:to_room: {type: "member_joined", mtok: "a83967ccec69299af8d9f22662cbfc52"}
|
|
126
|
+
[TestRoom a1a6aa67a8b1] Initializing new TestRoom
|
|
127
|
+
[TestRoom a1a6aa67a8b1] UUID: a1a6aa67a8b1
|
|
128
|
+
[TestRoom a1a6aa67a8b1] Key: TestRoom:d782d9f3ae380e3fb99cfec0dbb6272f
|
|
129
|
+
[TestRoom a1a6aa67a8b1] Ping watchdog
|
|
130
|
+
[ActionCable] Broadcasting to TestRoom:d782d9f3ae380e3fABC:to_room: {type: "member_joined", mtok: "774a6f84d5b8f7cfc5fc4ced44da613e"}
|
|
131
|
+
[TestRoom 8d05e172b896] Initializing new TestRoom
|
|
132
|
+
[TestRoom 8d05e172b896] UUID: 8d05e172b896
|
|
133
|
+
[TestRoom 8d05e172b896] Key: TestRoom:d782d9f3ae380e3fABC
|
|
134
|
+
[TestRoom 8d05e172b896] Ping watchdog
|
|
135
|
+
[ActionCable] Broadcasting to TestRoom:d782d9f3ae380e3f94cd2ed8e928e733:to_room: {type: "member_joined", mtok: "586877c2d837932292d983c7941412d1"}
|
|
136
|
+
[ActionCable] Broadcasting to TestRoom:d782d9f3ae380e3fd6735783d096eb83:to_room: {type: "member_joined", mtok: "a6f4ed5324d8cb5c38071dbc2c537811"}
|
|
137
|
+
[TestRoom b7f6770f1c43] Initializing new TestRoom
|
|
138
|
+
[TestRoom b7f6770f1c43] UUID: b7f6770f1c43
|
|
139
|
+
[TestRoom b7f6770f1c43] Key: TestRoom:d782d9f3ae380e3fd6735783d096eb83
|
|
140
|
+
[TestRoom b7f6770f1c43] Ping watchdog
|
|
141
|
+
[ActionCable] Broadcasting to TestRoom:d782d9f3ae380e3fA:to_room: {type: "member_joined", mtok: "40257d6020aa40de905f8338629bdf61"}
|
|
142
|
+
[TestRoom 63d1fcc458df] Initializing new TestRoom
|
|
143
|
+
[TestRoom 63d1fcc458df] UUID: 63d1fcc458df
|
|
144
|
+
[TestRoom 63d1fcc458df] Key: TestRoom:d782d9f3ae380e3fA
|
|
145
|
+
[TestRoom 63d1fcc458df] Ping watchdog
|
|
146
|
+
[ActionCable] Broadcasting to TestRoom:d782d9f3ae380e3f49e75be81ace69ce:to_room: {type: "member_joined", mtok: "d64742395ba315d65e7d30fa40e8b81f"}
|
|
147
|
+
[TestRoom 570bedfeb04f] Initializing new TestRoom
|
|
148
|
+
[TestRoom 570bedfeb04f] UUID: 570bedfeb04f
|
|
149
|
+
[TestRoom 570bedfeb04f] Key: TestRoom:d782d9f3ae380e3f49e75be81ace69ce
|
|
150
|
+
[TestRoom 570bedfeb04f] Ping watchdog
|
|
151
|
+
[ActionCable] Broadcasting to TestRoom:d782d9f3ae380e3f2f305d90f53a0367:to_room: {type: "member_joined", mtok: "333521ed8d5b40b9cee5f95f6bfd3eec"}
|
|
152
|
+
[TestRoom 9720d5d2c5cc] Initializing new TestRoom
|
|
153
|
+
[TestRoom 9720d5d2c5cc] UUID: 9720d5d2c5cc
|
|
154
|
+
[TestRoom 9720d5d2c5cc] Key: TestRoom:d782d9f3ae380e3f2f305d90f53a0367
|
|
155
|
+
[TestRoom 9720d5d2c5cc] Ping watchdog
|
|
156
|
+
[ActionCable] Broadcasting to TestRoom:d782d9f3ae380e3fa104619a6008e0de:to_room: {type: "member_joined", mtok: "7335afac0a622f9a805ef56738369131"}
|
|
157
|
+
[TestRoom 987c7333609b] Initializing new TestRoom
|
|
158
|
+
[TestRoom 987c7333609b] UUID: 987c7333609b
|
|
159
|
+
[TestRoom 987c7333609b] Key: TestRoom:d782d9f3ae380e3fa104619a6008e0de
|
|
160
|
+
[TestRoom 987c7333609b] Ping watchdog
|
|
161
|
+
Shutting down CableRoom
|
|
162
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc06acf4fd2fb41a35d:to_room: {type: "member_joined", mtok: "8aae6aeb3fc05d7cbaaafe03677ed16a"}
|
|
163
|
+
[TestRoom 27147694be3f] Initializing new TestRoom
|
|
164
|
+
[TestRoom 27147694be3f] UUID: 27147694be3f
|
|
165
|
+
[TestRoom 27147694be3f] Key: TestRoom:b40ae6da0b82adc06acf4fd2fb41a35d
|
|
166
|
+
[TestRoom 27147694be3f] Ping watchdog
|
|
167
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc06acf4fd2fb41a35d:from_room: {type: "custom_started"}
|
|
168
|
+
[TestRoom 27147694be3f] Started
|
|
169
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc06acf4fd2fb41a35d:from_room: {type: "room_opened"}
|
|
170
|
+
[TestRoom 27147694be3f] TestRoom::Channel is streaming from TestRoom:b40ae6da0b82adc06acf4fd2fb41a35d:to_room
|
|
171
|
+
[TestRoom 27147694be3f] TestRoom::Channel is transmitting the subscription confirmation
|
|
172
|
+
[TestRoom 27147694be3f] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
173
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc06acf4fd2fb41a35d:to_room: {type: "member_left", mtok: "8aae6aeb3fc05d7cbaaafe03677ed16a"}
|
|
174
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0ABC:to_room: {type: "member_joined", mtok: "df5ce501c45144c21586c68c567b4509"}
|
|
175
|
+
[TestRoom 27147694be3f] Received message: {"type" => "member_left", "mtok" => "8aae6aeb3fc05d7cbaaafe03677ed16a"}
|
|
176
|
+
[TestRoom 61154b775558] Initializing new TestRoom
|
|
177
|
+
[TestRoom 61154b775558] UUID: 61154b775558
|
|
178
|
+
[TestRoom 61154b775558] Key: TestRoom:b40ae6da0b82adc0ABC
|
|
179
|
+
[TestRoom 61154b775558] Ping watchdog
|
|
180
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0ABC:from_room: {type: "custom_started"}
|
|
181
|
+
[TestRoom 61154b775558] Started
|
|
182
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0ABC:from_room: {type: "room_opened"}
|
|
183
|
+
[TestRoom 61154b775558] TestRoom::Channel is streaming from TestRoom:b40ae6da0b82adc0ABC:to_room
|
|
184
|
+
[TestRoom 61154b775558] TestRoom::Channel is transmitting the subscription confirmation
|
|
185
|
+
[TestRoom 61154b775558] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
186
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0ABC:to_room: {type: "member_left", mtok: "df5ce501c45144c21586c68c567b4509"}
|
|
187
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc04df2d3e3ed78ad4d:to_room: {type: "member_joined", mtok: "f0cd3aaa7414d9623ee3332861874182"}
|
|
188
|
+
[TestRoom 61154b775558] Received message: {"type" => "member_left", "mtok" => "df5ce501c45144c21586c68c567b4509"}
|
|
189
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0f4f1b8d16d7f79d9:to_room: {type: "member_joined", mtok: "4695b5ab8528e35281cc22f1dcedf539"}
|
|
190
|
+
[TestRoom 516fce656a9b] Initializing new TestRoom
|
|
191
|
+
[TestRoom 516fce656a9b] UUID: 516fce656a9b
|
|
192
|
+
[TestRoom 516fce656a9b] Key: TestRoom:b40ae6da0b82adc0f4f1b8d16d7f79d9
|
|
193
|
+
[TestRoom 516fce656a9b] Ping watchdog
|
|
194
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0f4f1b8d16d7f79d9:from_room: {type: "custom_started"}
|
|
195
|
+
[TestRoom 516fce656a9b] Started
|
|
196
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0f4f1b8d16d7f79d9:from_room: {type: "room_opened"}
|
|
197
|
+
[TestRoom 516fce656a9b] TestRoom::Channel is streaming from TestRoom:b40ae6da0b82adc0f4f1b8d16d7f79d9:to_room
|
|
198
|
+
[TestRoom 516fce656a9b] TestRoom::Channel is transmitting the subscription confirmation
|
|
199
|
+
[TestRoom 516fce656a9b] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
200
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0f4f1b8d16d7f79d9:to_room: {type: "member_joined", mtok: "7df1c9ce1d3935276df074041412dfc9"}
|
|
201
|
+
[TestRoom 516fce656a9b] Received message: {"type" => "member_joined", "mtok" => "7df1c9ce1d3935276df074041412dfc9"}
|
|
202
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0f4f1b8d16d7f79d9:to_room: {type: "member_left", mtok: "7df1c9ce1d3935276df074041412dfc9"}
|
|
203
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0A:to_room: {type: "member_joined", mtok: "716eae69d0c070259b368b0c34b55206"}
|
|
204
|
+
[TestRoom 516fce656a9b] Received message: {"type" => "member_left", "mtok" => "7df1c9ce1d3935276df074041412dfc9"}
|
|
205
|
+
[TestRoom ebf2c317976d] Initializing new TestRoom
|
|
206
|
+
[TestRoom ebf2c317976d] UUID: ebf2c317976d
|
|
207
|
+
[TestRoom ebf2c317976d] Key: TestRoom:b40ae6da0b82adc0A
|
|
208
|
+
[TestRoom ebf2c317976d] Ping watchdog
|
|
209
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0A:from_room: {type: "custom_started"}
|
|
210
|
+
[TestRoom ebf2c317976d] Started
|
|
211
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0A:from_room: {type: "room_opened"}
|
|
212
|
+
[TestRoom ebf2c317976d] TestRoom::Channel is streaming from TestRoom:b40ae6da0b82adc0A:to_room
|
|
213
|
+
[TestRoom ebf2c317976d] TestRoom::Channel is transmitting the subscription confirmation
|
|
214
|
+
[TestRoom ebf2c317976d] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
215
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0B:to_room: {type: "member_joined", mtok: "4078323090001bc9fe1d5ec245507496"}
|
|
216
|
+
[TestRoom a3c3847f786c] Initializing new TestRoom
|
|
217
|
+
[TestRoom a3c3847f786c] UUID: a3c3847f786c
|
|
218
|
+
[TestRoom a3c3847f786c] Key: TestRoom:b40ae6da0b82adc0B
|
|
219
|
+
[TestRoom a3c3847f786c] Ping watchdog
|
|
220
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0B:from_room: {type: "custom_started"}
|
|
221
|
+
[TestRoom a3c3847f786c] Started
|
|
222
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0B:from_room: {type: "room_opened"}
|
|
223
|
+
[TestRoom a3c3847f786c] TestRoom::Channel is streaming from TestRoom:b40ae6da0b82adc0B:to_room
|
|
224
|
+
[TestRoom a3c3847f786c] TestRoom::Channel is transmitting the subscription confirmation
|
|
225
|
+
[TestRoom a3c3847f786c] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
226
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0B:to_room: {type: "member_left", mtok: "4078323090001bc9fe1d5ec245507496"}
|
|
227
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0d4b13d003047ce71:to_room: {type: "member_joined", mtok: "015abeec95669a3393557ac57481749a"}
|
|
228
|
+
[TestRoom a3c3847f786c] Received message: {"type" => "member_left", "mtok" => "4078323090001bc9fe1d5ec245507496"}
|
|
229
|
+
[TestRoom 554f80fc7d52] Initializing new TestRoom
|
|
230
|
+
[TestRoom 554f80fc7d52] UUID: 554f80fc7d52
|
|
231
|
+
[TestRoom 554f80fc7d52] Key: TestRoom:b40ae6da0b82adc0d4b13d003047ce71
|
|
232
|
+
[TestRoom 554f80fc7d52] Ping watchdog
|
|
233
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0d4b13d003047ce71:from_room: {type: "custom_started"}
|
|
234
|
+
[TestRoom 554f80fc7d52] Started
|
|
235
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0d4b13d003047ce71:from_room: {type: "room_opened"}
|
|
236
|
+
[TestRoom 554f80fc7d52] TestRoom::Channel is streaming from TestRoom:b40ae6da0b82adc0d4b13d003047ce71:to_room
|
|
237
|
+
[TestRoom 554f80fc7d52] TestRoom::Channel is transmitting the subscription confirmation
|
|
238
|
+
[TestRoom 554f80fc7d52] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
239
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0d4b13d003047ce71:to_room: {type: "member_left", mtok: "015abeec95669a3393557ac57481749a"}
|
|
240
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0a11c59fdf1b2a547:to_room: {type: "member_joined", mtok: "ce5921e3b3e9b4ffbed28ef93cc3e0f3"}
|
|
241
|
+
[TestRoom 554f80fc7d52] Received message: {"type" => "member_left", "mtok" => "015abeec95669a3393557ac57481749a"}
|
|
242
|
+
[TestRoom 81306a891391] Initializing new TestRoom
|
|
243
|
+
[TestRoom 81306a891391] UUID: 81306a891391
|
|
244
|
+
[TestRoom 81306a891391] Key: TestRoom:b40ae6da0b82adc0a11c59fdf1b2a547
|
|
245
|
+
[TestRoom 81306a891391] Ping watchdog
|
|
246
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0a11c59fdf1b2a547:from_room: {type: "custom_started"}
|
|
247
|
+
[TestRoom 81306a891391] Started
|
|
248
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0a11c59fdf1b2a547:from_room: {type: "room_opened"}
|
|
249
|
+
[TestRoom 81306a891391] TestRoom::Channel is streaming from TestRoom:b40ae6da0b82adc0a11c59fdf1b2a547:to_room
|
|
250
|
+
[TestRoom 81306a891391] TestRoom::Channel is transmitting the subscription confirmation
|
|
251
|
+
[TestRoom 81306a891391] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
252
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0a11c59fdf1b2a547:to_room: "KILL"
|
|
253
|
+
[TestRoom 81306a891391] Received message: "KILL"
|
|
254
|
+
[TestRoom 81306a891391] TestRoom::Channel stopped streaming from TestRoom:b40ae6da0b82adc0a11c59fdf1b2a547:to_room
|
|
255
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0a11c59fdf1b2a547:from_room: {type: "room_closed"}
|
|
256
|
+
[TestRoom 81306a891391] Shutting down
|
|
257
|
+
[TestRoom 81306a891391] Shutdown complete
|
|
258
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0301685607686cc8a:to_room: {type: "member_joined", mtok: "1271fb317418ea8928e67d382d8ed8d5"}
|
|
259
|
+
[TestRoom aa387b82ebf7] Initializing new TestRoom
|
|
260
|
+
[TestRoom aa387b82ebf7] UUID: aa387b82ebf7
|
|
261
|
+
[TestRoom aa387b82ebf7] Key: TestRoom:b40ae6da0b82adc0301685607686cc8a
|
|
262
|
+
[TestRoom aa387b82ebf7] Ping watchdog
|
|
263
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0301685607686cc8a:from_room: {type: "custom_started"}
|
|
264
|
+
[TestRoom aa387b82ebf7] Started
|
|
265
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0301685607686cc8a:from_room: {type: "room_opened"}
|
|
266
|
+
[TestRoom aa387b82ebf7] TestRoom::Channel is streaming from TestRoom:b40ae6da0b82adc0301685607686cc8a:to_room
|
|
267
|
+
[TestRoom aa387b82ebf7] TestRoom::Channel is transmitting the subscription confirmation
|
|
268
|
+
[TestRoom aa387b82ebf7] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
269
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0301685607686cc8a:to_room: {type: "member_left", mtok: "1271fb317418ea8928e67d382d8ed8d5"}
|
|
270
|
+
[TestRoom aa387b82ebf7] Ping watchdog
|
|
271
|
+
[TestRoom aa387b82ebf7] Received message: {"type" => "member_left", "mtok" => "1271fb317418ea8928e67d382d8ed8d5"}
|
|
272
|
+
Shutting down CableRoom
|
|
273
|
+
[TestRoom 27147694be3f] TestRoom::Channel stopped streaming from TestRoom:b40ae6da0b82adc06acf4fd2fb41a35d:to_room
|
|
274
|
+
[TestRoom 61154b775558] TestRoom::Channel stopped streaming from TestRoom:b40ae6da0b82adc0ABC:to_room
|
|
275
|
+
[TestRoom 516fce656a9b] TestRoom::Channel stopped streaming from TestRoom:b40ae6da0b82adc0f4f1b8d16d7f79d9:to_room
|
|
276
|
+
[TestRoom ebf2c317976d] TestRoom::Channel stopped streaming from TestRoom:b40ae6da0b82adc0A:to_room
|
|
277
|
+
[TestRoom a3c3847f786c] TestRoom::Channel stopped streaming from TestRoom:b40ae6da0b82adc0B:to_room
|
|
278
|
+
[TestRoom 554f80fc7d52] TestRoom::Channel stopped streaming from TestRoom:b40ae6da0b82adc0d4b13d003047ce71:to_room
|
|
279
|
+
[TestRoom aa387b82ebf7] TestRoom::Channel stopped streaming from TestRoom:b40ae6da0b82adc0301685607686cc8a:to_room
|
|
280
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0ABC:from_room: {type: "room_closed"}
|
|
281
|
+
[TestRoom 61154b775558] Shutting down
|
|
282
|
+
[TestRoom 61154b775558] Shutdown complete
|
|
283
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0B:from_room: {type: "room_closed"}
|
|
284
|
+
[TestRoom a3c3847f786c] Shutting down
|
|
285
|
+
[TestRoom a3c3847f786c] Shutdown complete
|
|
286
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0d4b13d003047ce71:from_room: {type: "room_closed"}
|
|
287
|
+
[TestRoom 554f80fc7d52] Shutting down
|
|
288
|
+
[TestRoom 554f80fc7d52] Shutdown complete
|
|
289
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0301685607686cc8a:from_room: {type: "room_closed"}
|
|
290
|
+
[TestRoom aa387b82ebf7] Shutting down
|
|
291
|
+
[TestRoom aa387b82ebf7] Shutdown complete
|
|
292
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0f4f1b8d16d7f79d9:from_room: {type: "room_closed"}
|
|
293
|
+
[TestRoom 516fce656a9b] Shutting down
|
|
294
|
+
[TestRoom 516fce656a9b] Shutdown complete
|
|
295
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc0A:from_room: {type: "room_closed"}
|
|
296
|
+
[TestRoom ebf2c317976d] Shutting down
|
|
297
|
+
[TestRoom ebf2c317976d] Shutdown complete
|
|
298
|
+
[ActionCable] Broadcasting to TestRoom:b40ae6da0b82adc06acf4fd2fb41a35d:from_room: {type: "room_closed"}
|
|
299
|
+
[TestRoom 27147694be3f] Shutting down
|
|
300
|
+
[TestRoom 27147694be3f] Shutdown complete
|
|
301
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bcd090621114e35b:to_room: {type: "member_joined", mtok: "0161470d8ee71cf760e9e8b28bb774be"}
|
|
302
|
+
[TestRoom d5709f0aee0e] Initializing new TestRoom
|
|
303
|
+
[TestRoom d5709f0aee0e] UUID: d5709f0aee0e
|
|
304
|
+
[TestRoom d5709f0aee0e] Key: TestRoom:4dc4988201822f11bcd090621114e35b
|
|
305
|
+
[TestRoom d5709f0aee0e] Ping watchdog
|
|
306
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bcd090621114e35b:from_room: {type: "custom_started"}
|
|
307
|
+
[TestRoom d5709f0aee0e] Started
|
|
308
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bcd090621114e35b:from_room: {type: "room_opened"}
|
|
309
|
+
[TestRoom d5709f0aee0e] TestRoom::Channel is streaming from TestRoom:4dc4988201822f11bcd090621114e35b:to_room
|
|
310
|
+
[TestRoom d5709f0aee0e] TestRoom::Channel is transmitting the subscription confirmation
|
|
311
|
+
[TestRoom d5709f0aee0e] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
312
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bcd090621114e35b:to_room: {type: "member_left", mtok: "0161470d8ee71cf760e9e8b28bb774be"}
|
|
313
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11ABC:to_room: {type: "member_joined", mtok: "0427925d4037715827c3b7a07dd265d8"}
|
|
314
|
+
[TestRoom d5709f0aee0e] Received message: {"type" => "member_left", "mtok" => "0161470d8ee71cf760e9e8b28bb774be"}
|
|
315
|
+
[TestRoom e07ebbd73c9b] Initializing new TestRoom
|
|
316
|
+
[TestRoom e07ebbd73c9b] UUID: e07ebbd73c9b
|
|
317
|
+
[TestRoom e07ebbd73c9b] Key: TestRoom:4dc4988201822f11ABC
|
|
318
|
+
[TestRoom e07ebbd73c9b] Ping watchdog
|
|
319
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11ABC:from_room: {type: "custom_started"}
|
|
320
|
+
[TestRoom e07ebbd73c9b] Started
|
|
321
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11ABC:from_room: {type: "room_opened"}
|
|
322
|
+
[TestRoom e07ebbd73c9b] TestRoom::Channel is streaming from TestRoom:4dc4988201822f11ABC:to_room
|
|
323
|
+
[TestRoom e07ebbd73c9b] TestRoom::Channel is transmitting the subscription confirmation
|
|
324
|
+
[TestRoom e07ebbd73c9b] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
325
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11ABC:to_room: {type: "member_left", mtok: "0427925d4037715827c3b7a07dd265d8"}
|
|
326
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f111fa1dab95d8e6684:to_room: {type: "member_joined", mtok: "7b35ac6501fcc41fd7e703150932e692"}
|
|
327
|
+
[TestRoom e07ebbd73c9b] Received message: {"type" => "member_left", "mtok" => "0427925d4037715827c3b7a07dd265d8"}
|
|
328
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f1170f49e65a4ec91ef:to_room: {type: "member_joined", mtok: "5574aa41d4f7fa23007aa3a06e934907"}
|
|
329
|
+
[TestRoom b0714c76ace8] Initializing new TestRoom
|
|
330
|
+
[TestRoom b0714c76ace8] UUID: b0714c76ace8
|
|
331
|
+
[TestRoom b0714c76ace8] Key: TestRoom:4dc4988201822f1170f49e65a4ec91ef
|
|
332
|
+
[TestRoom b0714c76ace8] Ping watchdog
|
|
333
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f1170f49e65a4ec91ef:from_room: {type: "custom_started"}
|
|
334
|
+
[TestRoom b0714c76ace8] Started
|
|
335
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f1170f49e65a4ec91ef:from_room: {type: "room_opened"}
|
|
336
|
+
[TestRoom b0714c76ace8] TestRoom::Channel is streaming from TestRoom:4dc4988201822f1170f49e65a4ec91ef:to_room
|
|
337
|
+
[TestRoom b0714c76ace8] TestRoom::Channel is transmitting the subscription confirmation
|
|
338
|
+
[TestRoom b0714c76ace8] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
339
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f1170f49e65a4ec91ef:to_room: {type: "member_joined", mtok: "5dde17351035db1b82984000cc3c6f30"}
|
|
340
|
+
[TestRoom b0714c76ace8] Received message: {"type" => "member_joined", "mtok" => "5dde17351035db1b82984000cc3c6f30"}
|
|
341
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f1170f49e65a4ec91ef:to_room: {type: "member_left", mtok: "5dde17351035db1b82984000cc3c6f30"}
|
|
342
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11A:to_room: {type: "member_joined", mtok: "caf04fa792e89abee1655a4837335413"}
|
|
343
|
+
[TestRoom b0714c76ace8] Received message: {"type" => "member_left", "mtok" => "5dde17351035db1b82984000cc3c6f30"}
|
|
344
|
+
[TestRoom 3b0d52ac9d09] Initializing new TestRoom
|
|
345
|
+
[TestRoom 3b0d52ac9d09] UUID: 3b0d52ac9d09
|
|
346
|
+
[TestRoom 3b0d52ac9d09] Key: TestRoom:4dc4988201822f11A
|
|
347
|
+
[TestRoom 3b0d52ac9d09] Ping watchdog
|
|
348
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11A:from_room: {type: "custom_started"}
|
|
349
|
+
[TestRoom 3b0d52ac9d09] Started
|
|
350
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11A:from_room: {type: "room_opened"}
|
|
351
|
+
[TestRoom 3b0d52ac9d09] TestRoom::Channel is streaming from TestRoom:4dc4988201822f11A:to_room
|
|
352
|
+
[TestRoom 3b0d52ac9d09] TestRoom::Channel is transmitting the subscription confirmation
|
|
353
|
+
[TestRoom 3b0d52ac9d09] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
354
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11B:to_room: {type: "member_joined", mtok: "e6d56f1c8d4a6e1317485f7cb8a7267c"}
|
|
355
|
+
[TestRoom 3a9af7276245] Initializing new TestRoom
|
|
356
|
+
[TestRoom 3a9af7276245] UUID: 3a9af7276245
|
|
357
|
+
[TestRoom 3a9af7276245] Key: TestRoom:4dc4988201822f11B
|
|
358
|
+
[TestRoom 3a9af7276245] Ping watchdog
|
|
359
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11B:from_room: {type: "custom_started"}
|
|
360
|
+
[TestRoom 3a9af7276245] Started
|
|
361
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11B:from_room: {type: "room_opened"}
|
|
362
|
+
[TestRoom 3a9af7276245] TestRoom::Channel is streaming from TestRoom:4dc4988201822f11B:to_room
|
|
363
|
+
[TestRoom 3a9af7276245] TestRoom::Channel is transmitting the subscription confirmation
|
|
364
|
+
[TestRoom 3a9af7276245] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
365
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11B:to_room: {type: "member_left", mtok: "e6d56f1c8d4a6e1317485f7cb8a7267c"}
|
|
366
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11dd850c07c5f3d61a:to_room: {type: "member_joined", mtok: "da051d0d7dde834823f157b2c3810a43"}
|
|
367
|
+
[TestRoom 3a9af7276245] Received message: {"type" => "member_left", "mtok" => "e6d56f1c8d4a6e1317485f7cb8a7267c"}
|
|
368
|
+
[TestRoom d5f29a31ea21] Initializing new TestRoom
|
|
369
|
+
[TestRoom d5f29a31ea21] UUID: d5f29a31ea21
|
|
370
|
+
[TestRoom d5f29a31ea21] Key: TestRoom:4dc4988201822f11dd850c07c5f3d61a
|
|
371
|
+
[TestRoom d5f29a31ea21] Ping watchdog
|
|
372
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11dd850c07c5f3d61a:from_room: {type: "custom_started"}
|
|
373
|
+
[TestRoom d5f29a31ea21] Started
|
|
374
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11dd850c07c5f3d61a:from_room: {type: "room_opened"}
|
|
375
|
+
[TestRoom d5f29a31ea21] TestRoom::Channel is streaming from TestRoom:4dc4988201822f11dd850c07c5f3d61a:to_room
|
|
376
|
+
[TestRoom d5f29a31ea21] TestRoom::Channel is transmitting the subscription confirmation
|
|
377
|
+
[TestRoom d5f29a31ea21] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
378
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11dd850c07c5f3d61a:to_room: {type: "member_left", mtok: "da051d0d7dde834823f157b2c3810a43"}
|
|
379
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bfdf90fdf6384c89:to_room: {type: "member_joined", mtok: "0667ccf0c6d4b73f9a7763ec94f6b8de"}
|
|
380
|
+
[TestRoom d5f29a31ea21] Received message: {"type" => "member_left", "mtok" => "da051d0d7dde834823f157b2c3810a43"}
|
|
381
|
+
[TestRoom b9420abe2a3f] Initializing new TestRoom
|
|
382
|
+
[TestRoom b9420abe2a3f] UUID: b9420abe2a3f
|
|
383
|
+
[TestRoom b9420abe2a3f] Key: TestRoom:4dc4988201822f11bfdf90fdf6384c89
|
|
384
|
+
[TestRoom b9420abe2a3f] Ping watchdog
|
|
385
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bfdf90fdf6384c89:from_room: {type: "custom_started"}
|
|
386
|
+
[TestRoom b9420abe2a3f] Started
|
|
387
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bfdf90fdf6384c89:from_room: {type: "room_opened"}
|
|
388
|
+
[TestRoom b9420abe2a3f] TestRoom::Channel is streaming from TestRoom:4dc4988201822f11bfdf90fdf6384c89:to_room
|
|
389
|
+
[TestRoom b9420abe2a3f] TestRoom::Channel is transmitting the subscription confirmation
|
|
390
|
+
[TestRoom b9420abe2a3f] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
391
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bfdf90fdf6384c89:to_room: "KILL"
|
|
392
|
+
[TestRoom b9420abe2a3f] Received message: "KILL"
|
|
393
|
+
[TestRoom b9420abe2a3f] TestRoom::Channel stopped streaming from TestRoom:4dc4988201822f11bfdf90fdf6384c89:to_room
|
|
394
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bfdf90fdf6384c89:from_room: {type: "room_closed"}
|
|
395
|
+
[TestRoom b9420abe2a3f] Shutting down
|
|
396
|
+
[TestRoom b9420abe2a3f] Shutdown complete
|
|
397
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f115536bbd2ecc5dff3:to_room: {type: "member_joined", mtok: "0f9e9972597c4a146d80db1576b2d62f"}
|
|
398
|
+
[TestRoom 8c9c41078994] Initializing new TestRoom
|
|
399
|
+
[TestRoom 8c9c41078994] UUID: 8c9c41078994
|
|
400
|
+
[TestRoom 8c9c41078994] Key: TestRoom:4dc4988201822f115536bbd2ecc5dff3
|
|
401
|
+
[TestRoom 8c9c41078994] Ping watchdog
|
|
402
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f115536bbd2ecc5dff3:from_room: {type: "custom_started"}
|
|
403
|
+
[TestRoom 8c9c41078994] TestRoom::Channel is streaming from TestRoom:4dc4988201822f115536bbd2ecc5dff3:to_room
|
|
404
|
+
[TestRoom 8c9c41078994] Started
|
|
405
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f115536bbd2ecc5dff3:from_room: {type: "room_opened"}
|
|
406
|
+
[TestRoom 8c9c41078994] TestRoom::Channel is transmitting the subscription confirmation
|
|
407
|
+
[TestRoom 8c9c41078994] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
408
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f115536bbd2ecc5dff3:to_room: {type: "member_left", mtok: "0f9e9972597c4a146d80db1576b2d62f"}
|
|
409
|
+
[TestRoom 8c9c41078994] Ping watchdog
|
|
410
|
+
[TestRoom 8c9c41078994] Received message: {"type" => "member_left", "mtok" => "0f9e9972597c4a146d80db1576b2d62f"}
|
|
411
|
+
[TestRoom 8c9c41078994] Watchdog timeout for room TestRoom[4dc4988201822f115536bbd2ecc5dff3], shutting down
|
|
412
|
+
[TestRoom 8c9c41078994] TestRoom::Channel stopped streaming from TestRoom:4dc4988201822f115536bbd2ecc5dff3:to_room
|
|
413
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f115536bbd2ecc5dff3:from_room: {type: "room_closed"}
|
|
414
|
+
[TestRoom 8c9c41078994] Shutting down
|
|
415
|
+
[TestRoom 8c9c41078994] Shutdown complete
|
|
416
|
+
Shutting down CableRoom
|
|
417
|
+
[TestRoom d5709f0aee0e] TestRoom::Channel stopped streaming from TestRoom:4dc4988201822f11bcd090621114e35b:to_room
|
|
418
|
+
[TestRoom e07ebbd73c9b] TestRoom::Channel stopped streaming from TestRoom:4dc4988201822f11ABC:to_room
|
|
419
|
+
[TestRoom b0714c76ace8] TestRoom::Channel stopped streaming from TestRoom:4dc4988201822f1170f49e65a4ec91ef:to_room
|
|
420
|
+
[TestRoom 3b0d52ac9d09] TestRoom::Channel stopped streaming from TestRoom:4dc4988201822f11A:to_room
|
|
421
|
+
[TestRoom 3a9af7276245] TestRoom::Channel stopped streaming from TestRoom:4dc4988201822f11B:to_room
|
|
422
|
+
[TestRoom d5f29a31ea21] TestRoom::Channel stopped streaming from TestRoom:4dc4988201822f11dd850c07c5f3d61a:to_room
|
|
423
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f1170f49e65a4ec91ef:from_room: {type: "room_closed"}
|
|
424
|
+
[TestRoom b0714c76ace8] Shutting down
|
|
425
|
+
[TestRoom b0714c76ace8] Shutdown complete
|
|
426
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11bcd090621114e35b:from_room: {type: "room_closed"}
|
|
427
|
+
[TestRoom d5709f0aee0e] Shutting down
|
|
428
|
+
[TestRoom d5709f0aee0e] Shutdown complete
|
|
429
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11ABC:from_room: {type: "room_closed"}
|
|
430
|
+
[TestRoom e07ebbd73c9b] Shutting down
|
|
431
|
+
[TestRoom e07ebbd73c9b] Shutdown complete
|
|
432
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11A:from_room: {type: "room_closed"}
|
|
433
|
+
[TestRoom 3b0d52ac9d09] Shutting down
|
|
434
|
+
[TestRoom 3b0d52ac9d09] Shutdown complete
|
|
435
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11B:from_room: {type: "room_closed"}
|
|
436
|
+
[TestRoom 3a9af7276245] Shutting down
|
|
437
|
+
[TestRoom 3a9af7276245] Shutdown complete
|
|
438
|
+
[ActionCable] Broadcasting to TestRoom:4dc4988201822f11dd850c07c5f3d61a:from_room: {type: "room_closed"}
|
|
439
|
+
[TestRoom d5f29a31ea21] Shutting down
|
|
440
|
+
[TestRoom d5f29a31ea21] Shutdown complete
|
|
441
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476b5615a3c7d67dfee:to_room: {type: "member_joined", mtok: "ee557e26587735e7a85fba5ee9374a78"}
|
|
442
|
+
[TestRoom 8ff5ac134efa] Initializing new TestRoom
|
|
443
|
+
[TestRoom 8ff5ac134efa] UUID: 8ff5ac134efa
|
|
444
|
+
[TestRoom 8ff5ac134efa] Key: TestRoom:17ad64f0dd575476b5615a3c7d67dfee
|
|
445
|
+
[TestRoom 8ff5ac134efa] Ping watchdog
|
|
446
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476b5615a3c7d67dfee:from_room: {type: "custom_started"}
|
|
447
|
+
[TestRoom 8ff5ac134efa] Started
|
|
448
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476b5615a3c7d67dfee:from_room: {type: "room_opened"}
|
|
449
|
+
[TestRoom 8ff5ac134efa] TestRoom::Channel is streaming from TestRoom:17ad64f0dd575476b5615a3c7d67dfee:to_room
|
|
450
|
+
[TestRoom 8ff5ac134efa] TestRoom::Channel is transmitting the subscription confirmation
|
|
451
|
+
[TestRoom 8ff5ac134efa] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
452
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476b5615a3c7d67dfee:to_room: {type: "member_left", mtok: "ee557e26587735e7a85fba5ee9374a78"}
|
|
453
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476ABC:to_room: {type: "member_joined", mtok: "8c8021c55727cca62a94dfeb9ed20a11"}
|
|
454
|
+
[TestRoom 8ff5ac134efa] Received message: {"type" => "member_left", "mtok" => "ee557e26587735e7a85fba5ee9374a78"}
|
|
455
|
+
[TestRoom c96b51eb46ab] Initializing new TestRoom
|
|
456
|
+
[TestRoom c96b51eb46ab] UUID: c96b51eb46ab
|
|
457
|
+
[TestRoom c96b51eb46ab] Key: TestRoom:17ad64f0dd575476ABC
|
|
458
|
+
[TestRoom c96b51eb46ab] Ping watchdog
|
|
459
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476ABC:from_room: {type: "custom_started"}
|
|
460
|
+
[TestRoom c96b51eb46ab] Started
|
|
461
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476ABC:from_room: {type: "room_opened"}
|
|
462
|
+
[TestRoom c96b51eb46ab] TestRoom::Channel is streaming from TestRoom:17ad64f0dd575476ABC:to_room
|
|
463
|
+
[TestRoom c96b51eb46ab] TestRoom::Channel is transmitting the subscription confirmation
|
|
464
|
+
[TestRoom c96b51eb46ab] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
465
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476ABC:to_room: {type: "member_left", mtok: "8c8021c55727cca62a94dfeb9ed20a11"}
|
|
466
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd5754769a06fb9e572137b5:to_room: {type: "member_joined", mtok: "e788d1fdaf365ab4d88808ec88e46540"}
|
|
467
|
+
[TestRoom c96b51eb46ab] Received message: {"type" => "member_left", "mtok" => "8c8021c55727cca62a94dfeb9ed20a11"}
|
|
468
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c945dcb490fc3d58:to_room: {type: "member_joined", mtok: "b4fb7444186631ce965113b5178c7638"}
|
|
469
|
+
[TestRoom 8094ccc610d2] Initializing new TestRoom
|
|
470
|
+
[TestRoom 8094ccc610d2] UUID: 8094ccc610d2
|
|
471
|
+
[TestRoom 8094ccc610d2] Key: TestRoom:17ad64f0dd575476c945dcb490fc3d58
|
|
472
|
+
[TestRoom 8094ccc610d2] Ping watchdog
|
|
473
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c945dcb490fc3d58:from_room: {type: "custom_started"}
|
|
474
|
+
[TestRoom 8094ccc610d2] Started
|
|
475
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c945dcb490fc3d58:from_room: {type: "room_opened"}
|
|
476
|
+
[TestRoom 8094ccc610d2] TestRoom::Channel is streaming from TestRoom:17ad64f0dd575476c945dcb490fc3d58:to_room
|
|
477
|
+
[TestRoom 8094ccc610d2] TestRoom::Channel is transmitting the subscription confirmation
|
|
478
|
+
[TestRoom 8094ccc610d2] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
479
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c945dcb490fc3d58:to_room: {type: "member_joined", mtok: "1b4778f964467f612f9e4480fcaf7931"}
|
|
480
|
+
[TestRoom 8094ccc610d2] Received message: {"type" => "member_joined", "mtok" => "1b4778f964467f612f9e4480fcaf7931"}
|
|
481
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c945dcb490fc3d58:to_room: {type: "member_left", mtok: "1b4778f964467f612f9e4480fcaf7931"}
|
|
482
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476A:to_room: {type: "member_joined", mtok: "0deef9e59c8ac6c830ebce53c887fab9"}
|
|
483
|
+
[TestRoom 8094ccc610d2] Received message: {"type" => "member_left", "mtok" => "1b4778f964467f612f9e4480fcaf7931"}
|
|
484
|
+
[TestRoom 6d03d828f96b] Initializing new TestRoom
|
|
485
|
+
[TestRoom 6d03d828f96b] UUID: 6d03d828f96b
|
|
486
|
+
[TestRoom 6d03d828f96b] Key: TestRoom:17ad64f0dd575476A
|
|
487
|
+
[TestRoom 6d03d828f96b] Ping watchdog
|
|
488
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476A:from_room: {type: "custom_started"}
|
|
489
|
+
[TestRoom 6d03d828f96b] Started
|
|
490
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476A:from_room: {type: "room_opened"}
|
|
491
|
+
[TestRoom 6d03d828f96b] TestRoom::Channel is streaming from TestRoom:17ad64f0dd575476A:to_room
|
|
492
|
+
[TestRoom 6d03d828f96b] TestRoom::Channel is transmitting the subscription confirmation
|
|
493
|
+
[TestRoom 6d03d828f96b] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
494
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476B:to_room: {type: "member_joined", mtok: "10be4d07e90d8e7a1ea9f9a370e7abb7"}
|
|
495
|
+
[TestRoom 54a74e70c98b] Initializing new TestRoom
|
|
496
|
+
[TestRoom 54a74e70c98b] UUID: 54a74e70c98b
|
|
497
|
+
[TestRoom 54a74e70c98b] Key: TestRoom:17ad64f0dd575476B
|
|
498
|
+
[TestRoom 54a74e70c98b] Ping watchdog
|
|
499
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476B:from_room: {type: "custom_started"}
|
|
500
|
+
[TestRoom 54a74e70c98b] Started
|
|
501
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476B:from_room: {type: "room_opened"}
|
|
502
|
+
[TestRoom 54a74e70c98b] TestRoom::Channel is streaming from TestRoom:17ad64f0dd575476B:to_room
|
|
503
|
+
[TestRoom 54a74e70c98b] TestRoom::Channel is transmitting the subscription confirmation
|
|
504
|
+
[TestRoom 54a74e70c98b] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
505
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476B:to_room: {type: "member_left", mtok: "10be4d07e90d8e7a1ea9f9a370e7abb7"}
|
|
506
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd5754767ef425e3ecbb74df:to_room: {type: "member_joined", mtok: "206f68c3df6b1629fd4908d11f84574d"}
|
|
507
|
+
[TestRoom 54a74e70c98b] Received message: {"type" => "member_left", "mtok" => "10be4d07e90d8e7a1ea9f9a370e7abb7"}
|
|
508
|
+
[TestRoom 300b88940fa7] Initializing new TestRoom
|
|
509
|
+
[TestRoom 300b88940fa7] UUID: 300b88940fa7
|
|
510
|
+
[TestRoom 300b88940fa7] Key: TestRoom:17ad64f0dd5754767ef425e3ecbb74df
|
|
511
|
+
[TestRoom 300b88940fa7] Ping watchdog
|
|
512
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd5754767ef425e3ecbb74df:from_room: {type: "custom_started"}
|
|
513
|
+
[TestRoom 300b88940fa7] Started
|
|
514
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd5754767ef425e3ecbb74df:from_room: {type: "room_opened"}
|
|
515
|
+
[TestRoom 300b88940fa7] TestRoom::Channel is streaming from TestRoom:17ad64f0dd5754767ef425e3ecbb74df:to_room
|
|
516
|
+
[TestRoom 300b88940fa7] TestRoom::Channel is transmitting the subscription confirmation
|
|
517
|
+
[TestRoom 300b88940fa7] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
518
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd5754767ef425e3ecbb74df:to_room: {type: "member_left", mtok: "206f68c3df6b1629fd4908d11f84574d"}
|
|
519
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c2ed2f46727aae70:to_room: {type: "member_joined", mtok: "79d16b03231464acca2319bf2f04921f"}
|
|
520
|
+
[TestRoom 300b88940fa7] Received message: {"type" => "member_left", "mtok" => "206f68c3df6b1629fd4908d11f84574d"}
|
|
521
|
+
[TestRoom 10f685cb0076] Initializing new TestRoom
|
|
522
|
+
[TestRoom 10f685cb0076] UUID: 10f685cb0076
|
|
523
|
+
[TestRoom 10f685cb0076] Key: TestRoom:17ad64f0dd575476c2ed2f46727aae70
|
|
524
|
+
[TestRoom 10f685cb0076] Ping watchdog
|
|
525
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c2ed2f46727aae70:from_room: {type: "custom_started"}
|
|
526
|
+
[TestRoom 10f685cb0076] Started
|
|
527
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c2ed2f46727aae70:from_room: {type: "room_opened"}
|
|
528
|
+
[TestRoom 10f685cb0076] TestRoom::Channel is streaming from TestRoom:17ad64f0dd575476c2ed2f46727aae70:to_room
|
|
529
|
+
[TestRoom 10f685cb0076] TestRoom::Channel is transmitting the subscription confirmation
|
|
530
|
+
[TestRoom 10f685cb0076] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
531
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c2ed2f46727aae70:to_room: "KILL"
|
|
532
|
+
[TestRoom 10f685cb0076] Received message: "KILL"
|
|
533
|
+
[TestRoom 10f685cb0076] TestRoom::Channel stopped streaming from TestRoom:17ad64f0dd575476c2ed2f46727aae70:to_room
|
|
534
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c2ed2f46727aae70:from_room: {type: "room_closed"}
|
|
535
|
+
[TestRoom 10f685cb0076] Shutting down
|
|
536
|
+
[TestRoom 10f685cb0076] Shutdown complete
|
|
537
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c479223710e231f0:to_room: {type: "member_joined", mtok: "101160e205d83c381b65ebed10f796ea"}
|
|
538
|
+
[TestRoom e19a9ba5f9fd] Initializing new TestRoom
|
|
539
|
+
[TestRoom e19a9ba5f9fd] UUID: e19a9ba5f9fd
|
|
540
|
+
[TestRoom e19a9ba5f9fd] Key: TestRoom:17ad64f0dd575476c479223710e231f0
|
|
541
|
+
[TestRoom e19a9ba5f9fd] Ping watchdog
|
|
542
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c479223710e231f0:from_room: {type: "custom_started"}
|
|
543
|
+
[TestRoom e19a9ba5f9fd] Started
|
|
544
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c479223710e231f0:from_room: {type: "room_opened"}
|
|
545
|
+
[TestRoom e19a9ba5f9fd] TestRoom::Channel is streaming from TestRoom:17ad64f0dd575476c479223710e231f0:to_room
|
|
546
|
+
[TestRoom e19a9ba5f9fd] TestRoom::Channel is transmitting the subscription confirmation
|
|
547
|
+
[TestRoom e19a9ba5f9fd] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
548
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c479223710e231f0:to_room: {type: "member_left", mtok: "101160e205d83c381b65ebed10f796ea"}
|
|
549
|
+
[TestRoom e19a9ba5f9fd] Ping watchdog
|
|
550
|
+
[TestRoom e19a9ba5f9fd] Received message: {"type" => "member_left", "mtok" => "101160e205d83c381b65ebed10f796ea"}
|
|
551
|
+
[TestRoom e19a9ba5f9fd] Watchdog timeout for room TestRoom[17ad64f0dd575476c479223710e231f0], shutting down
|
|
552
|
+
[TestRoom e19a9ba5f9fd] TestRoom::Channel stopped streaming from TestRoom:17ad64f0dd575476c479223710e231f0:to_room
|
|
553
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c479223710e231f0:from_room: {type: "room_closed"}
|
|
554
|
+
[TestRoom e19a9ba5f9fd] Shutting down
|
|
555
|
+
[TestRoom e19a9ba5f9fd] Shutdown complete
|
|
556
|
+
Shutting down CableRoom
|
|
557
|
+
[TestRoom 8ff5ac134efa] TestRoom::Channel stopped streaming from TestRoom:17ad64f0dd575476b5615a3c7d67dfee:to_room
|
|
558
|
+
[TestRoom c96b51eb46ab] TestRoom::Channel stopped streaming from TestRoom:17ad64f0dd575476ABC:to_room
|
|
559
|
+
[TestRoom 8094ccc610d2] TestRoom::Channel stopped streaming from TestRoom:17ad64f0dd575476c945dcb490fc3d58:to_room
|
|
560
|
+
[TestRoom 6d03d828f96b] TestRoom::Channel stopped streaming from TestRoom:17ad64f0dd575476A:to_room
|
|
561
|
+
[TestRoom 54a74e70c98b] TestRoom::Channel stopped streaming from TestRoom:17ad64f0dd575476B:to_room
|
|
562
|
+
[TestRoom 300b88940fa7] TestRoom::Channel stopped streaming from TestRoom:17ad64f0dd5754767ef425e3ecbb74df:to_room
|
|
563
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476c945dcb490fc3d58:from_room: {type: "room_closed"}
|
|
564
|
+
[TestRoom 8094ccc610d2] Shutting down
|
|
565
|
+
[TestRoom 8094ccc610d2] Shutdown complete
|
|
566
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476b5615a3c7d67dfee:from_room: {type: "room_closed"}
|
|
567
|
+
[TestRoom 8ff5ac134efa] Shutting down
|
|
568
|
+
[TestRoom 8ff5ac134efa] Shutdown complete
|
|
569
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476ABC:from_room: {type: "room_closed"}
|
|
570
|
+
[TestRoom c96b51eb46ab] Shutting down
|
|
571
|
+
[TestRoom c96b51eb46ab] Shutdown complete
|
|
572
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476B:from_room: {type: "room_closed"}
|
|
573
|
+
[TestRoom 54a74e70c98b] Shutting down
|
|
574
|
+
[TestRoom 54a74e70c98b] Shutdown complete
|
|
575
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd575476A:from_room: {type: "room_closed"}
|
|
576
|
+
[TestRoom 6d03d828f96b] Shutting down
|
|
577
|
+
[TestRoom 6d03d828f96b] Shutdown complete
|
|
578
|
+
[ActionCable] Broadcasting to TestRoom:17ad64f0dd5754767ef425e3ecbb74df:from_room: {type: "room_closed"}
|
|
579
|
+
[TestRoom 300b88940fa7] Shutting down
|
|
580
|
+
[TestRoom 300b88940fa7] Shutdown complete
|
|
581
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a0feceb563f09284f:to_room: {type: "member_joined", mtok: "f59edd5db2818505c735146012f2b9d1"}
|
|
582
|
+
[TestRoom 8e95666b11da] Initializing new TestRoom
|
|
583
|
+
[TestRoom 8e95666b11da] UUID: 8e95666b11da
|
|
584
|
+
[TestRoom 8e95666b11da] Key: TestRoom:c7ece772ed45f53a0feceb563f09284f
|
|
585
|
+
[TestRoom 8e95666b11da] Ping watchdog
|
|
586
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a0feceb563f09284f:from_room: {type: "custom_started"}
|
|
587
|
+
[TestRoom 8e95666b11da] Started
|
|
588
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a0feceb563f09284f:from_room: {type: "room_opened"}
|
|
589
|
+
[TestRoom 8e95666b11da] TestRoom::Channel is streaming from TestRoom:c7ece772ed45f53a0feceb563f09284f:to_room
|
|
590
|
+
[TestRoom 8e95666b11da] TestRoom::Channel is transmitting the subscription confirmation
|
|
591
|
+
[TestRoom 8e95666b11da] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
592
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a0feceb563f09284f:to_room: {type: "member_left", mtok: "f59edd5db2818505c735146012f2b9d1"}
|
|
593
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aABC:to_room: {type: "member_joined", mtok: "099cc0ef5ae6da9f7c372bbd58af54a4"}
|
|
594
|
+
[TestRoom 8e95666b11da] Received message: {"type" => "member_left", "mtok" => "f59edd5db2818505c735146012f2b9d1"}
|
|
595
|
+
[TestRoom f5f3ddd5b770] Initializing new TestRoom
|
|
596
|
+
[TestRoom f5f3ddd5b770] UUID: f5f3ddd5b770
|
|
597
|
+
[TestRoom f5f3ddd5b770] Key: TestRoom:c7ece772ed45f53aABC
|
|
598
|
+
[TestRoom f5f3ddd5b770] Ping watchdog
|
|
599
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aABC:from_room: {type: "custom_started"}
|
|
600
|
+
[TestRoom f5f3ddd5b770] Started
|
|
601
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aABC:from_room: {type: "room_opened"}
|
|
602
|
+
[TestRoom f5f3ddd5b770] TestRoom::Channel is streaming from TestRoom:c7ece772ed45f53aABC:to_room
|
|
603
|
+
[TestRoom f5f3ddd5b770] TestRoom::Channel is transmitting the subscription confirmation
|
|
604
|
+
[TestRoom f5f3ddd5b770] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
605
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aABC:to_room: {type: "member_left", mtok: "099cc0ef5ae6da9f7c372bbd58af54a4"}
|
|
606
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a3bf3c927d2aa3f11:to_room: {type: "member_joined", mtok: "46d6ea02a6c056c59a84e9defd370082"}
|
|
607
|
+
[TestRoom f5f3ddd5b770] Received message: {"type" => "member_left", "mtok" => "099cc0ef5ae6da9f7c372bbd58af54a4"}
|
|
608
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53ad3a6c30e1380176b:to_room: {type: "member_joined", mtok: "4df1f2c659d79bdc04eaf91c69a1f4dd"}
|
|
609
|
+
[TestRoom 022223e109ce] Initializing new TestRoom
|
|
610
|
+
[TestRoom 022223e109ce] UUID: 022223e109ce
|
|
611
|
+
[TestRoom 022223e109ce] Key: TestRoom:c7ece772ed45f53ad3a6c30e1380176b
|
|
612
|
+
[TestRoom 022223e109ce] Ping watchdog
|
|
613
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53ad3a6c30e1380176b:from_room: {type: "custom_started"}
|
|
614
|
+
[TestRoom 022223e109ce] Started
|
|
615
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53ad3a6c30e1380176b:from_room: {type: "room_opened"}
|
|
616
|
+
[TestRoom 022223e109ce] TestRoom::Channel is streaming from TestRoom:c7ece772ed45f53ad3a6c30e1380176b:to_room
|
|
617
|
+
[TestRoom 022223e109ce] TestRoom::Channel is transmitting the subscription confirmation
|
|
618
|
+
[TestRoom 022223e109ce] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
619
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53ad3a6c30e1380176b:to_room: {type: "member_joined", mtok: "0d27624aa98a458086da813585fa5d04"}
|
|
620
|
+
[TestRoom 022223e109ce] Received message: {"type" => "member_joined", "mtok" => "0d27624aa98a458086da813585fa5d04"}
|
|
621
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53ad3a6c30e1380176b:to_room: {type: "member_left", mtok: "0d27624aa98a458086da813585fa5d04"}
|
|
622
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aA:to_room: {type: "member_joined", mtok: "5b33395c12e7315b80e7c2432cb1b2be"}
|
|
623
|
+
[TestRoom 022223e109ce] Received message: {"type" => "member_left", "mtok" => "0d27624aa98a458086da813585fa5d04"}
|
|
624
|
+
[TestRoom 163fe7f277f9] Initializing new TestRoom
|
|
625
|
+
[TestRoom 163fe7f277f9] UUID: 163fe7f277f9
|
|
626
|
+
[TestRoom 163fe7f277f9] Key: TestRoom:c7ece772ed45f53aA
|
|
627
|
+
[TestRoom 163fe7f277f9] Ping watchdog
|
|
628
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aA:from_room: {type: "custom_started"}
|
|
629
|
+
[TestRoom 163fe7f277f9] Started
|
|
630
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aA:from_room: {type: "room_opened"}
|
|
631
|
+
[TestRoom 163fe7f277f9] TestRoom::Channel is streaming from TestRoom:c7ece772ed45f53aA:to_room
|
|
632
|
+
[TestRoom 163fe7f277f9] TestRoom::Channel is transmitting the subscription confirmation
|
|
633
|
+
[TestRoom 163fe7f277f9] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
634
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aB:to_room: {type: "member_joined", mtok: "10bfb1eb0346a6e1e28532738d058505"}
|
|
635
|
+
[TestRoom b614ca4223e2] Initializing new TestRoom
|
|
636
|
+
[TestRoom b614ca4223e2] UUID: b614ca4223e2
|
|
637
|
+
[TestRoom b614ca4223e2] Key: TestRoom:c7ece772ed45f53aB
|
|
638
|
+
[TestRoom b614ca4223e2] Ping watchdog
|
|
639
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aB:from_room: {type: "custom_started"}
|
|
640
|
+
[TestRoom b614ca4223e2] Started
|
|
641
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aB:from_room: {type: "room_opened"}
|
|
642
|
+
[TestRoom b614ca4223e2] TestRoom::Channel is streaming from TestRoom:c7ece772ed45f53aB:to_room
|
|
643
|
+
[TestRoom b614ca4223e2] TestRoom::Channel is transmitting the subscription confirmation
|
|
644
|
+
[TestRoom b614ca4223e2] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
645
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aB:to_room: {type: "member_left", mtok: "10bfb1eb0346a6e1e28532738d058505"}
|
|
646
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a11946b268cd2d14b:to_room: {type: "member_joined", mtok: "96dc468b39d002cda906cc14669dcbb8"}
|
|
647
|
+
[TestRoom b614ca4223e2] Received message: {"type" => "member_left", "mtok" => "10bfb1eb0346a6e1e28532738d058505"}
|
|
648
|
+
[TestRoom 21a71c42454f] Initializing new TestRoom
|
|
649
|
+
[TestRoom 21a71c42454f] UUID: 21a71c42454f
|
|
650
|
+
[TestRoom 21a71c42454f] Key: TestRoom:c7ece772ed45f53a11946b268cd2d14b
|
|
651
|
+
[TestRoom 21a71c42454f] Ping watchdog
|
|
652
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a11946b268cd2d14b:from_room: {type: "custom_started"}
|
|
653
|
+
[TestRoom 21a71c42454f] Started
|
|
654
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a11946b268cd2d14b:from_room: {type: "room_opened"}
|
|
655
|
+
[TestRoom 21a71c42454f] TestRoom::Channel is streaming from TestRoom:c7ece772ed45f53a11946b268cd2d14b:to_room
|
|
656
|
+
[TestRoom 21a71c42454f] TestRoom::Channel is transmitting the subscription confirmation
|
|
657
|
+
[TestRoom 21a71c42454f] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
658
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a11946b268cd2d14b:to_room: {type: "member_left", mtok: "96dc468b39d002cda906cc14669dcbb8"}
|
|
659
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a7d7091c975577e41:to_room: {type: "member_joined", mtok: "23ce20fe2f966b3842fff3b9bddfc326"}
|
|
660
|
+
[TestRoom 21a71c42454f] Received message: {"type" => "member_left", "mtok" => "96dc468b39d002cda906cc14669dcbb8"}
|
|
661
|
+
[TestRoom b8721bf89760] Initializing new TestRoom
|
|
662
|
+
[TestRoom b8721bf89760] UUID: b8721bf89760
|
|
663
|
+
[TestRoom b8721bf89760] Key: TestRoom:c7ece772ed45f53a7d7091c975577e41
|
|
664
|
+
[TestRoom b8721bf89760] Ping watchdog
|
|
665
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a7d7091c975577e41:from_room: {type: "custom_started"}
|
|
666
|
+
[TestRoom b8721bf89760] Started
|
|
667
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a7d7091c975577e41:from_room: {type: "room_opened"}
|
|
668
|
+
[TestRoom b8721bf89760] TestRoom::Channel is streaming from TestRoom:c7ece772ed45f53a7d7091c975577e41:to_room
|
|
669
|
+
[TestRoom b8721bf89760] TestRoom::Channel is transmitting the subscription confirmation
|
|
670
|
+
[TestRoom b8721bf89760] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
671
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a7d7091c975577e41:to_room: "KILL"
|
|
672
|
+
[TestRoom b8721bf89760] Received message: "KILL"
|
|
673
|
+
[TestRoom b8721bf89760] TestRoom::Channel stopped streaming from TestRoom:c7ece772ed45f53a7d7091c975577e41:to_room
|
|
674
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a7d7091c975577e41:from_room: {type: "room_closed"}
|
|
675
|
+
[TestRoom b8721bf89760] Shutting down
|
|
676
|
+
[TestRoom b8721bf89760] Shutdown complete
|
|
677
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53abc281d8c7b643161:to_room: {type: "member_joined", mtok: "3eba70abf6d8e8520b699a299b22e251"}
|
|
678
|
+
[TestRoom 60b39f67c15e] Initializing new TestRoom
|
|
679
|
+
[TestRoom 60b39f67c15e] UUID: 60b39f67c15e
|
|
680
|
+
[TestRoom 60b39f67c15e] Key: TestRoom:c7ece772ed45f53abc281d8c7b643161
|
|
681
|
+
[TestRoom 60b39f67c15e] Ping watchdog
|
|
682
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53abc281d8c7b643161:from_room: {type: "custom_started"}
|
|
683
|
+
[TestRoom 60b39f67c15e] Started
|
|
684
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53abc281d8c7b643161:from_room: {type: "room_opened"}
|
|
685
|
+
[TestRoom 60b39f67c15e] TestRoom::Channel is streaming from TestRoom:c7ece772ed45f53abc281d8c7b643161:to_room
|
|
686
|
+
[TestRoom 60b39f67c15e] TestRoom::Channel is transmitting the subscription confirmation
|
|
687
|
+
[TestRoom 60b39f67c15e] Channel.transmit called, ignoring: [{identifier: "Room[]", type: "confirm_subscription"}]
|
|
688
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53abc281d8c7b643161:to_room: {type: "member_left", mtok: "3eba70abf6d8e8520b699a299b22e251"}
|
|
689
|
+
[TestRoom 60b39f67c15e] Ping watchdog
|
|
690
|
+
[TestRoom 60b39f67c15e] Received message: {"type" => "member_left", "mtok" => "3eba70abf6d8e8520b699a299b22e251"}
|
|
691
|
+
[TestRoom 60b39f67c15e] Watchdog timeout for room TestRoom[c7ece772ed45f53abc281d8c7b643161], shutting down
|
|
692
|
+
[TestRoom 60b39f67c15e] TestRoom::Channel stopped streaming from TestRoom:c7ece772ed45f53abc281d8c7b643161:to_room
|
|
693
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53abc281d8c7b643161:from_room: {type: "room_closed"}
|
|
694
|
+
[TestRoom 60b39f67c15e] Shutting down
|
|
695
|
+
[TestRoom 60b39f67c15e] Shutdown complete
|
|
696
|
+
Shutting down CableRoom
|
|
697
|
+
[TestRoom 8e95666b11da] TestRoom::Channel stopped streaming from TestRoom:c7ece772ed45f53a0feceb563f09284f:to_room
|
|
698
|
+
[TestRoom f5f3ddd5b770] TestRoom::Channel stopped streaming from TestRoom:c7ece772ed45f53aABC:to_room
|
|
699
|
+
[TestRoom 022223e109ce] TestRoom::Channel stopped streaming from TestRoom:c7ece772ed45f53ad3a6c30e1380176b:to_room
|
|
700
|
+
[TestRoom 163fe7f277f9] TestRoom::Channel stopped streaming from TestRoom:c7ece772ed45f53aA:to_room
|
|
701
|
+
[TestRoom b614ca4223e2] TestRoom::Channel stopped streaming from TestRoom:c7ece772ed45f53aB:to_room
|
|
702
|
+
[TestRoom 21a71c42454f] TestRoom::Channel stopped streaming from TestRoom:c7ece772ed45f53a11946b268cd2d14b:to_room
|
|
703
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53ad3a6c30e1380176b:from_room: {type: "room_closed"}
|
|
704
|
+
[TestRoom 022223e109ce] Shutting down
|
|
705
|
+
[TestRoom 022223e109ce] Shutdown complete
|
|
706
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a0feceb563f09284f:from_room: {type: "room_closed"}
|
|
707
|
+
[TestRoom 8e95666b11da] Shutting down
|
|
708
|
+
[TestRoom 8e95666b11da] Shutdown complete
|
|
709
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aABC:from_room: {type: "room_closed"}
|
|
710
|
+
[TestRoom f5f3ddd5b770] Shutting down
|
|
711
|
+
[TestRoom f5f3ddd5b770] Shutdown complete
|
|
712
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aA:from_room: {type: "room_closed"}
|
|
713
|
+
[TestRoom 163fe7f277f9] Shutting down
|
|
714
|
+
[TestRoom 163fe7f277f9] Shutdown complete
|
|
715
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53aB:from_room: {type: "room_closed"}
|
|
716
|
+
[TestRoom b614ca4223e2] Shutting down
|
|
717
|
+
[TestRoom b614ca4223e2] Shutdown complete
|
|
718
|
+
[ActionCable] Broadcasting to TestRoom:c7ece772ed45f53a11946b268cd2d14b:from_room: {type: "room_closed"}
|
|
719
|
+
[TestRoom 21a71c42454f] Shutting down
|
|
720
|
+
[TestRoom 21a71c42454f] Shutdown complete
|