graphql 1.8.5 → 1.8.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (318) hide show
  1. checksums.yaml +5 -5
  2. data/lib/generators/graphql/mutation_generator.rb +2 -2
  3. data/lib/graphql/analysis/analyze_query.rb +11 -2
  4. data/lib/graphql/internal_representation/visit.rb +1 -0
  5. data/lib/graphql/language/parser.rb +635 -685
  6. data/lib/graphql/language/parser.y +27 -18
  7. data/lib/graphql/query/context.rb +1 -1
  8. data/lib/graphql/query/validation_pipeline.rb +7 -15
  9. data/lib/graphql/schema/argument.rb +8 -1
  10. data/lib/graphql/schema/enum_value.rb +3 -0
  11. data/lib/graphql/schema/field.rb +8 -1
  12. data/lib/graphql/schema/input_object.rb +1 -1
  13. data/lib/graphql/schema/interface.rb +8 -14
  14. data/lib/graphql/schema/mutation.rb +0 -10
  15. data/lib/graphql/schema/object.rb +4 -0
  16. data/lib/graphql/static_validation/validator.rb +2 -1
  17. data/lib/graphql/subscriptions/action_cable_subscriptions.rb +1 -1
  18. data/lib/graphql/tracing.rb +5 -0
  19. data/lib/graphql/tracing/prometheus_tracing.rb +59 -0
  20. data/lib/graphql/tracing/prometheus_tracing/graphql_collector.rb +29 -0
  21. data/lib/graphql/tracing/skylight_tracing.rb +23 -1
  22. data/lib/graphql/types/relay/base_connection.rb +11 -5
  23. data/lib/graphql/version.rb +1 -1
  24. data/spec/generators/graphql/mutation_generator_spec.rb +18 -0
  25. data/spec/graphql/analysis/analyze_query_spec.rb +38 -0
  26. data/spec/graphql/argument_spec.rb +8 -0
  27. data/spec/graphql/language/parser_spec.rb +85 -0
  28. data/spec/graphql/relay/connection_type_spec.rb +26 -1
  29. data/spec/graphql/schema/argument_spec.rb +8 -2
  30. data/spec/graphql/schema/enum_value_spec.rb +13 -0
  31. data/spec/graphql/schema/field_spec.rb +27 -0
  32. data/spec/graphql/schema/interface_spec.rb +14 -4
  33. data/spec/graphql/schema/object_spec.rb +24 -18
  34. data/spec/graphql/tracing/prometheus_tracing_spec.rb +39 -0
  35. data/spec/graphql/tracing/skylight_tracing_spec.rb +47 -0
  36. data/spec/support/skylight.rb +36 -0
  37. data/spec/support/star_wars/schema.rb +6 -1
  38. metadata +214 -764
  39. data/spec/dummy/Gemfile.lock +0 -149
  40. data/spec/dummy/log/development.log +0 -599
  41. data/spec/dummy/log/test.log +0 -1220
  42. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-5/-5OWGoO21F6_WNuECrXgkwH7NcKlWSSe2GjVanwsmUk.cache +0 -0
  43. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-T/-TNJ0-j8HjZCYUE7EDQlhfGu64B8guOUPkXYO6HFhus.cache +0 -0
  44. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-x/-xYZjAnuuzgR79fcznLTQtSdh6AARxu8FcQ_J6p7L3U.cache +0 -0
  45. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/09/09tM9-9HC9J7np7PawoxLz0YZYB_jmwdMFL4N4WBJdM.cache +0 -1
  46. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0H/0HR_baZ3Owzw1Gx5epPCDhsl0UXWGh73zDkQu08IHuc.cache +0 -1
  47. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/13/13HiV12xyoQvT-1L39ZzLwMZxjyaGMiENmfw7f-QTIc.cache +0 -0
  48. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1I/1IbYhe7oTUZvWCe0pIMBMp5bLq5pCuxuxlgnQV1TAno.cache +0 -2
  49. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1I/1i4n3ptJre3b2zbA9AvgzE-ThTU_1mqSX3AlMtS_Qxk.cache +0 -1
  50. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1L/1LQJg_vkfK3o2UCvJGQKuGjXydCfw7GerrpJCGiKw5k.cache +0 -1
  51. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1U/1U5446rsEAdkd13irJZX_XQoEKv9Ay8wSrKES_-gD8k.cache +0 -0
  52. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2c/2cKLFtRkYbS9lni4MJ8unG2jW0YmNgK6tdelamzjM30.cache +0 -0
  53. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2m/2mGtEm87jDbeppJBYdnCWjRDV5cQaosG-bKVwVN7_kE.cache +0 -1
  54. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2p/2pt2peFCVR6OoIrgufIQbrDGMcFLYwrJtHsLENF31jQ.cache +0 -0
  55. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2u/2uWP73mE8FRywvUKKT08RhFuNUlVUEopIKdt0Jtt8y8.cache +0 -1
  56. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3-/3-C6wEhMG8qKt4rLfzJzMlRBgxb5aDJIB2m5WS0WbAI.cache +0 -0
  57. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/33/33_yR0KysvUnUWvR5TzwELDqGApTbi2ex2o3vY-ybfU.cache +0 -1
  58. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3N/3NTAQ9mVEZbccGibE39JpeqlDw2L6zcUtlRsbPCT918.cache +0 -2
  59. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3V/3V8ZntS_gc1fums5LuLZK0a_nwPIjLXSD0JNF_3ScEk.cache +0 -0
  60. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3W/3Wtf5pCWdqq0AB-iB0Y9uUNrTkruRxIEf1XFn_BETU0.cache +0 -1
  61. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4U/4UAd9Le8LhEYS8mCovy_yQC_ofpTBWt1Q997x0hg6xY.cache +0 -0
  62. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4V/4VaOsvficwh2EmmuR-pEJTISpR9mbr8Cf7jYYyptEwY.cache +0 -2
  63. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/53/53WajXFPOCZVqMrL7nxYAYl90fSweya9XM4vrDJhU6c.cache +0 -1
  64. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/53/53oHiwCXSKokJPEWS6w53bGXkeZm-YAcDuXcBhNscEY.cache +0 -0
  65. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5Q/5QrnrmEh-kADCXW4bexyNOrjfDmlq_YHgPcEYcHtz28.cache +0 -0
  66. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5T/5ThW8FwEh4SPqrxD1RKHSc3o-vA_2ff5zKoly--6uuM.cache +0 -0
  67. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5d/5dGYuqW7Lp3oCc1lq8B9Uoa0lfgE4iOEiGvgwRf1JHA.cache +0 -0
  68. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5f/5fUAiOa1Zm-ove4HOeSLN1OQmEMHu0OYjHrYIK3-SGE.cache +0 -2
  69. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5f/5flfgUDFCRhrUbGifk2RfSEGWOBMubAcaWg4ZadI5PY.cache +0 -1
  70. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5i/5iW33HH6azj0ds2lqDaOB1666CY_uOHhVAQavgh7tYw.cache +0 -1
  71. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5i/5iguGafb4hOn8262Kn8Q37ogNN9MxxQKGKNzHAzUcvI.cache +0 -1
  72. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5m/5m0G50I6WuIDftOEFtJHjC0KmN1mnhe51wBZ2dq9la0.cache +0 -0
  73. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5m/5mzbQNNLQ1vmll1Azo5cAZpDY2Zc7C_CLYJH2zKtzYY.cache +0 -0
  74. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6K/6KeDYkyM_nd3JJSp2B4HtcpdeA3uHgJLSlRaEVpH328.cache +0 -1
  75. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6V/6Vgv7g9Uc08fiIpuLxlhqPTfx6tGo1yLedmmUvEL41A.cache +0 -2
  76. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6n/6nd7P_DUqcusZX7UkA5TILZyMrcu-AYfxnc2Kz_J0qQ.cache +0 -1
  77. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6x/6x8om3H3i1stGMEt1wnZ3OsVPGj-sxwE-eyd7A6hSi8.cache +0 -0
  78. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/70/7037jorQaO3wUpzYOJoDOd8cgJMeC2uTysojXmeaYzs.cache +0 -0
  79. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7p/7pN8wYS-6xc_x5BzT4gRgFAiVGhhcW9NHg_e6Ng5CDw.cache +0 -0
  80. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7r/7rgR5Gy_i08FxXwdCvtqSCXSghB7e5EXB2Vox4MQVUg.cache +0 -2
  81. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8Q/8Qz_ptqTPNDlaE2aAVgaFiIBByiF2fhNHKQJFggzJYA.cache +0 -0
  82. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8e/8ezXMOIySx7oyopI2nH1EXfCzPCFHTJiS3q2tvyEZjY.cache +0 -1
  83. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8m/8mj2T6yy847Mc2Z7k3Xzh8O91hhVJt3NrPe8ASNDlIA.cache +0 -1
  84. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8w/8wY_SKagj8wHuwGNAAf6JnQ8joMbC6cEYpHrTAI8Urc.cache +0 -1
  85. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/99/99m8UCKl4j8IpsVOK8ltLHyNh8Ae0nHw3GBkC34V_co.cache +0 -0
  86. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9a/9abVi8XfoB8pGShaL5_-jzZGJIxKmedpFY0HQ5h24oE.cache +0 -1
  87. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9g/9gsAnrIrurboVInpkI-XlUZdUGmshgVKXpdRCtXUt6U.cache +0 -2
  88. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9l/9lUXwCLUk9jTC-3kZdXDSRo-klgJVL54qVOIQmKxlyo.cache +0 -1
  89. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9z/9zFndwRgSOtYlsafWZK_zfCvnqMF4Vv9IqkVxn0gUbM.cache +0 -1
  90. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/A2/A2LHSq1LhqpUvGzPhj15d7c1Sj2RkYyajxf8ipO1x0A.cache +0 -1
  91. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AO/AOgGJjES3shgkGKKaEb6GMfcfUm18alfRVbYsMJKFyc.cache +0 -0
  92. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ag/AgIFaB92zNMX4-Gy1uYelrx1pnszMI9CxP0aO62ismQ.cache +0 -1
  93. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ag/agBYa9WG7ZT869eaOCVQ4mfpe9AWU8oNjU0g9foJZxk.cache +0 -1
  94. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/B4/B43LeT9Wba4fLvXw-C_kKq-x9HwYZxnBBiltbIufzzQ.cache +0 -0
  95. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/B4/b4w856SSmGPJvZoawjQ63nUN1himU_z41nfZQNGvdag.cache +0 -0
  96. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bg/BgLjB8mXnvRh9DrKcGI_KblFPuA84hjh4nJC50FDsWc.cache +0 -2
  97. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Bw/Bwb0DDjQm45Eqy64G2YHrm2eOj1PkqG51Hh3MWG0V40.cache +0 -1
  98. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/C4/C4hGtajZFD6B_bt3ow2qxPGLb1ycjE_7G8Ssi2q5HuA.cache +0 -1
  99. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CA/CAI82me2PN_gR-kiw8xQDx9FQBiLj_cyO4HVfZfiqf8.cache +0 -0
  100. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CR/CR85EGUmeGMQQR96qjUurW5HSk4vr5JgWDLQEFxhnAY.cache +0 -1
  101. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cn/CniRwlPjVCW9FLyHc9oNHIvE-TdlvyAP-lAOrkSBsQg.cache +0 -1
  102. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D1/D1ZVypz4A_qF0cewMs2YiW5uWi7MKEdPOoOXeBQKeL0.cache +0 -1
  103. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D4/D4osajB0M3Tk4bo3qAkcpkXlGHReFCOJxlo20Deiqk4.cache +0 -0
  104. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D9/D9cZjx3n4E4qKXoR9rROjaYWpm1nnip45O0Ubyqyho8.cache +0 -0
  105. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DP/DPvPPYoq_7HYVvKapcWxWL0bSIyINU7Oc93He65SrAk.cache +0 -1
  106. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DT/DTQyMpr4ABZYQetsdRJ5A7S4jf1r3ie4FGOR7GZBNSs.cache +0 -3
  107. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Df/Dfl0fgtV2z9SkiRUCnFBU6pD3TPmL0rI_lUqOVSglz8.cache +0 -0
  108. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Df/dfOhvqqzI4Yxr6VUUn6T5DARFk5SNeEasmpVaiBivxQ.cache +0 -1
  109. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dl/DlaCy1X82C9F58mF2UUes54AZzBUIGyuFiZEc9PUW0U.cache +0 -1
  110. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dq/DqJ5_yJPrP5iLlOQyTQsjAVI5FE5LCVDkED0f7GgsSo.cache +0 -3
  111. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dy/DyHdMGh9NYCQ6KM4Cs6ySrmxIGQLcs3urJo2ni_GHeI.cache +0 -0
  112. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/E8/E84Qt1hM8br74RgXrkdGt8CGM8KnVROweUTPah6hpao.cache +0 -0
  113. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ea/Ea7ca7cxAj6u9A8UKN2ZVtAFE3GXgmTZtHiorPaUnTg.cache +0 -1
  114. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8MUNRzORGFgr329fNM0xLaoWCXdv3BIalT7dsvLfjs.cache +0 -0
  115. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FN/FNAoxlHjPOpzywpYUXo13-PLULLhE4lZ8jRmsdCpQ8s.cache +0 -2
  116. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FS/FS-IBIwKNJB6ey4YiEJy3WQxdihlzqhn27zuXCPW3I4.cache +0 -0
  117. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FS/fsx-7r5CnuEuuruO05WoCqUE7I7yHdsHFyufpAo9L_w.cache +0 -2
  118. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FU/FU7chcPDGpikN_If4SNgCUiwKbAtWa-dV0x644C-R8A.cache +0 -0
  119. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FZ/FZS5A8sTziH2yLSQsehYe2Lov6tTh7qddnYpUCOrSg8.cache +0 -0
  120. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F_/F_wHSssqVgbtl2xnKiCAx8T1yXJcm6G6FFYyEQOM1vk.cache +0 -1
  121. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gx/GxO9oxH-DZ8Vk1eqP17OKFSocWisT4gGJtcGM1t5Fio.cache +0 -2
  122. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/H6/H6QLQGIr0MZMFEBwWkJpjKCoSmnCM1d1b7Z2bT1pchI.cache +0 -0
  123. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HC/HCDOUd7-S45aJ_PjVAC_Vmjyud3i1aQv4cE3t9_Z3Dw.cache +0 -2
  124. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HN/HNBghWjxKPnFYO5L6fJf8R4AeZ0rdAOL6sUFWovnBwU.cache +0 -1
  125. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Hb/HbX5bR5UYD1vbffHD_0rvCrL9QARJ6bCpD00MQdR1g4.cache +0 -1
  126. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Hm/HmOkSBI1TuhJ1te9t-y9GHxMWn2FVl-RnFS8oWi7V_w.cache +0 -1
  127. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IN/INJypnigTMfqqPOcC-b9F0Iye_HbwItx-5XDHLUtWDc.cache +0 -1
  128. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ig/IgW_xNyC9axLdFbnQLpkLYqhAzSgmdACo0mT8ai455Y.cache +0 -1
  129. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JY/JYy-al-c4ButCglqQfY9a5PZV6XFNBjtHD9sWas7NbE.cache +0 -1
  130. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ja/Jah1OygWPoT6OkBv-5VE19u3b0vGJTHsGse68OBZmtQ.cache +0 -2
  131. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/K0/K0-nXg3QbjeMtvvRvPXZiL0kCh0YtyApX9XrJrj95Po.cache +0 -0
  132. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/KB07ZaKNC5uXJ7TjLi-WqnY6g7dq8wWp_8N3HNjBNxg.cache +0 -3
  133. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KI/KIVgv3yfi4fSugBTELntGMTgpB8JKD1c5_CxdEvkfaw.cache +0 -1
  134. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KO/KOgbmY0o5uemlVX1FmoTnTDK6QDnydWoRF2Ht9TtN2U.cache +0 -1
  135. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LI/LIHDRdjIBdKfW4tnKTESwsWFz4OeCV-sJZtEKUYaLiU.cache +0 -1
  136. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/La/LavB01ePIpCqyhy1AJu1V9piCEAYuTyS5bjdSEVqEoY.cache +0 -1
  137. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lx/Lx6tpPxpS0hrFKiVXiv37Q4bFJjhDJJak7WUoOemLC8.cache +0 -0
  138. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lx/LxRPPEO9CB_ckDd1jRPcKJjsm_Gc0CGMSmrdUXXpzjs.cache +0 -2
  139. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/M6/M6hnb_EIRICxNcrNSkV7ekfCpVo0O9U2XSSaLxDqONI.cache +0 -1
  140. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mq/MqwfYiRcCBhwwS_cH5IyKUMsvSreSqmpD_WV3AHeZcw.cache +0 -0
  141. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/N-/N-bT7IhQ1pVoh_gTwxXqeK3dVlmJkxatBZyFP43Si3I.cache +0 -2
  142. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/N1/N1EMMEzwuRyuF1gWtXmBNA8MMh4jYud3NP4IQ4_6APY.cache +0 -1
  143. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NV/NVd17BdcRmpEVFGZDHcRFIgNC2usd2N50atmE6dfOiI.cache +0 -1
  144. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NV/NvHlFPeFw2ONsOqGrVoMfZKZNz-6Hio21cxECqHgZd4.cache +0 -0
  145. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ON/ONTTDNMWFhjcmhKbOP3KqbRtGvxLORP9OH6wMiCk_Ys.cache +0 -2
  146. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ol/Olkqarn5mhfEd6uRArgjaOA-B1ZXvvcXpuIFVyoDAXc.cache +0 -0
  147. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/P-/P-STcrlrr_UHY2DAzJOcMU2FOt1STMToqoJ3hYaAEEE.cache +0 -1
  148. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PA/PAJgjBwkjHBCPPw8wWUsKsUR7TvgP4RK7PV8-Jdqluw.cache +0 -2
  149. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PA/paWxJFaOGYb5g3bPUex7k8lTzXqbJ4F0Uw_zBZI8XxU.cache +0 -1
  150. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PP/PPmjUfdcsG-U5YdKOGrvFGoDVweIuWHjIggt6U2rRIo.cache +0 -0
  151. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pm/PmTiqVQJ4334Q0J-QCdlEdApesHyk8Lwuunb-_RivmU.cache +0 -1
  152. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QY/QYJsCmNADCk6tDZF57r1lz6gqD88LSPkQXtY3Vm-uUI.cache +0 -1
  153. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Q_/Q_J_xCMNzLrUyke5pUNpWmyoVj_lW8yCigUKNE9FyXs.cache +0 -1
  154. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RB/RBv3Nnh3mIqYx7YWNYxr9uuJlQKt0sISacYDiDkOJ3w.cache +0 -1
  155. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RE/REff4oUdSjRZwuhZkynEkMbvKkAnflI5V3ti3ZCXtO0.cache +0 -2
  156. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rw/RwDuCV-XpnCtjNkvhpJfBuxXMk0b5AD3L9eR6M-wcy0.cache +0 -3
  157. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S2/S2ulcWK2u8bC-jxhkG5P2oDyoR91wKtZkw6I5RfTz24.cache +0 -0
  158. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SD/SDQnsrLw-b0RFX481lQQF9x0HiZaefzuBAuOj3cwo9I.cache +0 -1
  159. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SD/sDGKBkb0LsWWFOmHNgz4ahOe6iLlCfJ8Zy8iInv4teI.cache +0 -0
  160. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SM/SMCVX47Gg93AptU_3a66VblIT3KLHqKrkHHuMhfPIxk.cache +0 -1
  161. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SQ/SQPrFInSYpfPUMfXYJXnph6q8eAFQsL_plvmqSwAVEM.cache +0 -2
  162. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SR/SRppQZkF9KwCpA8Ud3swxGKHJUSM5M75OTHlmfiTeAY.cache +0 -1
  163. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TE/TEEzQHAX6KOPY3AIg2OPhwQPpIrKlcqGJnqKnvz9YDE.cache +0 -1
  164. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tr/Tr5ExKD0jPytz0PJn0sVycLrI6t9y-4wGKO4MTwzi2U.cache +0 -2
  165. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tr/TrY4Ml48luBYhVfMdvwlyB7zO-QQQaWIW7ORlLUnYRg.cache +0 -1
  166. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tt/Tt0V7r8e-tdXVEGXDjN31D88EHb3z-Jo47tXWmAPCwA.cache +0 -0
  167. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tx/TxxBMsRYAeLcndv5YuF1FkCV30qi1yhYI8AzTki0Zmo.cache +0 -2
  168. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/U9/U9dnnrqeoOE-mYHdH4XmicZAjMQbjhjXdiA8VlMGsHA.cache +0 -0
  169. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/UA/UA89Y066oW41G1gWoHWdEXcPU2JZ66j8dnXKwoc3yJc.cache +0 -2
  170. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/UK/UKklu-xV4ZGx7P5-zWqENrlHQUaedqEuUNTgezjc3g0.cache +0 -2
  171. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/UL/ULdjhhb0bRuqmaG7XSZlFYzGYCXTDnqZuJBTWRlzqgw.cache +0 -0
  172. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/US/USYEqEC54xCRgdxfID_BklmAl2jIXZAKJ9BhapbMqNg.cache +0 -1
  173. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Up/UpPNgh0yYoUsyMDh5zWqe_U6qJIyTC6-dxMMAs1vvlM.cache +0 -1
  174. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/V5/V5dKKdHyA7y6N44igdqPBARmoV0tYdUsUrmf2lJkF6M.cache +0 -1
  175. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VJ/VJ9Lp37PnSDzVOvhSVhKc2eG-KOuv3bRFxar6M8LLnA.cache +0 -1
  176. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VP/VPf8mKPeiYU53d-M_P60d-YL6wdTka1rTVRa4F5dB_k.cache +0 -0
  177. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VY/VYJV9KoRx38NfAvSvXouEYF_0k-Su_KdFuSSXPOoSOg.cache +0 -1
  178. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/W2/W2nmNoF054n5uT-S7jhvUpaJqxHYWiJnHNP8fbjwjj0.cache +0 -1
  179. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WA/WA0OKbW1ShDLWAbN4voLShkG6JaNjvWeSNF3ZpLcUqY.cache +0 -0
  180. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wg/Wguh-szFGTI1gaL6npYwPekMXflugRei7F_mOyRucXg.cache +0 -0
  181. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wr/WriMHycrWjgHpmRpAo9N4nvDB5T0lBL5EOTTUQUHwn4.cache +0 -1
  182. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ws/WsHB1qkchRYVF4JV0Yqtr-QiyZ26DiLFtKTrCRVc5kI.cache +0 -0
  183. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/X-/X-khLYMA9mqFRPg3zAi86mREDxpKl4bdKYp3uF6WHos.cache +0 -0
  184. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XD/XDRDiP6A_Qz7pCCfZHYO6Xfob7trS4JQQoX_ByuWnRI.cache +0 -2
  185. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xr/XrGClLu5lOe_6gWU_Nm-tCAC6tUCFpoTPwyKLHmrnNw.cache +0 -0
  186. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xu/XU4k1OXnfMils5SrirorPvDSyDSqiOWLZNtmAH1HH8k.cache +0 -0
  187. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xu/XupuIipXyzmZQIRfy2SfGTCS21Y-sBxWWjFWmnxYllM.cache +0 -1
  188. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xx/XxkX9e-7J9By7nLHpwyUoOdUJ78twXYUefvXKie2WkA.cache +0 -1
  189. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yf/YfGn3oqi1Sm1_rHBqpmph8QpfhWTITbEUWS9waD_HKg.cache +0 -0
  190. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yf/yfhQwhH-ul-osfCM7_EXtSEeujd0TqsbqPoVgj7ehi0.cache +0 -0
  191. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yl/YlIiT75oC_1vUeD7NoTHufIKf1Tdnjg82aJbfI79WGQ.cache +0 -2
  192. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z-/Z--HP-BzybXzcZ6TPTFHonJqTM1B3B2g-5uUSi_EuSc.cache +0 -0
  193. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZT/ZTVpqYlcQg-w8iygSuUB7UBreT5bxLOPDNlKjzg5kMY.cache +0 -0
  194. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZT/ztYH9puOw0lwdIjwlH18IT68aY0KvTPEiAQTrxn4doQ.cache +0 -2
  195. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Za/ZaT_Lz8qe4rCd9sYS8dWxhl6MB_pWFUu7sqohGkRsAo.cache +0 -0
  196. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zz/Zzsh2ASGqBSWLSWIU4fAyxS3iVuJDxdTCw8jOOsUNzA.cache +0 -1
  197. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_-/_-Y1fY6ejeTyiaDheuPSN_aPVwcvRdIlowBkfFxEY0c.cache +0 -0
  198. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_6/_61xcFfBTsk2JixNV1J-NP9FtW67n0Haapr-7H5toEU.cache +0 -2
  199. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_R/_RQaUmRUEEXsJ7wurDZfjh63xJqRWfkCTDSiA0pvOIg.cache +0 -2
  200. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_m/_mRvClvA9ew3lpKq5JBpjPY232J6bAj9K_XP3N2HFD8.cache +0 -0
  201. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_z/_zNZb_3SH_fXs-tDFm3LtWun9BlLzBVn3aDO9l6K-NQ.cache +0 -1
  202. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/a7/a7lacDViLUEaXFwV6UuZfTUood23K0X7_s2YYxP7dQw.cache +0 -1
  203. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aV/aVdjJbgLyd5MLwvnXSaX_83wDD0zG8DQnKs4hlOXOJ0.cache +0 -1
  204. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/al/alJwyXpJHF8RaBpaslorYD4Et6PO_-7Jr1qQmR_Wtys.cache +0 -0
  205. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bC/bCSJnsDI4K9-Hwd7p_GC9M36gA2QbYgtfl-Guk1Ev80.cache +0 -1
  206. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bM/bMopwpsFeLUsi20J9L9mPnoi6ZMJMVHIzxbTHbWrBho.cache +0 -2
  207. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bd/bdikSDf26RlvOPFhOT9G-XHnMj8ptHrTYB3QUuABCUQ.cache +0 -0
  208. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bi/BIkdhfxsezxM4q-HZ4oCNTq97WEJTigcq0tpX2cDvbY.cache +0 -0
  209. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bi/biczy7hoa1_tzXKc6t2QU3WdkhkfdBfwwq66GVVz914.cache +0 -1
  210. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bq/bqRZ6xUe_GzjdFbiyk0iMQoNHY4xk1gccuw3l8KUJz8.cache +0 -2
  211. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bv/bvfgzCTJxyiwgFWSXthcO14iFDl_K1NuT0vWVXcI-WU.cache +0 -0
  212. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cZ/cZw-zK9k1to5xz_hZ8FQB5wpR9Ks1-bhn7kJJVu9Ki0.cache +0 -1
  213. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ci/cipvvZ93wZHrDs_W1liu4PQTEJsKuPhbk6JG1DsMfxM.cache +0 -1
  214. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ck/ckLh5gBuqdrZ9fuxYz87cU_3hhZMI_7tcqNJ2EjtgpI.cache +0 -0
  215. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dG/dGyq85wVf9waxk23R1VlUQQMflMpPSsiMOTM9TtZ1f0.cache +0 -0
  216. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/d_/d_Ckuu1Nlhrqje-LDVqGwCu8pLiyAX31uSdo7QCELeI.cache +0 -2
  217. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/db/db0UgKlp2vcgigF3FfR0UlilfVgDEJuew9qxLsuR374.cache +0 -0
  218. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/db/dbXmPOhlH1AKN08KRg0ow8KOe-_XKeBNOg0HJvnqQCs.cache +0 -0
  219. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dr/drw7hbVGSDH0ujUo0r9Fmfbjvw8_eoOc6fCktj5IKak.cache +0 -2
  220. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/e7/e7SEwN9e5ctMuXdXSRM6IB2fFMiIP2UAmvXjDKktd5w.cache +0 -1
  221. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/eW/eWG0d21oPZQGuYiCLej8OsRayN0--zxnvn7KHFqrQus.cache +0 -1
  222. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fA/fADdr9ULIrFxI-36hG3S8yfvCp2VHyR6WzSZNIPM3C0.cache +0 -1
  223. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fE/fEt1GN3H2qJiB0PwX6Cd43UrRkzLxTRIeUyyrydPe_A.cache +0 -2
  224. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ff/FfxmA4CMHQZT7exx0G7NS1Wpcnny0vzp-Jhc2H36bp8.cache +0 -1
  225. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ff/ffguBp3lFlcLuH9rWtl1JJxs9dDTIfm-FCMONYpUdww.cache +0 -1
  226. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gE/gEiiG4GZNy_djEjK2pHm_NgA-gyhLZhdQvo0Yt96GqE.cache +0 -0
  227. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gn/gnA9ZSqpjccNL2m8pe_jBvY6SinXlCzXDWyop83Od8s.cache +0 -1
  228. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/he/hepQXqLZteSsVIUXJaeKnrpVYKb53gbWe1xr6tuFN3Y.cache +0 -1
  229. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hy/hyMfoAGcpyTZYoedJT2E2u3X96FEwATK-lIPMFlN_bw.cache +0 -0
  230. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i9/I9UL3IEpQ14Bi9EpF3TLd0P5Rabp6ulJbgz2f1o-neA.cache +0 -1
  231. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i9/i9lFglNaFPcJgnmxvuMjrY_R8pXY0CN9SiUKFgVFPSM.cache +0 -0
  232. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iE/iEzDISmI13GuIeJehYePCIVyUe7XZ-_q9pvIv0UzneM.cache +0 -1
  233. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i_/i_hzz-9VlGYj7yvx9yYWRKRw2UwxqFHQrRZw6vzXsWc.cache +0 -0
  234. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ij/ijLUBXXLleeHIaUQp-SQmpq0HpH94rYlbW5OJbKpnsg.cache +0 -1
  235. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iq/iqPK1x8VfJwa8KcViAxJc6WCCa1dqE_7ubcbyoyjecg.cache +0 -1
  236. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iw/iw-6QMCNXnMzL5koGPyFgnCllIbeX88-V7N5GRRqxLA.cache +0 -0
  237. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j2/j2NpPyjDjX23FPlgIi_Hf4oc4HH6a74elyfPP9wF0jU.cache +0 -2
  238. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jK/jKof1JYBdCVS3OYs9Itw8Fbr1nIPR8DLSEB8WKSDLyw.cache +0 -2
  239. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jS/jSnpKdnMVeeGtUODVf-9I1I3xvGWQr4uOtIB8Oul4Zw.cache +0 -1
  240. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jn/jnwTDvpqs0w9VZpZ5GUZ60o6cpUhzgo69c_ooHHmNvM.cache +0 -0
  241. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kU/kUok4qdkoYsQOP59lJgy9rPyE-T3sh8l0dVDE6KzfeI.cache +0 -1
  242. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kv/KVJz4npl0nKN-Dp49qjcOml4Tpxq_AZ8RNO1Bi387Is.cache +0 -2
  243. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kv/kvTGOzOr1lqLnY61yqldR_vtHpoCKFYDFpl7_fnCtcE.cache +0 -1
  244. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kz/kz7lpLb0SoWDdaStz39DkoaQykVp0h3Jl4agZcEh6L4.cache +0 -1
  245. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/l8/l8UyUr0lncdtUUTZFwO0ulkW8Bl3z83viCwii7OewZk.cache +0 -1
  246. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lH/lHDGd3_dxi_xz9n5_wYFy7hKMxp78Q39u_XQKZWub_Y.cache +0 -0
  247. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lO/lOAan3cMwCE_Hli6gsDML88xFNfn0nxPmvrSkW7eEOw.cache +0 -1
  248. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lU/lUmP4mi3T8xmwS_odQgw8llzs35KCOMZCTv0DANy9dM.cache +0 -1
  249. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lY/lYdwx9C-FXcmiLA5bsEfQIBwpcg3twu1lz6rFXROyCI.cache +0 -0
  250. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lj/ljpGLuZae0hOTv1h7MGCiJ30O0qhPCuvEKLhD5zpV8Q.cache +0 -0
  251. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/M1pv8MJEPLXGLvS8QxVh3DSO9cI4mRt5FHFWdrvUj6o.cache +0 -2
  252. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/M1yW7a2h3VzoyhwmJIKGEXjCQN8GsQcnvcKaklurytE.cache +0 -1
  253. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/m1jB-0OsQz_CCr-Q_KIlpfF7BsJBF8GXMfk9pZdJsdg.cache +0 -0
  254. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3WJ72qtNo4wVe78N9YRArVH33D15hEwdVd67wJbvOQ.cache +0 -0
  255. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m4/m4EE0-xa87oylMzux18a-d2pR0zDtF2GCbYzwdSvQH4.cache +0 -0
  256. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m7/m77qH7ZqH0_0SmwJbiKGDd-aLau1Dav847DC6ge46zY.cache +0 -1
  257. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mS/mSWxg1xZbGaeYGDXMe8nsYZC_LfhiNdjSTL2J2ELE0s.cache +0 -0
  258. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mb/mb6HAyivnzHzDrkN35ifr4kL7MuksZYWamdJBUjhoHQ.cache +0 -0
  259. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/me/melFFxMi_bgtkEkztQhKusyFDqKEeVVzurk_1_TPt6A.cache +0 -1
  260. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mm/mms9rxcyPm09RjefBI321LIRPUAobgQ1X4A8Uu4w9Fc.cache +0 -0
  261. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nA/nA0Bu-48plSRK0cxt2gE2-TXvwcDsTjvHLFR7KshbPY.cache +0 -0
  262. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nA/nAGwhUtXjENu4Jl3uTJFFRnDhJAOlMAmuju7JcllSRM.cache +0 -1
  263. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nN/nN4lOF8mi-IWkm3zsqohaHbvJS4uG-_tiFsB6h1PsFc.cache +0 -0
  264. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ne/neLH-4_-lhKrkmcWjkrdYAoT5xDuc9EzJ5-81ZXeeXc.cache +0 -2
  265. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nj/njVJUsm_4wugUz9SwMbITIhSGErMWqSZ16AEUFn2RHo.cache +0 -0
  266. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nq/nqz2Ja53LHhXhFb6ChNpDKnBMWNdp17ZtNhrn-9wdR0.cache +0 -0
  267. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oY/oYHos9r6mwOX5jDyDTWjnpRR_SvWe4EX9gAl20Gqj8I.cache +0 -1
  268. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oj/ojlR_0dl68-YErHzTDzB8lO8nKxQzG6x_Axc5oWIeBg.cache +0 -2
  269. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pE/pE7gO6pQ-z187Swb4hT554wmqsq-cNzgPWLrCz-LQQQ.cache +0 -0
  270. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pG/pGc_RfrP3RwCp5SBabj-nGnfyeSnUp1Ed1ajCG5Yx-A.cache +0 -1
  271. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pQ/PQZm6DUZqIXs_3Wo9ISeQRb0vYyB0XG7iGSHr9_TWlc.cache +0 -0
  272. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pQ/pQXlqH4DBItuAHNMXGnwQmnzYkwJ2m7kUgKQbdbZM1E.cache +0 -0
  273. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pj/pJtdFKizdxA_xBjuuXQWYnEvCcImUQtT5Rh-tGG6v48.cache +0 -2
  274. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pj/pjg7FTDRmEzqh8W3ijd1Y3GbffQuQwwSKEZ6ftoPnJE.cache +0 -2
  275. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ps/ps7w7RIcMoa1jxZu4r5mWxnZzl8qM4Bs9AietV5a9nU.cache +0 -0
  276. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qU/qUif8_vci3i4xpLoHjkoVXT-baN2Z_qabhqo2Wl1KU4.cache +0 -2
  277. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qf/qfMsgo__LLXJ_4thqBkUaDYPnaucsAJhMl6uN74w1GM.cache +0 -1
  278. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qj/qjbZ2Uz7G_0aKEQT3Nmuu0k2FkDTmVTemeoG3gw3oSw.cache +0 -1
  279. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qx/qxng7xwKb01YKazp0ij03cuEDbzSNSakHHwLx7XNEck.cache +0 -1
  280. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r5/r5EpktDep6rAU9paabInRkyyMPudlyFSWlHRFmSKXcI.cache +0 -1
  281. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rX/rX6desISJ78BGVzR2gPZKb2BiWY-N596DjfIgaTTkew.cache +0 -1
  282. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r_/r_57OZEW0SEEUS9tJZwHYMvqjkbw3-3qfgomLAKJzoE.cache +0 -0
  283. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rh/rhT44pxmkWo5fhkEb829kceOiGof5L5L55DT5Uv9LKQ.cache +0 -0
  284. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/s4/s4BZ5EXO5EOticOtqwWaw3qjnMod3t0AfgXahBpqSZA.cache +0 -0
  285. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sj/sjRjnjRB37lH2vrgtkdJ8Cz84__IJ978IuKTM7HcztI.cache +0 -0
  286. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tF/tFofktc3WRxmXDS1NTWdUstzycUbsShJBMHatxLvxqQ.cache +0 -2
  287. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tL/tLQy_cVJ8R8R35MKxmAuxHklAoaJTyXFO-eL8dXcMKY.cache +0 -1
  288. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/um/um1JrirR4hJhK-1rE-HywlyCi5ibgxHVrReiujZBWJM.cache +0 -1
  289. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v4/v4fwVytD7ITcE0_GDbslZEYud8a5Okm85fV1o7SDl6g.cache +0 -0
  290. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vH/vHyq2njTP0fsOdOun0eFn07YnFCTmJJkD89-pJ9tKYA.cache +0 -0
  291. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vK/vKDpBE4UJEuJjeJqLtVQSQ7wHxJ1ywxrRt8Y1XQBxtk.cache +0 -0
  292. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vK/vk4eyljHSm11GcRNbA0QEqn13Y4bEfxOcBwiesL-XvQ.cache +0 -1
  293. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v_/v_0PAQt0iipQjFP5zjgkkk9Stnpf4VzvnMv67d1Keuw.cache +0 -1
  294. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/w6/w6JBeSUs8dNJNtbRF-HVG3csGda2FlttAEBSpSHoqcE.cache +0 -0
  295. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wc/wcSdAX-yztEvzKx_xYHtqxT47ZyaLoLal_vKwPxEP08.cache +0 -2
  296. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wd/wdT9U4MKxe1PyqNjVuCKMpCl3dxGCIRJIlwUTfh2DQU.cache +0 -1
  297. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wh/whuY0tTNf66sTcgILzLfelCAHIBpDZZIiOIuI12HNQw.cache +0 -2
  298. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/wiKqSHxw-MJpM466KPFAcPyzBHxbpGGYW578TqFEJeg.cache +0 -1
  299. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/wixK89IvA4Xk2MyJxkyLg-2xRs2vRPzY_OIs37bi8XA.cache +0 -1
  300. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wz/wzY0ol5RRJK1j-hK9nckKoTMWK5TJDii5QSZMGTu5hk.cache +0 -0
  301. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/x3/x3jUhlqTEK-rA6zTC8_MWGyKD8tZRhz2nPu0nCBgEGI.cache +0 -1
  302. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xI/xIaxut_fEIhKBDqljTNwYaADK9kj3gG0ESrfHs-5_og.cache +0 -3
  303. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xL/xLZtF0WWBePfiVBWxxi6brXCLsEfcrj435b9xJupeeU.cache +0 -0
  304. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xL/xLktzniI5dkWKAifTMHzZvRHyRHOexsqV-ZRsdLXx0g.cache +0 -2
  305. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xv/xvoydM1zth53tauNTatJNfb-o44mAGDD9-85yRkpeqY.cache +0 -0
  306. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/y0/y0SJOqIx2fn1SKqOkAihsQow0trRJrSIyAswufVuoA8.cache +0 -0
  307. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yH/yHfd9J_SJGssjygyWK8-uLlvE6IlN6DIda7947QWVsI.cache +0 -1
  308. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yQ/yQP_20gvJZ1MfkfWE7nU-EFpqbMzANYy8OWuQuaDyLM.cache +0 -2
  309. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yv/yvOcRnWhg9dCjr1_rScAH4M8-rUQVY9oHFqBGVoMniI.cache +0 -0
  310. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/z2/z2ro57FqSGT_X2jnC68fS-HrFmCh7Wbrnrm45BceZoM.cache +0 -0
  311. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zJ/zJfViroVCTZxyBh0pLP8_QiOxemqmKRkiU7BHAf5HxA.cache +0 -0
  312. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zP/zPBLf0GnkvCm86BY_8PtGJRyawPWy-JxWZp25_yNRfk.cache +0 -2
  313. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zg/zgpzeaX-KZErHyGJ1aBH3ZusweNXMneVZule88XsIJI.cache +0 -1
  314. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zm/zmEmiHcLam0fJ2odLUV8n4hg9GN2gBDrJo7JCkkg8f4.cache +0 -1
  315. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zYFltDy-8VC-uKq2BVEiJJyYXNFvVzAKuMlR3ZIYZsk.cache +0 -0
  316. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zywotY5ANjNyE78CLDqC1eYRFwL1ZFzkT9J5LzNlI4M.cache +0 -1
  317. data/spec/dummy/tmp/restart.txt +0 -0
  318. data/spec/dummy/tmp/screenshots/failures_test_it_handles_subscriptions.png +0 -0
@@ -1,1220 +0,0 @@
1
- -----------------------------------------------------------
2
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
3
- -----------------------------------------------------------
4
- Started GET "/" for 127.0.0.1 at 2017-10-06 15:59:09 -0400
5
- Processing by PagesController#show as HTML
6
- Rendering pages/show.html within layouts/application
7
- Rendered pages/show.html within layouts/application (0.8ms)
8
- Completed 200 OK in 157ms (Views: 156.0ms)
9
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 15:59:10 -0400
10
- Started GET "/assets/application-148c6aaf8a601f52456a16438b42d75454e32742b1eca706b356657a7bddaa02.js" for 127.0.0.1 at 2017-10-06 15:59:10 -0400
11
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 15:59:10 -0400
12
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 15:59:10 -0400
13
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
14
- GraphqlChannel is transmitting the subscription confirmation
15
- GraphqlChannel is transmitting the subscription confirmation
16
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
17
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
18
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
19
- GraphqlChannel is streaming from graphql-subscription:4f6de169-8628-4934-8ab8-c338f025eeda
20
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
21
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
22
- GraphqlChannel is streaming from graphql-subscription:c5224de0-4feb-4a6a-8c29-6f9f2a0e8685
23
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
24
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 15:59:12 -0400
25
- GraphqlChannel stopped streaming from graphql-subscription:4f6de169-8628-4934-8ab8-c338f025eeda
26
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
27
- GraphqlChannel stopped streaming from graphql-subscription:c5224de0-4feb-4a6a-8c29-6f9f2a0e8685
28
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
29
- -----------------------------------------------------------
30
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
31
- -----------------------------------------------------------
32
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:00:19 -0400
33
- Processing by PagesController#show as HTML
34
- Rendering pages/show.html within layouts/application
35
- Rendered pages/show.html within layouts/application (0.7ms)
36
- Completed 200 OK in 148ms (Views: 146.4ms)
37
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:00:20 -0400
38
- Started GET "/assets/application-148c6aaf8a601f52456a16438b42d75454e32742b1eca706b356657a7bddaa02.js" for 127.0.0.1 at 2017-10-06 16:00:20 -0400
39
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:00:20 -0400
40
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:00:20 -0400
41
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
42
- GraphqlChannel is transmitting the subscription confirmation
43
- GraphqlChannel is transmitting the subscription confirmation
44
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
45
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
46
- GraphqlChannel is streaming from graphql-subscription:02175e0d-c47d-4cc5-ac5a-7368cc3c8d96
47
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
48
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
49
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
50
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
51
- GraphqlChannel is streaming from graphql-subscription:c41229a6-5c36-467e-977e-43f423a9f985
52
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:00:23 -0400
53
- GraphqlChannel stopped streaming from graphql-subscription:02175e0d-c47d-4cc5-ac5a-7368cc3c8d96
54
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
55
- GraphqlChannel stopped streaming from graphql-subscription:c41229a6-5c36-467e-977e-43f423a9f985
56
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
57
- -----------------------------------------------------------
58
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
59
- -----------------------------------------------------------
60
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:00:35 -0400
61
- Processing by PagesController#show as HTML
62
- Rendering pages/show.html within layouts/application
63
- Rendered pages/show.html within layouts/application (0.8ms)
64
- Completed 200 OK in 147ms (Views: 146.2ms)
65
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:00:35 -0400
66
- Started GET "/assets/application-148c6aaf8a601f52456a16438b42d75454e32742b1eca706b356657a7bddaa02.js" for 127.0.0.1 at 2017-10-06 16:00:35 -0400
67
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:00:35 -0400
68
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:00:35 -0400
69
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
70
- GraphqlChannel is transmitting the subscription confirmation
71
- GraphqlChannel is transmitting the subscription confirmation
72
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
73
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
74
- GraphqlChannel is streaming from graphql-subscription:337e39e1-03c9-4702-b7b9-6f1d166d2681
75
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
76
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
77
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
78
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
79
- GraphqlChannel is streaming from graphql-subscription:3c029a19-b703-410a-8f90-bbcfa4a12c16
80
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:00:38 -0400
81
- GraphqlChannel stopped streaming from graphql-subscription:337e39e1-03c9-4702-b7b9-6f1d166d2681
82
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
83
- GraphqlChannel stopped streaming from graphql-subscription:3c029a19-b703-410a-8f90-bbcfa4a12c16
84
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
85
- -----------------------------------------------------------
86
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
87
- -----------------------------------------------------------
88
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:01:27 -0400
89
- Processing by PagesController#show as HTML
90
- Rendering pages/show.html within layouts/application
91
- Rendered pages/show.html within layouts/application (2.0ms)
92
- Completed 200 OK in 208ms (Views: 205.1ms)
93
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:01:28 -0400
94
- Started GET "/assets/application-148c6aaf8a601f52456a16438b42d75454e32742b1eca706b356657a7bddaa02.js" for 127.0.0.1 at 2017-10-06 16:01:28 -0400
95
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:01:28 -0400
96
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:01:28 -0400
97
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
98
- GraphqlChannel is transmitting the subscription confirmation
99
- GraphqlChannel is transmitting the subscription confirmation
100
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
101
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
102
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
103
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
104
- GraphqlChannel is streaming from graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88
105
- GraphqlChannel is streaming from graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb
106
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
107
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
108
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
109
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
110
- [ActionCable] Broadcasting to graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
111
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88)
112
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>4})
113
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzQ\"}"
114
- [ActionCable] Broadcasting to graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88: {:result=>{"data"=>{"payload"=>{"value"=>4}}}, :more=>true}
115
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>4}}}, "more"=>true} (via streamed from graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88)
116
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
117
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
118
- [ActionCable] Broadcasting to graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
119
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb)
120
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
121
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
122
- [ActionCable] Broadcasting to graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
123
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb)
124
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
125
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
126
- [ActionCable] Broadcasting to graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
127
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb)
128
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>4})
129
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzQ\"}"
130
- [ActionCable] Broadcasting to graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb: {:result=>{"data"=>{"payload"=>{"value"=>4}}}, :more=>true}
131
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>4}}}, "more"=>true} (via streamed from graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb)
132
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>5})
133
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzU\"}"
134
- [ActionCable] Broadcasting to graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb: {:result=>{"data"=>{"payload"=>{"value"=>5}}}, :more=>true}
135
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>5}}}, "more"=>true} (via streamed from graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb)
136
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>5})
137
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzU\"}"
138
- [ActionCable] Broadcasting to graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88: {:result=>{"data"=>{"payload"=>{"value"=>5}}}, :more=>true}
139
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>5}}}, "more"=>true} (via streamed from graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88)
140
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>6})
141
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzY\"}"
142
- [ActionCable] Broadcasting to graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88: {:result=>{"data"=>{"payload"=>{"value"=>6}}}, :more=>true}
143
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>6}}}, "more"=>true} (via streamed from graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88)
144
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:01:41 -0400
145
- GraphqlChannel stopped streaming from graphql-subscription:2cef2e8a-ffa4-47f0-ae85-30650d4cda88
146
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
147
- GraphqlChannel stopped streaming from graphql-subscription:7c7f8935-131f-4ad1-bb76-d98a5d155afb
148
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
149
- -----------------------------------------------------------
150
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
151
- -----------------------------------------------------------
152
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:02:29 -0400
153
- Processing by PagesController#show as HTML
154
- Rendering pages/show.html within layouts/application
155
- Rendered pages/show.html within layouts/application (1.4ms)
156
- Completed 200 OK in 205ms (Views: 204.0ms)
157
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:02:29 -0400
158
- Started GET "/assets/application-501d9398098c38e9379b18c5b5e9c0b5d06910584a10056703b9df6544f17f0e.js" for 127.0.0.1 at 2017-10-06 16:02:29 -0400
159
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:02:29 -0400
160
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:02:30 -0400
161
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
162
- GraphqlChannel is transmitting the subscription confirmation
163
- GraphqlChannel is transmitting the subscription confirmation
164
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
165
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
166
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
167
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
168
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
169
- GraphqlChannel is streaming from graphql-subscription:33222a6a-e957-4a31-ac56-f3e8e1632d4f
170
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
171
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
172
- GraphqlChannel is streaming from graphql-subscription:bfa6b8cc-9334-4c9a-a13a-180eb09983bc
173
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
174
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
175
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
176
- [ActionCable] Broadcasting to graphql-subscription:33222a6a-e957-4a31-ac56-f3e8e1632d4f: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
177
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:33222a6a-e957-4a31-ac56-f3e8e1632d4f)
178
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
179
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
180
- [ActionCable] Broadcasting to graphql-subscription:33222a6a-e957-4a31-ac56-f3e8e1632d4f: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
181
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:33222a6a-e957-4a31-ac56-f3e8e1632d4f)
182
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
183
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
184
- [ActionCable] Broadcasting to graphql-subscription:bfa6b8cc-9334-4c9a-a13a-180eb09983bc: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
185
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:bfa6b8cc-9334-4c9a-a13a-180eb09983bc)
186
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:02:40 -0400
187
- GraphqlChannel stopped streaming from graphql-subscription:33222a6a-e957-4a31-ac56-f3e8e1632d4f
188
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
189
- GraphqlChannel stopped streaming from graphql-subscription:bfa6b8cc-9334-4c9a-a13a-180eb09983bc
190
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
191
- -----------------------------------------------------------
192
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
193
- -----------------------------------------------------------
194
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:04:59 -0400
195
- Processing by PagesController#show as HTML
196
- Rendering pages/show.html within layouts/application
197
- Rendered pages/show.html within layouts/application (1.4ms)
198
- Completed 200 OK in 216ms (Views: 214.1ms)
199
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:04:59 -0400
200
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-06 16:04:59 -0400
201
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:05:00 -0400
202
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:05:00 -0400
203
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
204
- GraphqlChannel is transmitting the subscription confirmation
205
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":1507320299910}", "data"=>"{\"id\":\"updates-1\",\"value\":2,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":1507320299910}]: /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:76:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:53:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:17:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/base.rb:85:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:58:in `block in invoke'
206
- GraphqlChannel is transmitting the subscription confirmation
207
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
208
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
209
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
210
- GraphqlChannel is streaming from graphql-subscription:b765bc42-1127-47ef-95a6-4c6023c44604
211
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
212
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
213
- GraphqlChannel is streaming from graphql-subscription:d7b0cfe1-ccc6-48bb-bbb6-2ca9397d1484
214
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
215
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
216
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
217
- [ActionCable] Broadcasting to graphql-subscription:d7b0cfe1-ccc6-48bb-bbb6-2ca9397d1484: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
218
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:d7b0cfe1-ccc6-48bb-bbb6-2ca9397d1484)
219
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
220
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
221
- [ActionCable] Broadcasting to graphql-subscription:b765bc42-1127-47ef-95a6-4c6023c44604: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
222
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:b765bc42-1127-47ef-95a6-4c6023c44604)
223
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:05:10 -0400
224
- GraphqlChannel stopped streaming from graphql-subscription:b765bc42-1127-47ef-95a6-4c6023c44604
225
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
226
- GraphqlChannel stopped streaming from graphql-subscription:d7b0cfe1-ccc6-48bb-bbb6-2ca9397d1484
227
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
228
- -----------------------------------------------------------
229
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
230
- -----------------------------------------------------------
231
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:05:19 -0400
232
- Processing by PagesController#show as HTML
233
- Rendering pages/show.html within layouts/application
234
- Rendered pages/show.html within layouts/application (1.0ms)
235
- Completed 200 OK in 185ms (Views: 183.5ms)
236
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:05:19 -0400
237
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-06 16:05:20 -0400
238
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:05:20 -0400
239
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:05:20 -0400
240
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
241
- GraphqlChannel is transmitting the subscription confirmation
242
- GraphqlChannel is transmitting the subscription confirmation
243
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
244
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
245
- GraphqlChannel is streaming from graphql-subscription:873cefb9-b9cf-409e-9a54-f6af6e42f3a8
246
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
247
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
248
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
249
- GraphqlChannel is streaming from graphql-subscription:fa599337-34b8-4be8-a286-d89829bdea68
250
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
251
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
252
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
253
- [ActionCable] Broadcasting to graphql-subscription:873cefb9-b9cf-409e-9a54-f6af6e42f3a8: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
254
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:873cefb9-b9cf-409e-9a54-f6af6e42f3a8)
255
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
256
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
257
- [ActionCable] Broadcasting to graphql-subscription:873cefb9-b9cf-409e-9a54-f6af6e42f3a8: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
258
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:873cefb9-b9cf-409e-9a54-f6af6e42f3a8)
259
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
260
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
261
- [ActionCable] Broadcasting to graphql-subscription:873cefb9-b9cf-409e-9a54-f6af6e42f3a8: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
262
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:873cefb9-b9cf-409e-9a54-f6af6e42f3a8)
263
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
264
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
265
- [ActionCable] Broadcasting to graphql-subscription:fa599337-34b8-4be8-a286-d89829bdea68: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
266
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:fa599337-34b8-4be8-a286-d89829bdea68)
267
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:05:31 -0400
268
- GraphqlChannel stopped streaming from graphql-subscription:873cefb9-b9cf-409e-9a54-f6af6e42f3a8
269
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
270
- GraphqlChannel stopped streaming from graphql-subscription:fa599337-34b8-4be8-a286-d89829bdea68
271
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
272
- -----------------------------------------------------------
273
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
274
- -----------------------------------------------------------
275
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:07:44 -0400
276
- Processing by PagesController#show as HTML
277
- Rendering pages/show.html within layouts/application
278
- Rendered pages/show.html within layouts/application (0.7ms)
279
- Completed 200 OK in 165ms (Views: 163.7ms)
280
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:07:44 -0400
281
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-06 16:07:44 -0400
282
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:07:44 -0400
283
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:07:44 -0400
284
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
285
- GraphqlChannel is transmitting the subscription confirmation
286
- GraphqlChannel is transmitting the subscription confirmation
287
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
288
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
289
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
290
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
291
- GraphqlChannel is streaming from graphql-subscription:bd17180c-a361-4e3f-92b8-cde2b0a230d8
292
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
293
- GraphqlChannel is streaming from graphql-subscription:cf60a690-ce9d-4e91-89f0-4037e6bb21b8
294
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
295
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
296
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
297
- [ActionCable] Broadcasting to graphql-subscription:bd17180c-a361-4e3f-92b8-cde2b0a230d8: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
298
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:bd17180c-a361-4e3f-92b8-cde2b0a230d8)
299
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
300
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
301
- [ActionCable] Broadcasting to graphql-subscription:bd17180c-a361-4e3f-92b8-cde2b0a230d8: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
302
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:bd17180c-a361-4e3f-92b8-cde2b0a230d8)
303
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
304
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
305
- [ActionCable] Broadcasting to graphql-subscription:bd17180c-a361-4e3f-92b8-cde2b0a230d8: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
306
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:bd17180c-a361-4e3f-92b8-cde2b0a230d8)
307
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
308
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
309
- [ActionCable] Broadcasting to graphql-subscription:cf60a690-ce9d-4e91-89f0-4037e6bb21b8: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
310
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:cf60a690-ce9d-4e91-89f0-4037e6bb21b8)
311
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
312
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
313
- [ActionCable] Broadcasting to graphql-subscription:cf60a690-ce9d-4e91-89f0-4037e6bb21b8: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
314
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:cf60a690-ce9d-4e91-89f0-4037e6bb21b8)
315
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:07:45 -0400
316
- GraphqlChannel stopped streaming from graphql-subscription:bd17180c-a361-4e3f-92b8-cde2b0a230d8
317
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
318
- GraphqlChannel stopped streaming from graphql-subscription:cf60a690-ce9d-4e91-89f0-4037e6bb21b8
319
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
320
- -----------------------------------------------------------
321
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
322
- -----------------------------------------------------------
323
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:08:41 -0400
324
- Processing by PagesController#show as HTML
325
- Rendering pages/show.html within layouts/application
326
- Rendered pages/show.html within layouts/application (0.8ms)
327
- Completed 200 OK in 154ms (Views: 152.8ms)
328
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:08:41 -0400
329
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-06 16:08:41 -0400
330
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:08:41 -0400
331
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:08:41 -0400
332
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
333
- GraphqlChannel is transmitting the subscription confirmation
334
- GraphqlChannel is transmitting the subscription confirmation
335
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
336
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
337
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
338
- GraphqlChannel is streaming from graphql-subscription:998666b8-79e5-4dc0-9679-d02cd691c205
339
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
340
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
341
- GraphqlChannel is streaming from graphql-subscription:2384d1fe-2af9-4ed9-b10d-a5aec50cd008
342
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
343
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
344
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
345
- [ActionCable] Broadcasting to graphql-subscription:998666b8-79e5-4dc0-9679-d02cd691c205: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
346
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:998666b8-79e5-4dc0-9679-d02cd691c205)
347
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
348
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
349
- [ActionCable] Broadcasting to graphql-subscription:998666b8-79e5-4dc0-9679-d02cd691c205: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
350
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:998666b8-79e5-4dc0-9679-d02cd691c205)
351
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
352
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
353
- [ActionCable] Broadcasting to graphql-subscription:998666b8-79e5-4dc0-9679-d02cd691c205: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
354
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:998666b8-79e5-4dc0-9679-d02cd691c205)
355
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
356
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
357
- [ActionCable] Broadcasting to graphql-subscription:2384d1fe-2af9-4ed9-b10d-a5aec50cd008: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
358
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:2384d1fe-2af9-4ed9-b10d-a5aec50cd008)
359
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
360
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
361
- [ActionCable] Broadcasting to graphql-subscription:2384d1fe-2af9-4ed9-b10d-a5aec50cd008: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
362
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:2384d1fe-2af9-4ed9-b10d-a5aec50cd008)
363
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:08:42 -0400
364
- GraphqlChannel stopped streaming from graphql-subscription:998666b8-79e5-4dc0-9679-d02cd691c205
365
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
366
- GraphqlChannel stopped streaming from graphql-subscription:2384d1fe-2af9-4ed9-b10d-a5aec50cd008
367
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
368
- -----------------------------------------------------------
369
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
370
- -----------------------------------------------------------
371
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:10:58 -0400
372
- Processing by PagesController#show as HTML
373
- Rendering pages/show.html within layouts/application
374
- Rendered pages/show.html within layouts/application (0.7ms)
375
- Completed 200 OK in 154ms (Views: 152.4ms)
376
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:10:59 -0400
377
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-06 16:10:59 -0400
378
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:10:59 -0400
379
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:10:59 -0400
380
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
381
- GraphqlChannel is transmitting the subscription confirmation
382
- GraphqlChannel is transmitting the subscription confirmation
383
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
384
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
385
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
386
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
387
- GraphqlChannel is streaming from graphql-subscription:2cca3c71-a4d3-4780-ad2a-ee1e769c8257
388
- GraphqlChannel is streaming from graphql-subscription:d4a64a06-2af4-4a3f-8437-93dc38618d1d
389
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
390
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
391
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
392
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
393
- [ActionCable] Broadcasting to graphql-subscription:2cca3c71-a4d3-4780-ad2a-ee1e769c8257: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
394
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:2cca3c71-a4d3-4780-ad2a-ee1e769c8257)
395
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
396
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
397
- [ActionCable] Broadcasting to graphql-subscription:2cca3c71-a4d3-4780-ad2a-ee1e769c8257: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
398
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:2cca3c71-a4d3-4780-ad2a-ee1e769c8257)
399
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
400
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
401
- [ActionCable] Broadcasting to graphql-subscription:2cca3c71-a4d3-4780-ad2a-ee1e769c8257: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
402
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:2cca3c71-a4d3-4780-ad2a-ee1e769c8257)
403
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
404
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
405
- [ActionCable] Broadcasting to graphql-subscription:d4a64a06-2af4-4a3f-8437-93dc38618d1d: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
406
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:d4a64a06-2af4-4a3f-8437-93dc38618d1d)
407
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
408
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
409
- [ActionCable] Broadcasting to graphql-subscription:d4a64a06-2af4-4a3f-8437-93dc38618d1d: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
410
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:d4a64a06-2af4-4a3f-8437-93dc38618d1d)
411
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:11:00 -0400
412
- GraphqlChannel stopped streaming from graphql-subscription:2cca3c71-a4d3-4780-ad2a-ee1e769c8257
413
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
414
- GraphqlChannel stopped streaming from graphql-subscription:d4a64a06-2af4-4a3f-8437-93dc38618d1d
415
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
416
- -----------------------------------------------------------
417
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
418
- -----------------------------------------------------------
419
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:14:04 -0400
420
- Processing by PagesController#show as HTML
421
- Rendering pages/show.html within layouts/application
422
- Rendered pages/show.html within layouts/application (0.8ms)
423
- Completed 200 OK in 147ms (Views: 145.8ms)
424
- Started GET "/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css" for 127.0.0.1 at 2017-10-06 16:14:04 -0400
425
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-06 16:14:04 -0400
426
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:14:04 -0400
427
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:14:04 -0400
428
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
429
- GraphqlChannel is transmitting the subscription confirmation
430
- GraphqlChannel is transmitting the subscription confirmation
431
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
432
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
433
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
434
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
435
- GraphqlChannel is streaming from graphql-subscription:dec593eb-4956-40b7-8876-273dd00d7878
436
- GraphqlChannel is streaming from graphql-subscription:0e3c6249-8f1a-41f5-9340-7c6028bc6e3b
437
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
438
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
439
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
440
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
441
- [ActionCable] Broadcasting to graphql-subscription:dec593eb-4956-40b7-8876-273dd00d7878: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
442
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:dec593eb-4956-40b7-8876-273dd00d7878)
443
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
444
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
445
- [ActionCable] Broadcasting to graphql-subscription:dec593eb-4956-40b7-8876-273dd00d7878: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
446
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:dec593eb-4956-40b7-8876-273dd00d7878)
447
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
448
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
449
- [ActionCable] Broadcasting to graphql-subscription:dec593eb-4956-40b7-8876-273dd00d7878: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
450
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:dec593eb-4956-40b7-8876-273dd00d7878)
451
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
452
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
453
- [ActionCable] Broadcasting to graphql-subscription:0e3c6249-8f1a-41f5-9340-7c6028bc6e3b: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
454
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:0e3c6249-8f1a-41f5-9340-7c6028bc6e3b)
455
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
456
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
457
- [ActionCable] Broadcasting to graphql-subscription:0e3c6249-8f1a-41f5-9340-7c6028bc6e3b: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
458
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:0e3c6249-8f1a-41f5-9340-7c6028bc6e3b)
459
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:14:05 -0400
460
- GraphqlChannel stopped streaming from graphql-subscription:dec593eb-4956-40b7-8876-273dd00d7878
461
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
462
- GraphqlChannel stopped streaming from graphql-subscription:0e3c6249-8f1a-41f5-9340-7c6028bc6e3b
463
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
464
- -----------------------------------------------------------
465
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
466
- -----------------------------------------------------------
467
- Started GET "/" for 127.0.0.1 at 2017-10-06 16:27:30 -0400
468
- Processing by PagesController#show as HTML
469
- Rendering pages/show.html within layouts/application
470
- Rendered pages/show.html within layouts/application (0.8ms)
471
- Completed 200 OK in 180ms (Views: 178.6ms)
472
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-06 16:27:30 -0400
473
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 16:27:31 -0400
474
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:27:31 -0400
475
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
476
- GraphqlChannel is transmitting the subscription confirmation
477
- GraphqlChannel is transmitting the subscription confirmation
478
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
479
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
480
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
481
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
482
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
483
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
484
- GraphqlChannel is streaming from graphql-subscription:db2b39c7-d11b-4b5d-901b-34339a671e4f
485
- GraphqlChannel is streaming from graphql-subscription:21c00929-1026-4a5f-a3de-b3bcbf0e11a0
486
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
487
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
488
- [ActionCable] Broadcasting to graphql-subscription:21c00929-1026-4a5f-a3de-b3bcbf0e11a0: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
489
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:21c00929-1026-4a5f-a3de-b3bcbf0e11a0)
490
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
491
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
492
- [ActionCable] Broadcasting to graphql-subscription:21c00929-1026-4a5f-a3de-b3bcbf0e11a0: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
493
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:21c00929-1026-4a5f-a3de-b3bcbf0e11a0)
494
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
495
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
496
- [ActionCable] Broadcasting to graphql-subscription:21c00929-1026-4a5f-a3de-b3bcbf0e11a0: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
497
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:21c00929-1026-4a5f-a3de-b3bcbf0e11a0)
498
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
499
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
500
- [ActionCable] Broadcasting to graphql-subscription:db2b39c7-d11b-4b5d-901b-34339a671e4f: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
501
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:db2b39c7-d11b-4b5d-901b-34339a671e4f)
502
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
503
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
504
- [ActionCable] Broadcasting to graphql-subscription:db2b39c7-d11b-4b5d-901b-34339a671e4f: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
505
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:db2b39c7-d11b-4b5d-901b-34339a671e4f)
506
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 16:27:31 -0400
507
- GraphqlChannel stopped streaming from graphql-subscription:21c00929-1026-4a5f-a3de-b3bcbf0e11a0
508
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
509
- GraphqlChannel stopped streaming from graphql-subscription:db2b39c7-d11b-4b5d-901b-34339a671e4f
510
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
511
- -----------------------------------------------------------
512
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
513
- -----------------------------------------------------------
514
- Started GET "/" for 127.0.0.1 at 2017-10-06 17:05:53 -0400
515
- Processing by PagesController#show as HTML
516
- Rendering pages/show.html within layouts/application
517
- Rendered pages/show.html within layouts/application (1.5ms)
518
- Completed 200 OK in 113ms (Views: 111.6ms)
519
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-06 17:05:53 -0400
520
- Started GET "/cable" for 127.0.0.1 at 2017-10-06 17:05:54 -0400
521
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 17:05:54 -0400
522
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
523
- GraphqlChannel is transmitting the subscription confirmation
524
- GraphqlChannel is transmitting the subscription confirmation
525
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
526
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
527
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
528
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
529
- GraphqlChannel is streaming from graphql-subscription:5c6c5734-5f25-406d-a3ff-891ffffe5225
530
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
531
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
532
- GraphqlChannel is streaming from graphql-subscription:1d5b2832-4444-4d5a-b62b-d5f320a15a14
533
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
534
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
535
- [ActionCable] Broadcasting to graphql-subscription:1d5b2832-4444-4d5a-b62b-d5f320a15a14: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
536
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:1d5b2832-4444-4d5a-b62b-d5f320a15a14)
537
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
538
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
539
- [ActionCable] Broadcasting to graphql-subscription:1d5b2832-4444-4d5a-b62b-d5f320a15a14: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
540
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:1d5b2832-4444-4d5a-b62b-d5f320a15a14)
541
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
542
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
543
- [ActionCable] Broadcasting to graphql-subscription:1d5b2832-4444-4d5a-b62b-d5f320a15a14: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
544
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:1d5b2832-4444-4d5a-b62b-d5f320a15a14)
545
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
546
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
547
- [ActionCable] Broadcasting to graphql-subscription:5c6c5734-5f25-406d-a3ff-891ffffe5225: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
548
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:5c6c5734-5f25-406d-a3ff-891ffffe5225)
549
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
550
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
551
- [ActionCable] Broadcasting to graphql-subscription:5c6c5734-5f25-406d-a3ff-891ffffe5225: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
552
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:5c6c5734-5f25-406d-a3ff-891ffffe5225)
553
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-06 17:05:54 -0400
554
- GraphqlChannel stopped streaming from graphql-subscription:1d5b2832-4444-4d5a-b62b-d5f320a15a14
555
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
556
- GraphqlChannel stopped streaming from graphql-subscription:5c6c5734-5f25-406d-a3ff-891ffffe5225
557
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
558
- -----------------------------------------------------------
559
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
560
- -----------------------------------------------------------
561
- Started GET "/" for 127.0.0.1 at 2017-10-07 08:34:51 -0400
562
- Processing by PagesController#show as HTML
563
- Rendering pages/show.html within layouts/application
564
- Rendered pages/show.html within layouts/application (1.2ms)
565
- Completed 200 OK in 128ms (Views: 125.4ms)
566
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-07 08:34:51 -0400
567
- Started GET "/cable" for 127.0.0.1 at 2017-10-07 08:34:52 -0400
568
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-07 08:34:52 -0400
569
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
570
- GraphqlChannel is transmitting the subscription confirmation
571
- GraphqlChannel is transmitting the subscription confirmation
572
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
573
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
574
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
575
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
576
- GraphqlChannel is streaming from graphql-subscription:703c6f6e-8cbe-44b9-8510-2a54b92b4eb2
577
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
578
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
579
- GraphqlChannel is streaming from graphql-subscription:8c1f4fc5-fee7-4ceb-9366-0f5da89ca41b
580
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
581
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
582
- [ActionCable] Broadcasting to graphql-subscription:703c6f6e-8cbe-44b9-8510-2a54b92b4eb2: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
583
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:703c6f6e-8cbe-44b9-8510-2a54b92b4eb2)
584
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
585
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
586
- [ActionCable] Broadcasting to graphql-subscription:703c6f6e-8cbe-44b9-8510-2a54b92b4eb2: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
587
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:703c6f6e-8cbe-44b9-8510-2a54b92b4eb2)
588
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
589
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
590
- [ActionCable] Broadcasting to graphql-subscription:703c6f6e-8cbe-44b9-8510-2a54b92b4eb2: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
591
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:703c6f6e-8cbe-44b9-8510-2a54b92b4eb2)
592
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
593
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
594
- [ActionCable] Broadcasting to graphql-subscription:8c1f4fc5-fee7-4ceb-9366-0f5da89ca41b: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
595
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:8c1f4fc5-fee7-4ceb-9366-0f5da89ca41b)
596
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
597
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
598
- [ActionCable] Broadcasting to graphql-subscription:8c1f4fc5-fee7-4ceb-9366-0f5da89ca41b: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
599
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:8c1f4fc5-fee7-4ceb-9366-0f5da89ca41b)
600
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-07 08:34:53 -0400
601
- GraphqlChannel stopped streaming from graphql-subscription:703c6f6e-8cbe-44b9-8510-2a54b92b4eb2
602
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
603
- GraphqlChannel stopped streaming from graphql-subscription:8c1f4fc5-fee7-4ceb-9366-0f5da89ca41b
604
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
605
- -----------------------------------------------------------
606
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
607
- -----------------------------------------------------------
608
- Started GET "/" for 127.0.0.1 at 2017-10-07 08:35:33 -0400
609
- Processing by PagesController#show as HTML
610
- Rendering pages/show.html within layouts/application
611
- Rendered pages/show.html within layouts/application (0.8ms)
612
- Completed 200 OK in 106ms (Views: 105.3ms)
613
- Started GET "/assets/application-2c708bb1ac085ce53ebbd1db7650b07820d943de14e296e1cbebce0b3ffeb14a.js" for 127.0.0.1 at 2017-10-07 08:35:33 -0400
614
- Started GET "/cable" for 127.0.0.1 at 2017-10-07 08:35:33 -0400
615
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-07 08:35:33 -0400
616
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
617
- GraphqlChannel is transmitting the subscription confirmation
618
- GraphqlChannel is transmitting the subscription confirmation
619
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
620
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
621
- GraphqlChannel is streaming from graphql-subscription:0898f540-e54f-448f-b6f2-bf7fdf89715f
622
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
623
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
624
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
625
- GraphqlChannel is streaming from graphql-subscription:0474ffd4-243a-48a7-8d9b-1284b863c07f
626
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
627
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
628
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
629
- [ActionCable] Broadcasting to graphql-subscription:0898f540-e54f-448f-b6f2-bf7fdf89715f: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
630
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:0898f540-e54f-448f-b6f2-bf7fdf89715f)
631
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
632
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
633
- [ActionCable] Broadcasting to graphql-subscription:0898f540-e54f-448f-b6f2-bf7fdf89715f: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
634
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:0898f540-e54f-448f-b6f2-bf7fdf89715f)
635
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
636
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
637
- [ActionCable] Broadcasting to graphql-subscription:0898f540-e54f-448f-b6f2-bf7fdf89715f: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
638
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:0898f540-e54f-448f-b6f2-bf7fdf89715f)
639
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
640
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
641
- [ActionCable] Broadcasting to graphql-subscription:0474ffd4-243a-48a7-8d9b-1284b863c07f: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
642
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:0474ffd4-243a-48a7-8d9b-1284b863c07f)
643
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
644
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
645
- [ActionCable] Broadcasting to graphql-subscription:0474ffd4-243a-48a7-8d9b-1284b863c07f: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
646
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:0474ffd4-243a-48a7-8d9b-1284b863c07f)
647
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-07 08:35:34 -0400
648
- GraphqlChannel stopped streaming from graphql-subscription:0898f540-e54f-448f-b6f2-bf7fdf89715f
649
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
650
- GraphqlChannel stopped streaming from graphql-subscription:0474ffd4-243a-48a7-8d9b-1284b863c07f
651
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
652
- -----------------------------------------------------------
653
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
654
- -----------------------------------------------------------
655
- Started GET "/" for 127.0.0.1 at 2017-10-07 13:09:09 -0400
656
- Processing by PagesController#show as HTML
657
- Rendering pages/show.html within layouts/application
658
- Rendered pages/show.html within layouts/application (1.2ms)
659
- Completed 200 OK in 126ms (Views: 124.7ms)
660
- Started GET "/assets/application-a7a1e33290f15b4e22e2daceb6d4c39f591417a71648a723daf085750f9c785e.js" for 127.0.0.1 at 2017-10-07 13:09:09 -0400
661
- Started GET "/cable" for 127.0.0.1 at 2017-10-07 13:09:09 -0400
662
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-07 13:09:09 -0400
663
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
664
- GraphqlChannel is transmitting the subscription confirmation
665
- GraphqlChannel is transmitting the subscription confirmation
666
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
667
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
668
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
669
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
670
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
671
- GraphqlChannel is streaming from graphql-subscription:21b5f35c-2b2d-4532-a3a2-08044a819e4b
672
- GraphqlChannel is streaming from graphql-subscription:7dd2b47c-803a-4715-bf1c-981c1496190a
673
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
674
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
675
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
676
- [ActionCable] Broadcasting to graphql-subscription:7dd2b47c-803a-4715-bf1c-981c1496190a: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
677
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:7dd2b47c-803a-4715-bf1c-981c1496190a)
678
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
679
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
680
- [ActionCable] Broadcasting to graphql-subscription:7dd2b47c-803a-4715-bf1c-981c1496190a: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
681
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:7dd2b47c-803a-4715-bf1c-981c1496190a)
682
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
683
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
684
- [ActionCable] Broadcasting to graphql-subscription:7dd2b47c-803a-4715-bf1c-981c1496190a: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
685
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:7dd2b47c-803a-4715-bf1c-981c1496190a)
686
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
687
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
688
- [ActionCable] Broadcasting to graphql-subscription:21b5f35c-2b2d-4532-a3a2-08044a819e4b: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
689
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:21b5f35c-2b2d-4532-a3a2-08044a819e4b)
690
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
691
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
692
- [ActionCable] Broadcasting to graphql-subscription:21b5f35c-2b2d-4532-a3a2-08044a819e4b: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
693
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:21b5f35c-2b2d-4532-a3a2-08044a819e4b)
694
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-07 13:09:10 -0400
695
- GraphqlChannel stopped streaming from graphql-subscription:21b5f35c-2b2d-4532-a3a2-08044a819e4b
696
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
697
- GraphqlChannel stopped streaming from graphql-subscription:7dd2b47c-803a-4715-bf1c-981c1496190a
698
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
699
- -----------------------------------------------------------
700
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
701
- -----------------------------------------------------------
702
- Started GET "/" for 127.0.0.1 at 2017-10-07 13:09:33 -0400
703
- Processing by PagesController#show as HTML
704
- Rendering pages/show.html within layouts/application
705
- Rendered pages/show.html within layouts/application (1.2ms)
706
- Completed 200 OK in 131ms (Views: 130.3ms)
707
- Started GET "/assets/application-23865d1c14f9d1f55132a0ee5eb0cdd00fedeee33a8d1a924d8226aec25e3107.js" for 127.0.0.1 at 2017-10-07 13:09:33 -0400
708
- Started GET "/cable" for 127.0.0.1 at 2017-10-07 13:09:33 -0400
709
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-07 13:09:34 -0400
710
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
711
- GraphqlChannel is transmitting the subscription confirmation
712
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
713
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
714
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
715
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
716
- GraphqlChannel is streaming from graphql-subscription:a5395d91-1ae9-4133-a791-3631745d5f66
717
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
718
- GraphqlChannel is streaming from graphql-subscription:76a32201-0ca5-4d22-a60b-ed1e6e8fdf3b
719
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
720
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
721
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
722
- [ActionCable] Broadcasting to graphql-subscription:a5395d91-1ae9-4133-a791-3631745d5f66: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
723
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:a5395d91-1ae9-4133-a791-3631745d5f66)
724
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
725
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
726
- [ActionCable] Broadcasting to graphql-subscription:a5395d91-1ae9-4133-a791-3631745d5f66: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
727
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:a5395d91-1ae9-4133-a791-3631745d5f66)
728
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
729
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
730
- [ActionCable] Broadcasting to graphql-subscription:a5395d91-1ae9-4133-a791-3631745d5f66: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
731
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:a5395d91-1ae9-4133-a791-3631745d5f66)
732
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-07 13:09:36 -0400
733
- GraphqlChannel stopped streaming from graphql-subscription:a5395d91-1ae9-4133-a791-3631745d5f66
734
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
735
- GraphqlChannel stopped streaming from graphql-subscription:76a32201-0ca5-4d22-a60b-ed1e6e8fdf3b
736
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
737
- -----------------------------------------------------------
738
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
739
- -----------------------------------------------------------
740
- Started GET "/" for 127.0.0.1 at 2017-10-08 21:31:13 -0400
741
- Processing by PagesController#show as HTML
742
- Rendering pages/show.html within layouts/application
743
- Rendered pages/show.html within layouts/application (1.0ms)
744
- Completed 200 OK in 126ms (Views: 125.1ms)
745
- Started GET "/assets/application-aca150c4b2db51d5326af18134f6281fbce7e823a372b0337cca65ff41b4a7ea.js" for 127.0.0.1 at 2017-10-08 21:31:13 -0400
746
- Started GET "/cable" for 127.0.0.1 at 2017-10-08 21:31:13 -0400
747
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-08 21:31:13 -0400
748
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
749
- GraphqlChannel is transmitting the subscription confirmation
750
- GraphqlChannel is transmitting the subscription confirmation
751
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
752
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
753
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
754
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
755
- GraphqlChannel is streaming from graphql-subscription:9596f3a8-2ca8-4cc7-af9b-a451c56174ac
756
- GraphqlChannel is streaming from graphql-subscription:3fbcb52a-1716-445f-bd18-30dd7e6d5cbd
757
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
758
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
759
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
760
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
761
- [ActionCable] Broadcasting to graphql-subscription:3fbcb52a-1716-445f-bd18-30dd7e6d5cbd: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
762
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:3fbcb52a-1716-445f-bd18-30dd7e6d5cbd)
763
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
764
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
765
- [ActionCable] Broadcasting to graphql-subscription:3fbcb52a-1716-445f-bd18-30dd7e6d5cbd: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
766
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:3fbcb52a-1716-445f-bd18-30dd7e6d5cbd)
767
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
768
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
769
- [ActionCable] Broadcasting to graphql-subscription:3fbcb52a-1716-445f-bd18-30dd7e6d5cbd: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
770
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:3fbcb52a-1716-445f-bd18-30dd7e6d5cbd)
771
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
772
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
773
- [ActionCable] Broadcasting to graphql-subscription:9596f3a8-2ca8-4cc7-af9b-a451c56174ac: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
774
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:9596f3a8-2ca8-4cc7-af9b-a451c56174ac)
775
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
776
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
777
- [ActionCable] Broadcasting to graphql-subscription:9596f3a8-2ca8-4cc7-af9b-a451c56174ac: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
778
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:9596f3a8-2ca8-4cc7-af9b-a451c56174ac)
779
- Unsubscribing from channel: {"channel":"GraphqlChannel","id":"15efec1fc12"}
780
- GraphqlChannel stopped streaming from graphql-subscription:3fbcb52a-1716-445f-bd18-30dd7e6d5cbd
781
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
782
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"15efec1fc12\"}", "data"=>"{\"id\":\"updates-1\",\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"15efec1fc12"}]: /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:76:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:53:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:17:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/base.rb:85:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:58:in `block in invoke'
783
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
784
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
785
- [ActionCable] Broadcasting to graphql-subscription:9596f3a8-2ca8-4cc7-af9b-a451c56174ac: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
786
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:9596f3a8-2ca8-4cc7-af9b-a451c56174ac)
787
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-10-08 21:31:14 -0400
788
- GraphqlChannel stopped streaming from graphql-subscription:9596f3a8-2ca8-4cc7-af9b-a451c56174ac
789
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
790
- -----------------------------------------------------------
791
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
792
- -----------------------------------------------------------
793
- Started GET "/" for 127.0.0.1 at 2017-11-13 21:58:51 -0500
794
- Processing by PagesController#show as HTML
795
- Rendering pages/show.html within layouts/application
796
- Rendered pages/show.html within layouts/application (0.9ms)
797
- Completed 200 OK in 136ms (Views: 134.7ms)
798
- Started GET "/assets/application-aca150c4b2db51d5326af18134f6281fbce7e823a372b0337cca65ff41b4a7ea.js" for 127.0.0.1 at 2017-11-13 21:58:51 -0500
799
- Started GET "/cable" for 127.0.0.1 at 2017-11-13 21:58:51 -0500
800
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-13 21:58:51 -0500
801
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
802
- Could not execute command from ({"command"=>"subscribe", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"15fb8788afa\"}"}) [SyntaxError - /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:43: syntax error, unexpected keyword_end
803
- end
804
- ^
805
- /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:103: syntax error, unexpected end-of-input, expecting keyword_end]: /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:292:in `require' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:292:in `block in require' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:258:in `load_dependency' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:292:in `require' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:379:in `block in require_or_load'
806
- Could not execute command from ({"command"=>"subscribe", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"15fb87828a0\"}"}) [SyntaxError - /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:43: syntax error, unexpected keyword_end
807
- end
808
- ^
809
- /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:103: syntax error, unexpected end-of-input, expecting keyword_end]: /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:292:in `require' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:292:in `block in require' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:258:in `load_dependency' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:292:in `require' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/activesupport-5.1.4/lib/active_support/dependencies.rb:379:in `block in require_or_load'
810
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-13 21:58:53 -0500
811
- -----------------------------------------------------------
812
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
813
- -----------------------------------------------------------
814
- Started GET "/" for 127.0.0.1 at 2017-11-16 21:25:41 -0500
815
- Processing by PagesController#show as HTML
816
- Rendering pages/show.html within layouts/application
817
- Rendered pages/show.html within layouts/application (1.1ms)
818
- Completed 200 OK in 169ms (Views: 167.8ms)
819
- Started GET "/assets/application-aca150c4b2db51d5326af18134f6281fbce7e823a372b0337cca65ff41b4a7ea.js" for 127.0.0.1 at 2017-11-16 21:25:41 -0500
820
- Started GET "/cable" for 127.0.0.1 at 2017-11-16 21:25:42 -0500
821
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-16 21:25:42 -0500
822
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
823
- GraphqlChannel is transmitting the subscription confirmation
824
- GraphqlChannel is transmitting the subscription confirmation
825
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
826
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
827
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
828
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
829
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
830
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
831
- GraphqlChannel is streaming from graphql-subscription:2d85fcfd-550d-45ce-9b98-71d4adc0dcc0
832
- GraphqlChannel is streaming from graphql-subscription:a225c15d-b0a3-4bdf-b535-e6e5e937cc25
833
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
834
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"15fc7cbd4ad\"}", "data"=>"{\"id\":\"updates-1\",\"value\":1,\"action\":\"make_trigger\"}"}) [NoMethodError - undefined method `dump_value' for GraphqlChannel::CustomSerializer:Module]: /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/serialize.rb:21:in `dump' | /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:36:in `dump' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:78:in `execute_all' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions.rb:52:in `trigger' | /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:83:in `make_trigger'
835
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
836
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"15fc7cbd4ad\"}", "data"=>"{\"id\":\"updates-1\",\"value\":2,\"action\":\"make_trigger\"}"}) [NoMethodError - undefined method `dump_value' for GraphqlChannel::CustomSerializer:Module]: /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/serialize.rb:21:in `dump' | /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:36:in `dump' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:78:in `execute_all' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions.rb:52:in `trigger' | /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:83:in `make_trigger'
837
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
838
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"15fc7cbd4ad\"}", "data"=>"{\"id\":\"updates-1\",\"value\":3,\"action\":\"make_trigger\"}"}) [NoMethodError - undefined method `dump_value' for GraphqlChannel::CustomSerializer:Module]: /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/serialize.rb:21:in `dump' | /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:36:in `dump' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:78:in `execute_all' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions.rb:52:in `trigger' | /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:83:in `make_trigger'
839
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-16 21:25:45 -0500
840
- GraphqlChannel stopped streaming from graphql-subscription:2d85fcfd-550d-45ce-9b98-71d4adc0dcc0
841
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
842
- GraphqlChannel stopped streaming from graphql-subscription:a225c15d-b0a3-4bdf-b535-e6e5e937cc25
843
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
844
- -----------------------------------------------------------
845
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
846
- -----------------------------------------------------------
847
- Started GET "/" for 127.0.0.1 at 2017-11-16 21:31:11 -0500
848
- Processing by PagesController#show as HTML
849
- Rendering pages/show.html within layouts/application
850
- Rendered pages/show.html within layouts/application (0.7ms)
851
- Completed 200 OK in 138ms (Views: 136.5ms)
852
- Started GET "/assets/application-aca150c4b2db51d5326af18134f6281fbce7e823a372b0337cca65ff41b4a7ea.js" for 127.0.0.1 at 2017-11-16 21:31:11 -0500
853
- Started GET "/cable" for 127.0.0.1 at 2017-11-16 21:31:11 -0500
854
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-16 21:31:11 -0500
855
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
856
- GraphqlChannel is transmitting the subscription confirmation
857
- GraphqlChannel is transmitting the subscription confirmation
858
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
859
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
860
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
861
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
862
- GraphqlChannel is streaming from graphql-subscription:17acca37-2b4d-448c-b9bb-51ce54d11284
863
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
864
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
865
- GraphqlChannel is streaming from graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0
866
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
867
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
868
- [ActionCable] Broadcasting to graphql-subscription:17acca37-2b4d-448c-b9bb-51ce54d11284: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
869
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:17acca37-2b4d-448c-b9bb-51ce54d11284)
870
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
871
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
872
- [ActionCable] Broadcasting to graphql-subscription:17acca37-2b4d-448c-b9bb-51ce54d11284: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
873
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:17acca37-2b4d-448c-b9bb-51ce54d11284)
874
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
875
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
876
- [ActionCable] Broadcasting to graphql-subscription:17acca37-2b4d-448c-b9bb-51ce54d11284: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
877
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:17acca37-2b4d-448c-b9bb-51ce54d11284)
878
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
879
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
880
- [ActionCable] Broadcasting to graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
881
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0)
882
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
883
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
884
- [ActionCable] Broadcasting to graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
885
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0)
886
- Unsubscribing from channel: {"channel":"GraphqlChannel","id":"15fc7d184bc"}
887
- GraphqlChannel stopped streaming from graphql-subscription:17acca37-2b4d-448c-b9bb-51ce54d11284
888
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
889
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"15fc7d184bc\"}", "data"=>"{\"id\":\"updates-1\",\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"15fc7d184bc"}]: /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:76:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:53:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:17:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/base.rb:85:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:58:in `block in invoke'
890
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
891
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
892
- [ActionCable] Broadcasting to graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
893
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0)
894
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>4})
895
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
896
- [ActionCable] Broadcasting to graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
897
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0)
898
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-16 21:31:15 -0500
899
- GraphqlChannel stopped streaming from graphql-subscription:606ac42b-b06b-4d48-9f1e-0a82a7c313b0
900
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
901
- -----------------------------------------------------------
902
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
903
- -----------------------------------------------------------
904
- Started GET "/" for 127.0.0.1 at 2017-11-16 21:31:35 -0500
905
- Processing by PagesController#show as HTML
906
- Rendering pages/show.html within layouts/application
907
- Rendered pages/show.html within layouts/application (2.2ms)
908
- Completed 200 OK in 195ms (Views: 194.0ms)
909
- Started GET "/assets/application-aca150c4b2db51d5326af18134f6281fbce7e823a372b0337cca65ff41b4a7ea.js" for 127.0.0.1 at 2017-11-16 21:31:35 -0500
910
- Started GET "/cable" for 127.0.0.1 at 2017-11-16 21:31:35 -0500
911
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-16 21:31:35 -0500
912
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
913
- GraphqlChannel is transmitting the subscription confirmation
914
- GraphqlChannel is transmitting the subscription confirmation
915
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
916
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
917
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
918
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
919
- GraphqlChannel is streaming from graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11
920
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
921
- GraphqlChannel is streaming from graphql-subscription:ded77eba-1a76-4246-83f2-bd4637b11de0
922
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
923
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
924
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
925
- [ActionCable] Broadcasting to graphql-subscription:ded77eba-1a76-4246-83f2-bd4637b11de0: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
926
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:ded77eba-1a76-4246-83f2-bd4637b11de0)
927
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
928
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
929
- [ActionCable] Broadcasting to graphql-subscription:ded77eba-1a76-4246-83f2-bd4637b11de0: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
930
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:ded77eba-1a76-4246-83f2-bd4637b11de0)
931
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
932
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
933
- [ActionCable] Broadcasting to graphql-subscription:ded77eba-1a76-4246-83f2-bd4637b11de0: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
934
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:ded77eba-1a76-4246-83f2-bd4637b11de0)
935
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
936
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
937
- [ActionCable] Broadcasting to graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
938
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11)
939
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
940
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
941
- [ActionCable] Broadcasting to graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
942
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11)
943
- Unsubscribing from channel: {"channel":"GraphqlChannel","id":"15fc7d19ae3"}
944
- GraphqlChannel stopped streaming from graphql-subscription:ded77eba-1a76-4246-83f2-bd4637b11de0
945
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
946
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"15fc7d19ae3\"}", "data"=>"{\"id\":\"updates-1\",\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"15fc7d19ae3"}]: /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:76:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:53:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:17:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/base.rb:85:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:58:in `block in invoke'
947
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
948
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
949
- [ActionCable] Broadcasting to graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
950
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11)
951
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>4})
952
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
953
- [ActionCable] Broadcasting to graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
954
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11)
955
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-16 21:31:41 -0500
956
- GraphqlChannel stopped streaming from graphql-subscription:deb86012-88c0-4449-872c-f71c390a3c11
957
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
958
- -----------------------------------------------------------
959
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
960
- -----------------------------------------------------------
961
- Started GET "/" for 127.0.0.1 at 2017-11-16 21:31:55 -0500
962
- Processing by PagesController#show as HTML
963
- Rendering pages/show.html within layouts/application
964
- Rendered pages/show.html within layouts/application (1.0ms)
965
- Completed 200 OK in 111ms (Views: 110.0ms)
966
- Started GET "/assets/application-aca150c4b2db51d5326af18134f6281fbce7e823a372b0337cca65ff41b4a7ea.js" for 127.0.0.1 at 2017-11-16 21:31:55 -0500
967
- Started GET "/cable" for 127.0.0.1 at 2017-11-16 21:31:56 -0500
968
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-16 21:31:56 -0500
969
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
970
- GraphqlChannel is transmitting the subscription confirmation
971
- GraphqlChannel is transmitting the subscription confirmation
972
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
973
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
974
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
975
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
976
- GraphqlChannel is streaming from graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9
977
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
978
- GraphqlChannel is streaming from graphql-subscription:359ce997-f8e7-4431-bd71-74af6276e37e
979
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
980
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
981
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
982
- [ActionCable] Broadcasting to graphql-subscription:359ce997-f8e7-4431-bd71-74af6276e37e: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
983
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:359ce997-f8e7-4431-bd71-74af6276e37e)
984
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
985
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
986
- [ActionCable] Broadcasting to graphql-subscription:359ce997-f8e7-4431-bd71-74af6276e37e: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
987
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:359ce997-f8e7-4431-bd71-74af6276e37e)
988
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
989
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
990
- [ActionCable] Broadcasting to graphql-subscription:359ce997-f8e7-4431-bd71-74af6276e37e: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
991
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:359ce997-f8e7-4431-bd71-74af6276e37e)
992
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
993
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
994
- [ActionCable] Broadcasting to graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
995
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9)
996
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
997
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
998
- [ActionCable] Broadcasting to graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
999
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9)
1000
- Unsubscribing from channel: {"channel":"GraphqlChannel","id":"15fc7d1abf4"}
1001
- GraphqlChannel stopped streaming from graphql-subscription:359ce997-f8e7-4431-bd71-74af6276e37e
1002
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
1003
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"15fc7d1abf4\"}", "data"=>"{\"id\":\"updates-1\",\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"15fc7d1abf4"}]: /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:76:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:53:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:17:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/connection/base.rb:85:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:58:in `block in invoke'
1004
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
1005
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
1006
- [ActionCable] Broadcasting to graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
1007
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9)
1008
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>4})
1009
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
1010
- [ActionCable] Broadcasting to graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
1011
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9)
1012
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2017-11-16 21:31:59 -0500
1013
- GraphqlChannel stopped streaming from graphql-subscription:4aa99f83-32cb-4a2f-a337-ebfa958ad4f9
1014
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
1015
- -----------------------------------------------------------
1016
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
1017
- -----------------------------------------------------------
1018
- -----------------------------------------------------------
1019
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
1020
- -----------------------------------------------------------
1021
- -----------------------------------------------------------
1022
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
1023
- -----------------------------------------------------------
1024
- Started GET "/" for 127.0.0.1 at 2018-04-04 21:26:38 -0400
1025
- Processing by PagesController#show as HTML
1026
- Rendering pages/show.html within layouts/application
1027
- Rendered pages/show.html within layouts/application (1.4ms)
1028
- Completed 200 OK in 223ms (Views: 221.7ms)
1029
- Started GET "/assets/application-aca150c4b2db51d5326af18134f6281fbce7e823a372b0337cca65ff41b4a7ea.js" for 127.0.0.1 at 2018-04-04 21:26:38 -0400
1030
- Started GET "/cable" for 127.0.0.1 at 2018-04-04 21:26:38 -0400
1031
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-04-04 21:26:38 -0400
1032
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
1033
- -----------------------------------------------------------
1034
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
1035
- -----------------------------------------------------------
1036
- Started GET "/" for 127.0.0.1 at 2018-04-04 21:28:18 -0400
1037
- Processing by PagesController#show as HTML
1038
- Rendering pages/show.html within layouts/application
1039
- Rendered pages/show.html within layouts/application (1.0ms)
1040
- Completed 200 OK in 169ms (Views: 167.6ms)
1041
- Started GET "/assets/application-aca150c4b2db51d5326af18134f6281fbce7e823a372b0337cca65ff41b4a7ea.js" for 127.0.0.1 at 2018-04-04 21:28:19 -0400
1042
- Started GET "/cable" for 127.0.0.1 at 2018-04-04 21:28:19 -0400
1043
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-04-04 21:28:19 -0400
1044
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
1045
- GraphqlChannel is transmitting the subscription confirmation
1046
- GraphqlChannel is transmitting the subscription confirmation
1047
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
1048
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
1049
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
1050
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
1051
- GraphqlChannel is streaming from graphql-subscription:14380391-0422-411f-9cd3-62afef50f46f
1052
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
1053
- GraphqlChannel is streaming from graphql-subscription:a486e52b-8725-4cf4-bce1-d63504d1d299
1054
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
1055
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
1056
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"162936ba578\"}", "data"=>"{\"id\":\"updates-1\",\"value\":1,\"action\":\"make_trigger\"}"}) [NoMethodError - undefined method `subscriptions' for GraphqlChannel::GraphQLSchema:Class
1057
- Did you mean? subscription]: /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:82:in `make_trigger' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:262:in `public_send' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:262:in `dispatch_action' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:166:in `block in perform_action' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/notifications.rb:168:in `instrument'
1058
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
1059
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"162936ba578\"}", "data"=>"{\"id\":\"updates-1\",\"value\":2,\"action\":\"make_trigger\"}"}) [NoMethodError - undefined method `subscriptions' for GraphqlChannel::GraphQLSchema:Class
1060
- Did you mean? subscription]: /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:82:in `make_trigger' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:262:in `public_send' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:262:in `dispatch_action' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:166:in `block in perform_action' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/notifications.rb:168:in `instrument'
1061
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
1062
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"162936ba578\"}", "data"=>"{\"id\":\"updates-1\",\"value\":3,\"action\":\"make_trigger\"}"}) [NoMethodError - undefined method `subscriptions' for GraphqlChannel::GraphQLSchema:Class
1063
- Did you mean? subscription]: /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:82:in `make_trigger' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:262:in `public_send' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:262:in `dispatch_action' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:166:in `block in perform_action' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/notifications.rb:168:in `instrument'
1064
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2018-04-04 21:28:22 -0400
1065
- There was an exception - NoMethodError(undefined method `subscriptions' for GraphqlChannel::GraphQLSchema:Class
1066
- Did you mean? subscription)
1067
- /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:87:in `block in unsubscribed'
1068
- /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:86:in `each'
1069
- /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:86:in `unsubscribed'
1070
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:188:in `block in unsubscribe_from_channel'
1071
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb:108:in `block in run_callbacks'
1072
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/execution_wrapper.rb:81:in `wrap'
1073
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/engine.rb:66:in `block (3 levels) in <class:Engine>'
1074
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb:117:in `instance_exec'
1075
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb:117:in `block in run_callbacks'
1076
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb:135:in `run_callbacks'
1077
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/channel/base.rb:187:in `unsubscribe_from_channel'
1078
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:48:in `remove_subscription'
1079
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:61:in `block in unsubscribe_from_all'
1080
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:61:in `each'
1081
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:61:in `unsubscribe_from_all'
1082
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/connection/base.rb:182:in `handle_close'
1083
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:58:in `block in invoke'
1084
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:39:in `block in work'
1085
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb:108:in `block in run_callbacks'
1086
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/engine.rb:60:in `block (4 levels) in <class:Engine>'
1087
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/execution_wrapper.rb:85:in `wrap'
1088
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/engine.rb:55:in `block (3 levels) in <class:Engine>'
1089
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb:117:in `instance_exec'
1090
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb:117:in `block in run_callbacks'
1091
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/activesupport-5.1.4/lib/active_support/callbacks.rb:135:in `run_callbacks'
1092
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:38:in `work'
1093
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:56:in `invoke'
1094
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:51:in `block in async_invoke'
1095
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb:348:in `run_task'
1096
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb:337:in `block (3 levels) in create_worker'
1097
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb:320:in `loop'
1098
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb:320:in `block (2 levels) in create_worker'
1099
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb:319:in `catch'
1100
- /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/concurrent-ruby-1.0.5/lib/concurrent/executor/ruby_thread_pool_executor.rb:319:in `block in create_worker'
1101
- -----------------------------------------------------------
1102
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
1103
- -----------------------------------------------------------
1104
- Started GET "/" for 127.0.0.1 at 2018-04-04 21:28:46 -0400
1105
- Processing by PagesController#show as HTML
1106
- Rendering pages/show.html within layouts/application
1107
- Rendered pages/show.html within layouts/application (0.8ms)
1108
- Completed 200 OK in 168ms (Views: 166.4ms)
1109
- Started GET "/assets/application-aca150c4b2db51d5326af18134f6281fbce7e823a372b0337cca65ff41b4a7ea.js" for 127.0.0.1 at 2018-04-04 21:28:46 -0400
1110
- Started GET "/cable" for 127.0.0.1 at 2018-04-04 21:28:46 -0400
1111
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-04-04 21:28:46 -0400
1112
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
1113
- GraphqlChannel is transmitting the subscription confirmation
1114
- GraphqlChannel is transmitting the subscription confirmation
1115
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
1116
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
1117
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
1118
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
1119
- GraphqlChannel is streaming from graphql-subscription:99e0a2c2-1603-4cbf-a613-c6004e2eab8e
1120
- GraphqlChannel is streaming from graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab
1121
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
1122
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
1123
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
1124
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
1125
- [ActionCable] Broadcasting to graphql-subscription:99e0a2c2-1603-4cbf-a613-c6004e2eab8e: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
1126
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:99e0a2c2-1603-4cbf-a613-c6004e2eab8e)
1127
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
1128
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
1129
- [ActionCable] Broadcasting to graphql-subscription:99e0a2c2-1603-4cbf-a613-c6004e2eab8e: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
1130
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:99e0a2c2-1603-4cbf-a613-c6004e2eab8e)
1131
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
1132
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
1133
- [ActionCable] Broadcasting to graphql-subscription:99e0a2c2-1603-4cbf-a613-c6004e2eab8e: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
1134
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:99e0a2c2-1603-4cbf-a613-c6004e2eab8e)
1135
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
1136
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
1137
- [ActionCable] Broadcasting to graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
1138
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab)
1139
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
1140
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
1141
- [ActionCable] Broadcasting to graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
1142
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab)
1143
- Unsubscribing from channel: {"channel":"GraphqlChannel","id":"162936cc343"}
1144
- GraphqlChannel stopped streaming from graphql-subscription:99e0a2c2-1603-4cbf-a613-c6004e2eab8e
1145
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
1146
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"162936cc343\"}", "data"=>"{\"id\":\"updates-1\",\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"162936cc343"}]: /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:76:in `find' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:53:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/connection/subscriptions.rb:17:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/connection/base.rb:85:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.4/lib/action_cable/server/worker.rb:58:in `block in invoke'
1147
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
1148
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
1149
- [ActionCable] Broadcasting to graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
1150
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab)
1151
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>4})
1152
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
1153
- [ActionCable] Broadcasting to graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
1154
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab)
1155
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2018-04-04 21:28:48 -0400
1156
- GraphqlChannel stopped streaming from graphql-subscription:aeaba99c-5e87-4848-994a-16c24a9e4cab
1157
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
1158
- -----------------------------------------------------------
1159
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
1160
- -----------------------------------------------------------
1161
- -----------------------------------------------------------
1162
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
1163
- -----------------------------------------------------------
1164
- -----------------------------------------------------------
1165
- ActionCableSubscriptionsTest: test_it_handles_subscriptions
1166
- -----------------------------------------------------------
1167
- Started GET "/" for 127.0.0.1 at 2018-04-04 21:29:49 -0400
1168
- Processing by PagesController#show as HTML
1169
- Rendering pages/show.html within layouts/application
1170
- Rendered pages/show.html within layouts/application (1.2ms)
1171
- Completed 200 OK in 216ms (Views: 215.0ms)
1172
- Started GET "/assets/application-57f1cc63be16d6347b6b5b3308736b31c869b2b3a0ff7a034dd68c775f33430b.js" for 127.0.0.1 at 2018-04-04 21:29:49 -0400
1173
- Started GET "/cable" for 127.0.0.1 at 2018-04-04 21:29:50 -0400
1174
- Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-04-04 21:29:50 -0400
1175
- Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
1176
- GraphqlChannel is transmitting the subscription confirmation
1177
- GraphqlChannel is transmitting the subscription confirmation
1178
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
1179
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
1180
- GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
1181
- GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
1182
- GraphqlChannel is streaming from graphql-subscription:a0f12c78-b64f-4da5-a8bc-f3baa3afa7e3
1183
- GraphqlChannel is streaming from graphql-event::payload:id:updates-2
1184
- GraphqlChannel is streaming from graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0
1185
- GraphqlChannel is streaming from graphql-event::payload:id:updates-1
1186
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
1187
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
1188
- [ActionCable] Broadcasting to graphql-subscription:a0f12c78-b64f-4da5-a8bc-f3baa3afa7e3: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
1189
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:a0f12c78-b64f-4da5-a8bc-f3baa3afa7e3)
1190
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
1191
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
1192
- [ActionCable] Broadcasting to graphql-subscription:a0f12c78-b64f-4da5-a8bc-f3baa3afa7e3: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
1193
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:a0f12c78-b64f-4da5-a8bc-f3baa3afa7e3)
1194
- GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
1195
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
1196
- [ActionCable] Broadcasting to graphql-subscription:a0f12c78-b64f-4da5-a8bc-f3baa3afa7e3: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
1197
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:a0f12c78-b64f-4da5-a8bc-f3baa3afa7e3)
1198
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
1199
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
1200
- [ActionCable] Broadcasting to graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
1201
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0)
1202
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
1203
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
1204
- [ActionCable] Broadcasting to graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
1205
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0)
1206
- Unsubscribing from channel: {"channel":"GraphqlChannel","id":"162936d78f8"}
1207
- GraphqlChannel stopped streaming from graphql-subscription:a0f12c78-b64f-4da5-a8bc-f3baa3afa7e3
1208
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
1209
- Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"162936d78f8\"}", "data"=>"{\"id\":\"updates-1\",\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"162936d78f8"}]: /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.6/lib/action_cable/connection/subscriptions.rb:76:in `find' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.6/lib/action_cable/connection/subscriptions.rb:53:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.6/lib/action_cable/connection/subscriptions.rb:17:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.6/lib/action_cable/connection/base.rb:85:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/actioncable-5.1.6/lib/action_cable/server/worker.rb:58:in `block in invoke'
1210
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
1211
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
1212
- [ActionCable] Broadcasting to graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
1213
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0)
1214
- GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>4})
1215
- [ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
1216
- [ActionCable] Broadcasting to graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
1217
- GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0)
1218
- Finished "/cable/" [WebSocket] for 127.0.0.1 at 2018-04-04 21:29:51 -0400
1219
- GraphqlChannel stopped streaming from graphql-subscription:17b971da-5ff2-4b3b-824c-5117585a86f0
1220
- GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2