graphql 1.8.18 → 1.9.0.pre1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/graphql.rb +1 -3
- data/lib/graphql/analysis.rb +1 -0
- data/lib/graphql/analysis/ast.rb +82 -0
- data/lib/graphql/analysis/ast/analyzer.rb +62 -0
- data/lib/graphql/analysis/ast/field_usage.rb +28 -0
- data/lib/graphql/analysis/ast/max_query_complexity.rb +23 -0
- data/lib/graphql/analysis/ast/max_query_depth.rb +18 -0
- data/lib/graphql/analysis/ast/query_complexity.rb +114 -0
- data/lib/graphql/analysis/ast/query_depth.rb +66 -0
- data/lib/graphql/analysis/ast/visitor.rb +245 -0
- data/lib/graphql/argument.rb +5 -0
- data/lib/graphql/authorization.rb +1 -0
- data/lib/graphql/compatibility/schema_parser_specification.rb +2 -6
- data/lib/graphql/execution.rb +1 -0
- data/lib/graphql/execution/execute.rb +32 -17
- data/lib/graphql/execution/interpreter.rb +89 -0
- data/lib/graphql/execution/interpreter/execution_errors.rb +29 -0
- data/lib/graphql/execution/interpreter/hash_response.rb +46 -0
- data/lib/graphql/execution/interpreter/runtime.rb +486 -0
- data/lib/graphql/execution/lazy.rb +1 -0
- data/lib/graphql/execution/lookahead.rb +0 -47
- data/lib/graphql/execution/multiplex.rb +33 -26
- data/lib/graphql/internal_representation/rewrite.rb +127 -142
- data/lib/graphql/introspection/dynamic_fields.rb +8 -2
- data/lib/graphql/introspection/entry_points.rb +7 -6
- data/lib/graphql/introspection/enum_value_type.rb +4 -0
- data/lib/graphql/introspection/schema_type.rb +7 -2
- data/lib/graphql/introspection/type_type.rb +5 -1
- data/lib/graphql/invalid_null_error.rb +1 -1
- data/lib/graphql/language.rb +1 -0
- data/lib/graphql/language/block_string.rb +0 -37
- data/lib/graphql/language/comments.rb +45 -0
- data/lib/graphql/language/document_from_schema_definition.rb +9 -6
- data/lib/graphql/language/lexer.rb +36 -50
- data/lib/graphql/language/lexer.rl +3 -3
- data/lib/graphql/language/nodes.rb +416 -361
- data/lib/graphql/language/printer.rb +1 -1
- data/lib/graphql/language/visitor.rb +138 -15
- data/lib/graphql/query.rb +2 -1
- data/lib/graphql/query/arguments.rb +1 -2
- data/lib/graphql/query/context.rb +12 -2
- data/lib/graphql/query/validation_pipeline.rb +31 -7
- data/lib/graphql/relay/connection_instrumentation.rb +3 -1
- data/lib/graphql/relay/node.rb +2 -28
- data/lib/graphql/relay/relation_connection.rb +1 -1
- data/lib/graphql/schema.rb +48 -53
- data/lib/graphql/schema/base_64_encoder.rb +1 -1
- data/lib/graphql/schema/build_from_definition.rb +1 -1
- data/lib/graphql/schema/field.rb +191 -67
- data/lib/graphql/schema/field/connection_extension.rb +50 -0
- data/lib/graphql/schema/field/scope_extension.rb +18 -0
- data/lib/graphql/schema/field_extension.rb +61 -0
- data/lib/graphql/schema/input_object.rb +15 -9
- data/lib/graphql/schema/member/base_dsl_methods.rb +4 -0
- data/lib/graphql/schema/member/build_type.rb +1 -33
- data/lib/graphql/schema/member/has_arguments.rb +6 -2
- data/lib/graphql/schema/member/has_fields.rb +6 -2
- data/lib/graphql/schema/member/instrumentation.rb +7 -10
- data/lib/graphql/schema/mutation.rb +3 -1
- data/lib/graphql/schema/non_null.rb +5 -1
- data/lib/graphql/schema/object.rb +18 -4
- data/lib/graphql/schema/relay_classic_mutation.rb +38 -4
- data/lib/graphql/schema/resolver.rb +10 -10
- data/lib/graphql/schema/traversal.rb +11 -7
- data/lib/graphql/static_validation.rb +3 -2
- data/lib/graphql/static_validation/all_rules.rb +2 -3
- data/lib/graphql/static_validation/base_visitor.rb +184 -0
- data/lib/graphql/static_validation/default_visitor.rb +15 -0
- data/lib/graphql/static_validation/definition_dependencies.rb +56 -62
- data/lib/graphql/static_validation/literal_validator.rb +11 -54
- data/lib/graphql/static_validation/no_validate_visitor.rb +10 -0
- data/lib/graphql/static_validation/rules/argument_literals_are_compatible.rb +57 -34
- data/lib/graphql/static_validation/rules/argument_names_are_unique.rb +10 -10
- data/lib/graphql/static_validation/rules/arguments_are_defined.rb +46 -8
- data/lib/graphql/static_validation/rules/directives_are_defined.rb +8 -15
- data/lib/graphql/static_validation/rules/directives_are_in_valid_locations.rb +10 -14
- data/lib/graphql/static_validation/rules/fields_are_defined_on_type.rb +8 -19
- data/lib/graphql/static_validation/rules/fields_have_appropriate_selections.rb +16 -12
- data/lib/graphql/static_validation/rules/fields_will_merge.rb +338 -29
- data/lib/graphql/static_validation/rules/fragment_names_are_unique.rb +16 -13
- data/lib/graphql/static_validation/rules/fragment_spreads_are_possible.rb +30 -29
- data/lib/graphql/static_validation/rules/fragment_types_exist.rb +21 -17
- data/lib/graphql/static_validation/rules/fragments_are_finite.rb +7 -10
- data/lib/graphql/static_validation/rules/fragments_are_named.rb +4 -11
- data/lib/graphql/static_validation/rules/fragments_are_on_composite_types.rb +12 -16
- data/lib/graphql/static_validation/rules/fragments_are_used.rb +11 -14
- data/lib/graphql/static_validation/rules/mutation_root_exists.rb +7 -14
- data/lib/graphql/static_validation/rules/no_definitions_are_present.rb +29 -29
- data/lib/graphql/static_validation/rules/operation_names_are_valid.rb +18 -17
- data/lib/graphql/static_validation/rules/required_arguments_are_present.rb +11 -18
- data/lib/graphql/static_validation/rules/subscription_root_exists.rb +7 -14
- data/lib/graphql/static_validation/rules/unique_directives_per_location.rb +26 -16
- data/lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed.rb +24 -32
- data/lib/graphql/static_validation/rules/variable_names_are_unique.rb +11 -14
- data/lib/graphql/static_validation/rules/variable_usages_are_allowed.rb +34 -30
- data/lib/graphql/static_validation/rules/variables_are_input_types.rb +8 -14
- data/lib/graphql/static_validation/rules/variables_are_used_and_defined.rb +57 -65
- data/lib/graphql/static_validation/validation_context.rb +8 -51
- data/lib/graphql/static_validation/validator.rb +9 -11
- data/lib/graphql/subscriptions.rb +1 -0
- data/lib/graphql/subscriptions/event.rb +28 -5
- data/lib/graphql/subscriptions/subscription_root.rb +43 -0
- data/lib/graphql/tracing.rb +2 -2
- data/lib/graphql/tracing/appsignal_tracing.rb +1 -1
- data/lib/graphql/tracing/data_dog_tracing.rb +1 -1
- data/lib/graphql/tracing/new_relic_tracing.rb +3 -3
- data/lib/graphql/tracing/platform_tracing.rb +17 -1
- data/lib/graphql/tracing/prometheus_tracing.rb +1 -1
- data/lib/graphql/tracing/scout_tracing.rb +1 -1
- data/lib/graphql/tracing/skylight_tracing.rb +3 -3
- data/lib/graphql/types/relay.rb +2 -0
- data/lib/graphql/types/relay/base_connection.rb +15 -1
- data/lib/graphql/types/relay/node.rb +0 -1
- data/lib/graphql/types/relay/node_field.rb +28 -0
- data/lib/graphql/types/relay/nodes_field.rb +29 -0
- data/lib/graphql/unauthorized_error.rb +5 -1
- data/lib/graphql/version.rb +1 -1
- data/spec/dummy/Gemfile.lock +85 -90
- data/spec/dummy/app/channels/graphql_channel.rb +22 -11
- data/spec/dummy/log/test.log +117 -2111
- data/spec/dummy/test/test_helper.rb +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ET/ETW4uxvaYpruL8y6_ZptUH82ZowMaHIqvg5WexBFdEM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cG/cGc_puuPS5pZKgUcy1Y_i1L6jl5UtsiIrMH59rTzR6c.cache +0 -0
- data/spec/dummy/tmp/screenshots/failures_test_it_handles_subscriptions.png +0 -0
- data/spec/graphql/analysis/ast/field_usage_spec.rb +51 -0
- data/spec/graphql/analysis/ast/max_query_complexity_spec.rb +120 -0
- data/spec/graphql/analysis/ast/max_query_depth_spec.rb +114 -0
- data/spec/graphql/analysis/ast/query_complexity_spec.rb +299 -0
- data/spec/graphql/analysis/ast/query_depth_spec.rb +108 -0
- data/spec/graphql/analysis/ast_spec.rb +217 -0
- data/spec/graphql/authorization_spec.rb +27 -3
- data/spec/graphql/base_type_spec.rb +1 -3
- data/spec/graphql/execution/execute_spec.rb +8 -8
- data/spec/graphql/execution/interpreter_spec.rb +279 -0
- data/spec/graphql/execution/lazy_spec.rb +0 -7
- data/spec/graphql/execution/lookahead_spec.rb +0 -74
- data/spec/graphql/execution/multiplex_spec.rb +1 -1
- data/spec/graphql/execution_error_spec.rb +110 -96
- data/spec/graphql/introspection/type_type_spec.rb +1 -2
- data/spec/graphql/language/lexer_spec.rb +3 -23
- data/spec/graphql/language/nodes_spec.rb +20 -0
- data/spec/graphql/language/printer_spec.rb +6 -18
- data/spec/graphql/language/visitor_spec.rb +320 -14
- data/spec/graphql/non_null_type_spec.rb +1 -1
- data/spec/graphql/query/arguments_spec.rb +0 -21
- data/spec/graphql/query/context_spec.rb +0 -10
- data/spec/graphql/query/executor_spec.rb +23 -21
- data/spec/graphql/schema/argument_spec.rb +3 -0
- data/spec/graphql/schema/build_from_definition_spec.rb +25 -75
- data/spec/graphql/schema/catchall_middleware_spec.rb +16 -15
- data/spec/graphql/schema/field_extension_spec.rb +93 -0
- data/spec/graphql/schema/field_spec.rb +5 -20
- data/spec/graphql/schema/input_object_spec.rb +3 -51
- data/spec/graphql/schema/instrumentation_spec.rb +3 -0
- data/spec/graphql/schema/introspection_system_spec.rb +9 -1
- data/spec/graphql/schema/member/accepts_definition_spec.rb +4 -0
- data/spec/graphql/schema/member/build_type_spec.rb +0 -46
- data/spec/graphql/schema/member/has_fields_spec.rb +3 -0
- data/spec/graphql/schema/member/scoped_spec.rb +16 -0
- data/spec/graphql/schema/mutation_spec.rb +5 -3
- data/spec/graphql/schema/object_spec.rb +3 -1
- data/spec/graphql/schema/printer_spec.rb +96 -244
- data/spec/graphql/schema/resolver_spec.rb +11 -0
- data/spec/graphql/schema/warden_spec.rb +121 -111
- data/spec/graphql/static_validation/rules/argument_literals_are_compatible_spec.rb +68 -186
- data/spec/graphql/static_validation/rules/arguments_are_defined_spec.rb +28 -47
- data/spec/graphql/static_validation/rules/fields_will_merge_spec.rb +129 -4
- data/spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb +17 -0
- data/spec/graphql/static_validation/type_stack_spec.rb +10 -19
- data/spec/graphql/static_validation/validator_spec.rb +46 -0
- data/spec/graphql/subscriptions_spec.rb +23 -5
- data/spec/graphql/tracing/new_relic_tracing_spec.rb +6 -10
- data/spec/graphql/tracing/platform_tracing_spec.rb +59 -37
- data/spec/graphql/tracing/prometheus_tracing_spec.rb +3 -0
- data/spec/graphql/tracing/skylight_tracing_spec.rb +6 -10
- data/spec/graphql/types/iso_8601_date_time_spec.rb +3 -0
- data/spec/integration/mongoid/graphql/relay/mongo_relation_connection_spec.rb +11 -11
- data/spec/integration/mongoid/star_trek/schema.rb +56 -34
- data/spec/integration/rails/graphql/relay/array_connection_spec.rb +9 -9
- data/spec/integration/rails/graphql/relay/base_connection_spec.rb +3 -3
- data/spec/integration/rails/graphql/relay/connection_instrumentation_spec.rb +19 -22
- data/spec/integration/rails/graphql/relay/connection_resolve_spec.rb +16 -0
- data/spec/integration/rails/graphql/relay/mutation_spec.rb +0 -48
- data/spec/integration/rails/graphql/relay/page_info_spec.rb +22 -22
- data/spec/integration/rails/graphql/relay/relation_connection_spec.rb +27 -56
- data/spec/integration/rails/graphql/schema_spec.rb +9 -6
- data/spec/integration/rails/graphql/tracing/active_support_notifications_tracing_spec.rb +16 -9
- data/spec/integration/rails/spec_helper.rb +0 -10
- data/spec/integration/tmp/app/graphql/types/family_type.rb +9 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/support/dummy/schema.rb +40 -32
- data/spec/support/jazz.rb +69 -58
- data/spec/support/lazy_helpers.rb +37 -22
- data/spec/support/new_relic.rb +0 -3
- data/spec/support/skylight.rb +0 -3
- data/spec/support/star_wars/schema.rb +127 -85
- data/spec/support/static_validation_helpers.rb +7 -7
- metadata +288 -2933
- data/lib/graphql/dig.rb +0 -19
- data/lib/graphql/literal_validation_error.rb +0 -6
- data/lib/graphql/static_validation/arguments_validator.rb +0 -54
- data/lib/graphql/static_validation/rules/required_input_object_attributes_are_present.rb +0 -44
- data/spec/dummy/log/development.log +0 -5579
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-r/-rCENHka8JWjzeiEpDgzj1mCujURxjOjClndRP0HpSQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-r/-rZua9uNDUCDGGZE0ASg1iPtBpviYa6XRPOZSI78B0A.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1I/1IT0HFCBcrG8s-FgC9WswLhYeofD4p4V-DXHpJFBLy0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1t/1t08lgNGJRFgBqBO1RQzdUSxZqkYREmYhGuufopGOmA.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/27/27Mr_BJQ1tpdm8yQOmjP3Ewul26LcUZ_uo1Fa5CCHV4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2W/2WF4YXtbBbSa-lRtrhc9Kgxt5Lm1_BWHUxsd3u8WIQk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3M/3McnsgtUkmNbB32CQSJtT4Ed8URNPS86Nw4zkU3lewY.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/45/45CV7DVrLwyQDPVmrk2sePuraDBwXE8wGGCZCgBm4Tk.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5n/5nE0lLSxRYC7_kW8VQYFBCgIOq9zfoMIcFpKGLWDRE0.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5p/5pKrp0qZRQ22rgrHHqKhkxUAwRcM3US8DBKWkF5lcAA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/69/69kaEqloMM1zTZYfkyVJbIK2OsnbD8xpKt30SEr7D0A.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6x/6xoWRRiGXwuP3R2FpUT0eCWhpzzIIgDgEtWV6yFZYNE.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8tVDlo9qqILA55RV6QNVISf5CSy4qi6SyByHp4hlshw.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9w/9wbORv4VTea4cmH1yE1RG469KM70opOQEN_HJLxGVT4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AZ/AZYP11hT4sHm-zk6o_8VZQ1DqR2kX7L7wmUYkEXvhe4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/A_/A_g0rETjPxUxCQQ6mb7AjIkCVM_NZP009-WfLXfy35A.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/BA/BAwSwdALCa3u3mkO5P-9C4zdfQsx_PcEMlD3bLFFFCo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/BE/BEsGQ1yf-jvL4DNSjlypvNqY5KKmnE9zpYiOdRG3HFY.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/C1/C1YTbOWTMynBG5cts3y-dFkxhdjNA2vi18pK79L5muU.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cy/CyaJGZdOKkbrNy0IKzSTkQ_E1EasXDam_hOmw2M9V1A.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DC/DCbNxZvDQMDIiSFpSEzEPzKpzmYS1pwBeizHVoMpE5Y.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dm/Dmb5y5KwUlK0RlNSRpKrNOIkZGJqZSSE2AEdhrkYEZs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dm/dMKfjRdI9QVlSvYJ50pvkqwEeNmmSDL9b-PHC0KiV3s.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Du/DuZ34ccPh9oQJAi7MHPMuXMVBzXewOx4IbbuKbhdz5E.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/E7/E7PoQE28COkJ83aLMe8bhnLZmFxuhPTFgPG3RHI6joI.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Er/ErQU8KqBFMjPhNE8oiDF7RaPuPCUVZfAbvw-yZ4gees.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ex/ExdrS9Hm1cWBCPLH8DN1jF7-ICmhLu81VnjvTXzXW-4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F4/F4R5plYKU9e_X1Mo-qGQObZL3KXeZin-XM9t_Hvj4qQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/FQ/FQQBjrUq-AFxKhBQ9yFJgKk3YCyA74aK-528f0WVF_g.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/GE/GEG7ZLi5C3qikLceES9mgz2eVdJRxnVXyg6LnCB-0Qw.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HL/HL3-jA6W0OXIZTnVspIVCyHPeStWkxFQw8y85SY7vdM.cache +0 -2
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Id/IdMni7HeXr_bdPqJgDzCOUzwWz5bxixb6SHB9MgROjg.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ik/IkBGH56MfhqQJ6iFPa-dr9uyOs797tAvCCWs28uQrOk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/kBeuoWNmWQFfN6ZtzOHcLQybENrQFyyihLY_ZTNZ39M.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KP/KPyFeclVZMp9gAx8mSZL-JHKW7kU0awAqCxWc6gRtGU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/L0/L0huMUIZnZ9SjKNKNdr5Wg4f8jJ_zVeXKcwbXGCApFc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lc/Lc5dQSSU_gOlcda0gYszDEnlZjgBZPeT2_0wdvX6Tk8.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lm/LmOViFcTliTHBzkAV9rzVeOGjmGXHRw6NWAhA_0amb8.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lx/LxSxypB7bAfhEYM5uB9o2u8Pfy92W_HxoVMufL41hus.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/M0/M0XKEgcW6Xvef1Eda6DvhUgyooHHt_PIfh-pxwSI80U.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NH/NHFZpAyoxxTBbXusQJFZknmwNo5VDFbGGTxFc0tpX0c.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PT/PTC_AmKxP0n1zJ5bUxvCNekmg7gPbUW40xE-P4fmqFE.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Px/PxLQiX6GFeAflEWQwLx6pzBG2U-pPXuy-IvU5F7TKEo.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RR/RRxavlb6RK6L-l7TZafP73oX46P-CKanq_gXTLiZ7L4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SL/SLRfMCgA6AzHJb12YrenbNW3EQII9b_kuL1LBXkosew.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sb/SbY1Dh0krb2g5VsNQOVeAjSQfCGj7qj7MEBqckN4kEM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TT/TT8D27Ib-QrQu9zXEBQ_-9CGpAXSjMkpZroXoALDWyI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Tz/TzCeNpcdXuoKpKGv3uG49oKezmCgX8KGhW0X1diKQc8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/V4/V4vH-ap9MK36i_I9hcBfmhoXqdbi-E9IfoBOyUdJxNE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/VB/VBrY0AJQ4UumklLodISmaaoUei9W54JKxFDbrumcpco.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Vl/Vl2nLif4B8x0KKc9QATTc16jslqfbKskfojQ51Y4Qck.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WN/WNqQ4ZLP_b4dp6zGbZtXXAk4UdcYWbzZ-nGcnMd-u8A.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wj/WjJLNrIlGIF2sYrKIUQSY2Fw1PlJcnOVfuLDNXLZgZQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/X4/X4PvGzpGeoYHW6xSemGDUnwnkZ-Uo3Esbnfcfp2M2Nk.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XQ/XQzr-OT2IqjsNEZH1TipEfKyQ_sL402uA3gSdCggGi8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xf/XfIoh4ZsEQz0d1LvmzFyNcITvhPSzDr-ImRfJpgOQ_A.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Y-/Y-47WNn89wymyJnVGTSVgZPVlb-cYlSMBpk4bqdGIlY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YE/YEZqKOfAuwZN4OLpf5MLVhNelynzBXg8hrq1TpAkSmU.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zg/Zg61VSe1TEvQ4IdCO0lHignnjjWSmnJaySARsssoV0c.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Zj/Zj_VtwhoLUh_BnOCm7eBublrg8Bu7f5YFm_Q2hd4xmk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_0/_02pfUGZInnICL0NqtTw4CoXai65kSrPzTJxvCCkAUk.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_2/_2j4axpoaOsJoSYCOAOtBpad254AEpjHtefhOs_erT0.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_Y/_YFasuQITlCk6vrhfwpkk2og12WS3N_F7lmUZtVUot4.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/__/__Qns4V0DNowjKJYo9NaK9aHIZRTtK8Ycz8qeWVvLJE.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_g/_gxGBmFryCdg_CQwABTeFgKH2tPujvld0SLeGFpW3Cg.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aJ/aJyRmdRWS3dAABi1rS98jwS5zCU1VjsVDfFgWyfwGas.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bJ/bJIn2K7qu7eQwRIAe2Z4f4PZ7E46ixx4Fa1LWcKMxps.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cG/cGKnkujH4G7b0Vu9JxeM8QQnFhbV_z3FZo2AABmYAxU.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dA/dAadDFtaDD8sO043CHiVhmptgO5evEajZmnULj_ckIg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/e2/e20hDoLE5hZmwpGClWbUAyYeG0-T69GaDS_klaBtM6A.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/en/en07Sh-WehUCUK1s1eFHiHu-fBgLJrQEB3QCI3i5uPA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/f3/f3xTrta9LQmcoW8YjXIZf2CvCeszN32BHCf0RS2Lv3U.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/f_/f_opT1NOsPeHs5K8vnivsVa3E6VqUjJrYGLktgQfA0I.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gL/gLXG4DMgGF6kEFjjuqZ7x7uvffMSk37O9tSkGnZ5a30.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gW/gWVuHxhXvH0BjA9ocSEzTV2UQDu3okeRM0Q5PI5oGTA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j1/j1Sym8yTw5W6d7A9mpEOaFpdzKDIoVOqNuXnlWOBOIQ.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j3/j31awx4gOtjudJanwPL_OQMJOBFfmnqER2XnYhSnaVc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j5/j5ZE3ZjrZZ7o1sLag9EUb3MTibZLl0XgAR1xrUXAcYk.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jq/jq6bG7VIsqfN4bNaiQGbWlN9bHb5cD4pTiJrSd3IvEw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jz/jz4cWbST6-lNGLszY0ij6raD38Q2pyTpgu4JKjLg8Ok.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lJ/lJ_qtT9oEXE3PriaET0jxfLMoNqoPQuHs9g4C-LirOA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/la/laZ5XR-BuArXV5H4kLsNBk0pw5AEKMIg7NaTZOqnL3I.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ls/lsfIdSF6TMnq_oOJ5B-_bXEro_nj5ClvroVGuKDrvFA.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/m1qe9vfkz7YiX-yf26j0O05I15mQyj1MC-VkSXGiEkQ.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nX/nX4nHIBqHVrrTdY6ep8uRq1Dur-jNKMaXTXPalqWD2E.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ng/ngMhbUIHY0XKw7TXGIydyj-Tqexi86zyY3E6o5SGKV8.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nm/nmmHEr4NJoFfNWEhFwXB44iXlQEoks_aBh_XLsSIpzY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pV/pVP4GyeNA_33DFkHWMWeKJPrqkl02EG_TBXFCgEftJ0.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/q8/q8s5g4waPVpESoL9YPiQqot4dYfvnFUn7ZLD1yD0XR0.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rO/rOLPmFnkDUAU9jz-O8hK3LYNQe_Tw3SZmUFy7ueGeFw.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sV/sVBVaeb3dg03IdTCLWumMMZizqr8_onHqxTx0jnl9Uc.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vJ/vJnTCO2p6B4XzOw2R3Omldthc7MZC8oUO1VU0hUXQ9A.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vO/vOB7TrMH103gOaEu_cSqDrlO3VhXeIX-96CFQ8EYIEg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vq/vqfXI2UpZHpbHm31Tle6KLc-5BEMS6xXCxcK5_dvby8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/y5/y5dp_M-4ZW0BBLg3D7U0-x71zp4RI56JwlFDir07jE0.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/y9/y9Y4JATGYetpQ_obYFuFbcvHW_4fRuO6gswG3ioFm1Q.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/z4/z4hJMFvRQOLjzzulDnO6MzJ63Wv8TNKo_dpfLHoNQmc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zf/ZfThckqFXByK-D_vUjIGu_DgEIs2cEV7-rsKCj3-rBM.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zf/zfjZwwGs8CgDA2YfWO6OIQWr1QfP7zTK74Jq-LITkps.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zm/zmIBNHqL9gZzp_O_XBsw-ll7lZhoJw3Y9ZLOrgjPjPw.cache +0 -1
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zx/zx3gYz91hgmr0JxT67PC7jsNVdK4CFXFccG7SyTa7Dg.cache +0 -0
- data/spec/dummy/tmp/restart.txt +0 -0
- data/spec/dummy/tmp/screenshots/failures_test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints.png +0 -0
- data/spec/graphql/static_validation/rules/required_input_object_attributes_are_present_spec.rb +0 -46
- data/spec/integration/tmp/app/graphql/loaders/record_loader.rb +0 -17
- data/spec/integration/tmp/dummy/Gemfile +0 -54
- data/spec/integration/tmp/dummy/README.md +0 -24
- data/spec/integration/tmp/dummy/Rakefile +0 -6
- data/spec/integration/tmp/dummy/app/assets/config/manifest.js +0 -3
- data/spec/integration/tmp/dummy/app/assets/javascripts/application.js +0 -15
- data/spec/integration/tmp/dummy/app/assets/javascripts/cable.js +0 -13
- data/spec/integration/tmp/dummy/app/assets/stylesheets/application.css +0 -15
- data/spec/integration/tmp/dummy/app/channels/application_cable/channel.rb +0 -4
- data/spec/integration/tmp/dummy/app/channels/application_cable/connection.rb +0 -4
- data/spec/integration/tmp/dummy/app/controllers/application_controller.rb +0 -2
- data/spec/integration/tmp/dummy/app/graphql/mutations/base_mutation.rb +0 -8
- data/spec/integration/tmp/dummy/app/graphql/types/mutation_type.rb +0 -10
- data/spec/integration/tmp/dummy/app/helpers/application_helper.rb +0 -2
- data/spec/integration/tmp/dummy/app/jobs/application_job.rb +0 -2
- data/spec/integration/tmp/dummy/app/mailers/application_mailer.rb +0 -4
- data/spec/integration/tmp/dummy/app/views/layouts/application.html.erb +0 -15
- data/spec/integration/tmp/dummy/app/views/layouts/mailer.html.erb +0 -13
- data/spec/integration/tmp/dummy/app/views/layouts/mailer.text.erb +0 -1
- data/spec/integration/tmp/dummy/bin/bundle +0 -3
- data/spec/integration/tmp/dummy/bin/rails +0 -4
- data/spec/integration/tmp/dummy/bin/rake +0 -4
- data/spec/integration/tmp/dummy/bin/setup +0 -28
- data/spec/integration/tmp/dummy/bin/update +0 -28
- data/spec/integration/tmp/dummy/bin/yarn +0 -11
- data/spec/integration/tmp/dummy/config.ru +0 -5
- data/spec/integration/tmp/dummy/config/application.rb +0 -30
- data/spec/integration/tmp/dummy/config/boot.rb +0 -4
- data/spec/integration/tmp/dummy/config/cable.yml +0 -10
- data/spec/integration/tmp/dummy/config/credentials.yml.enc +0 -1
- data/spec/integration/tmp/dummy/config/environment.rb +0 -5
- data/spec/integration/tmp/dummy/config/environments/development.rb +0 -52
- data/spec/integration/tmp/dummy/config/environments/production.rb +0 -88
- data/spec/integration/tmp/dummy/config/environments/test.rb +0 -43
- data/spec/integration/tmp/dummy/config/initializers/application_controller_renderer.rb +0 -8
- data/spec/integration/tmp/dummy/config/initializers/assets.rb +0 -14
- data/spec/integration/tmp/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/integration/tmp/dummy/config/initializers/content_security_policy.rb +0 -25
- data/spec/integration/tmp/dummy/config/initializers/cookies_serializer.rb +0 -5
- data/spec/integration/tmp/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/spec/integration/tmp/dummy/config/initializers/inflections.rb +0 -16
- data/spec/integration/tmp/dummy/config/initializers/mime_types.rb +0 -4
- data/spec/integration/tmp/dummy/config/initializers/wrap_parameters.rb +0 -9
- data/spec/integration/tmp/dummy/config/locales/en.yml +0 -33
- data/spec/integration/tmp/dummy/config/master.key +0 -1
- data/spec/integration/tmp/dummy/config/puma.rb +0 -37
- data/spec/integration/tmp/dummy/config/routes.rb +0 -3
- data/spec/integration/tmp/dummy/package.json +0 -5
- data/spec/integration/tmp/dummy/public/404.html +0 -67
- data/spec/integration/tmp/dummy/public/422.html +0 -67
- data/spec/integration/tmp/dummy/public/500.html +0 -66
- data/spec/integration/tmp/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/integration/tmp/dummy/public/apple-touch-icon.png +0 -0
- data/spec/integration/tmp/dummy/public/favicon.ico +0 -0
- data/spec/integration/tmp/dummy/public/robots.txt +0 -1
- data/spec/integration/tmp/dummy/test/application_system_test_case.rb +0 -5
- data/spec/integration/tmp/dummy/test/test_helper.rb +0 -7
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/00/24fb8ccb33b027 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/00/97f6c0b7d0dbca +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/00/d1b7b8737a62a5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/00/e8749319fa5aa0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/01/0734068ebe96e6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/01/1a894b62327fbe +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/01/89fa55f437c5a6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/01/94b4754fd86712 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/01/cff0a9e6304f4e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/01/f31b6c1990b914 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/02/b0b2253e42e7ed +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/02/bc6c977002de41 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/03/7e6c8d510221bb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/03/d68d1f1805aab9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/03/e25a96b491ce1c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/03/e96ecb721695e4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/04/0fc5f5bb69223e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/04/39369deafb5633 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/04/61c82045200b76 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/04/cea60533c530b1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/04/d4a6982b68ba29 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/04/ec6f1b140dd884 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/04/fdee96218e4c01 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/05/012484110bd336 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/05/2468bf847fc0be +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/05/d44cc704041feb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/05/e07cfd4bddc1b1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/05/f51d5ec8aee1d6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/06/15917d25f04da2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/06/20d8c75f4a4a24 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/06/52a33f808849ee +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/06/7dd4a546388bc2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/06/b88c76623f0383 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/07/e28806c1b592cc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/07/f307c75f3490e4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/07/fd8ab0785ec52c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/08/d1922729710a35 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/09/420ada5d4ecc98 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/09/81cff36024c7d9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/09/8389899b34b144 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/09/b3053b58bb02cb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/09/c1007247fdcee0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/09/e226b0b857e526 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/09/f9235c3b8ce224 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/09/fe50c9c5876595 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0a/0a612bb1fd3b90 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0a/10b7d3fc113c58 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0a/4abd131b6fc7dd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0a/62be7ce47576b4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0a/6a5dd3c0234b6b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0a/c30a4ee034f6de +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0a/ee62cffe8f7387 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0b/6f3bf9627fdb70 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0b/89ee5e6a0fab54 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0b/c01250c507c45a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0b/ce0e22e4fcd82e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0b/f8650329955a39 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0c/0975e4d755700d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0c/611eb12bf7dc07 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0c/864028b74c65b5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0c/bc951843bb7dfd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0c/c195d8f81af9d7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0c/d4b8bbd40ef67d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0c/fc6d38be37f563 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0d/02c581826fb7d7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0d/3172f1712ff342 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0d/3d27d296b727a0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0d/5848b010d5e687 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0d/a26f749851cc65 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0d/aec545c24859ea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0e/9305040cf6eea7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0e/bbdd1707b4aaca +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0e/cc394606faaa15 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0f/02c08b53dc4c96 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0f/385e79a4c3ffca +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0f/73a169999fa32e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/0f/bae49bb0242611 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/10/80c5d1cdb05c78 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/10/e60b643dbb5d48 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/11/031f984781597f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/11/4d8d1e6b8f3f3c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/11/6d0e4bcf0961a9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/11/970e07dffc6692 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/11/a1f24d54a0a406 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/11/ab2675d290f65e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/11/b54f5b9cc9d00e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/11/e50c3f9e878bdc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/12/8bb5c2eeb46a3a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/12/af92731e11d58f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/12/cb73aa8c8bfe9b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/13/06ccf030a75bd0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/13/4a74b8513caf32 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/13/5c35cf41a81f57 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/13/80e9f3d021dac8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/13/def5a67d30ae66 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/14/2fee717df8546e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/14/9b26dd3b8a0e22 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/14/c65cba395a7012 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/14/e333a012aa4430 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/14/ebc008a3bd94f9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/15/4af160b4cd8484 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/15/5bc6478d827a88 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/15/6cb5f333a7754d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/15/9206d2fe28f191 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/15/b6c28ac62ef2f9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/15/b9ffdf27ce0a9e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/16/2c821472993a8d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/16/71f55a32c4c778 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/17/414c029b3300f0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/17/fdcf1e1ab706b9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/18/0afcc01f3a145a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/18/26cbec2151eeba +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/18/396b92975f401f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/18/41aefdf3fd9a02 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/18/cbe4fe1fc57532 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/18/d097005cd56c76 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/18/d58864495c174d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/19/38262e4dfd520c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/19/563173d88ffb06 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/19/98eeaee535be14 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/19/ddc48435796029 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/19/f6ee7c367baaaf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1a/14154322e51c86 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1a/d8d0507116849a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1b/3aa4a762437a40 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1b/4ad88cfb4a3709 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1b/a0ab4315724bc5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1b/b801d8435e67fb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1c/3f36f2016b6c7c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1c/984fd4cf63a4a3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1c/b6ee4f1c3eaa64 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1d/23be4f136a0714 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1d/575862ca92377c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1d/e2febbb5c19e73 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1d/f3064b619d05fb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1d/f43c95c7a99f87 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1e/38cd9cfd3e4a5c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1e/4e5723f84e6b50 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1f/37c9a01f532bbd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1f/65da6215a1288a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1f/b8b814da164cd9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/1f/dfff7f03a6894f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/20/0e6c6a13af0565 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/20/0f06d0b26425be +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/20/491c44d4b07c39 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/20/a5c22566e3e9d8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/20/b1a7ae51f2ec56 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/20/be9aa8831584ef +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/20/cc90021ee7e909 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/20/e3eace3343327a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/20/e84e58dca14008 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/21/0d2a6cf2d9373c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/21/5fb6e9557577f6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/21/76f116e1b19d50 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/21/a78484493b233b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/21/f361c2aa1c5a9f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/22/0950a217f8ed17 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/22/3cc147b7aeafce +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/22/cf123cdf763aad +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/23/002d49bf4d72cd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/23/61f761b001f267 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/23/7a72033f251c31 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/23/90adb511db4303 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/24/0f251e0bb2cb72 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/24/2d195b5487a8de +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/24/413ccde9f17039 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/24/66ccdedd2c64f0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/24/c048d1774f9a1a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/25/1f53831f3e543f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/25/2823ca6f2cf295 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/25/823dfbf09ec48f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/25/e854bc7bf33575 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/26/12d72162d0bcd5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/26/7cfa827fc97dac +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/26/c16c74cd09bb18 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/27/496ef805513143 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/27/4ff93be76b1be2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/27/b4130d530c27e0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/28/27bf82eb8e905a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/28/5942fc5e46469a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/28/603c3bff291da4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/28/7b1bdececa4893 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/29/05c81709161e6b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/29/39119a58db613a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/29/57b21fb7645106 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/29/a1e49e4ad28a75 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2a/ad95d52c8a47ca +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2a/b1c2e7b829ddb9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2a/b4c257e5004ce8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2b/b6e476c45b3431 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2b/da91face94d7a5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2b/f626972781669c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2c/365137bac9aae8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2c/5dfaa3deae3796 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2c/bc36cd87c40079 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2c/cce3cf19887133 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2c/d71a048aae690e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2c/dec950e7f0eb94 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2d/1041cebd4dbffa +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2d/176e0bbc4bf456 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2d/64fdb6d2ada76d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2d/755599a6a85e35 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2d/b691b5c846ba48 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2d/fd0bdb536e8afd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2e/38d2206225d749 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2e/4d7518f4a080d6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2e/565b724ab6b11d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2e/99101dcc85ff48 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2e/a4d569542e6f3c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2f/1136047cbe61a6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2f/808ec38262531e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2f/aac1c5c0961ce1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/2f/ee01cc1b97d8c4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/30/2d37e1e152b6e1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/31/0c50d99119e3e0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/31/d4065f6341dd79 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/32/162b9dff1f8af1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/32/2d78738eeb27f5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/32/a167e61bb09590 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/32/cebd43066cbe5d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/33/1294bd346ef13e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/33/1fce24d7009457 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/33/bd805f963d96a8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/34/113654fd05fe49 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/34/348de72f225f63 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/34/44e91f1d91fdf1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/34/5d99396b4ff5ef +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/34/695e1ecf35feea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/34/82da8210c774b7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/34/b1f778ad0ee03d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/34/d55614ce00a0c4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/35/83cf1d0c2e49b9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/35/8c7258390ad013 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/35/8d74c3f64ba595 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/35/e9e6b16d7da0d2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/36/00fc8e8852e839 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/36/28abd247c97deb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/36/3506ec4d5cac59 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/37/0e69bc68656410 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/37/49340c5e14f96c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/37/4ccec398700129 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/37/a67a4447528cb3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/38/048aa92a817a19 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/38/2f3eb6367567b8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/38/419633868abf5a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/38/7a63a3a3238e55 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/39/02a99878e30970 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/39/1f3b5d8556e8e4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/39/967645c35b0e25 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/39/d1bcd4efabd929 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3a/232d4f34068e1d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3a/42683253111dc1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3a/f0922c27aefe66 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3b/52f23a9a864ebc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3b/8a36304cfcf766 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3b/ab2189a30c2674 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3b/f0022ab2c0adfa +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3c/0054d4c3ba40d5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3c/183c00a1eb079d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3c/3209501b0111ed +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3c/39f3834681b551 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3c/a2b7c173447350 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3c/ad392aaeb70812 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3c/c449775792603b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3d/1f2e350bfa0e4d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3d/70770adb56c48f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3d/b9e582f54c126b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3e/352491af683145 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3e/8429fa050d488a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3e/9b844236d7129c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3e/a81180f9968e2a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3e/de02b0735b1982 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3f/1c0550d6507c6a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3f/368f26c275856b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/3f/fb1092dd6e2869 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/40/390dc323dc866b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/40/3987f9998d875f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/40/553df9d06fd842 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/40/6162b01495e1dc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/41/08c047747f9631 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/41/1d2a126b46da2c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/41/3e51c64c48c4a7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/41/53b7bdd12e6973 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/41/6aa974825bc6fc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/42/0cff546db2cc1d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/42/68f1900e95af2d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/42/e2b8f7d72468b6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/42/eb1837163960d9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/42/f65e06b94cc461 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/42/fe720358486f32 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/43/20605dd6e9ad85 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/43/3c1725df025033 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/43/5708fdd2669400 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/43/5a05d0163e76e3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/43/8a50199edc52c7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/43/995f64d04b0b6d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/43/be4f44994bc3c1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/44/046bbb2fea2a64 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/44/46b4786d94f643 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/44/506b87b8f0a831 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/44/5973a2b014b33e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/44/7fde2540140120 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/44/deab349e96cbaa +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/45/67c011dd4bc206 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/45/c0225e144a6576 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/45/cdbcf16b30a66a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/45/e8d509653d3e46 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/46/0769919e07c84a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/46/2368c19ffcc5ac +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/46/636373703c7149 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/46/d9615e016aa611 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/47/3852a3a5c61d69 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/47/46bb7b866a3ee0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/47/86c50fa7149ec8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/47/935baf7f6c4ab0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/47/9f29cb11a80725 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/47/a7820e4c873928 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/47/e037f13f0280ea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/47/f27e726150d638 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/48/59ac5a1b1bbfa0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/48/6ae55a2d069e3e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/48/9b1df92b167f5e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/49/1bb5a4ab120263 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/49/39fd15f57e20e7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/49/b0ee5c40a1752d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/49/b3490e49c8931c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4a/122102e8d8608d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4a/1855b5e9b172ce +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4a/3ac4c2eec83dce +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4a/70afbf21611e46 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4a/a54c7dd3eb5e77 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4a/e18ef524e8c4d7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4a/f49ea96cf98600 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4b/8602e51084a245 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4b/b4645577615233 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4c/0a1f55458ca298 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4c/2f557746de159a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4c/4610a3238779de +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4c/de0e5948c9bd13 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4d/5594abce75a672 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4d/59aac74fbfbb1a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4d/5eb7b792842208 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4d/876c77bf2fddef +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4d/d3df04efdf32a2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4d/e3022cbe3e6445 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4d/ed7ef3b96c2c08 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4e/5811527acb409a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4e/696cc19365178d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4e/e73558fcf62fd8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4f/25c611ea552f93 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4f/40e066a9700317 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4f/970a6295168ed2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4f/c6947ab9bd1738 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/4f/ebd16bfbe880c9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/50/09f5bcbd06e3f5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/50/4abd37cf30a2cc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/50/5a6ca3398c4ad3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/50/93df82b7dd37c3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/50/d50f45c9c9ad3a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/50/ef1e56b0697c0b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/52/14e5eb9412177d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/52/1d354fbff1b224 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/52/8eedae5ac35f86 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/52/d5acdeae8885a0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/53/28f035a7e4471b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/53/3f8e353a130fbd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/53/483edbad55df95 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/53/903e049ba192fe +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/53/a148d4ef595666 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/53/a8ba96192f66a4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/53/d103660b6fd555 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/54/17a9dd79a20ef9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/54/5e070a30e9b1d1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/54/efe160c66a2436 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/55/279f5d14e6ddad +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/55/5dba917f534c11 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/55/5fef976d852c8d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/55/e2768acfd5f639 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/56/56c00d858fdae8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/56/5e00dfe63d9f9f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/56/6782ede9c6493d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/56/f0677852943ca2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/57/0541456efc8f79 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/57/292a94bfb83060 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/57/323d8c62642e92 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/57/a6798cde48b21c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/57/a8c328b49f5cfe +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/58/328f5fa4f73362 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/58/39ce25d29f8f17 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/58/42890564d291e2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/58/45c216da8ee0e8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/59/5fd576c7620332 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/59/76eb657b2ca036 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/59/87675a7b0b2ad2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/59/c092b60be946c5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5a/4e10e741098a1a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5a/63511aebf0e1dd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5c/27621c4ab4fcaf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5c/6d0ad484497933 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5c/8ffaddbe2fde71 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5c/9b84c5bd1eae5a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5c/b00bc8271de574 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5c/c571dd2456b3e3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5c/f42cce4cd6138e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/20c541648449bc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/353b3341ad29bf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/44ce10904dd1e5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/509ddf141cf706 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/8e2d54cf18b2af +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/97917ae7056959 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/9a69cd0b1a10c5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/9e4f32aa30f142 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/dd01f797be2e7e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/dee2b032706df2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5d/dfc0e65e52a569 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5e/0f10f664edfc07 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5e/511bb6ac809d23 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5e/ab6a2602bd5743 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5e/ad1085ae5f3fe1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5e/fe9ac24ec5489f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5f/609fb8c2613e5f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5f/6136b493e18d9e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5f/a84fa4c87ca633 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5f/d4f72ee64eafa6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5f/d8cf8153144fc1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/5f/f392345154bce7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/60/243bf780e18b04 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/60/287d9c8740a291 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/60/521edadd4ccc14 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/60/9e5e8d67653edc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/61/503f81b2b03afb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/61/72d1ab52f5f94b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/61/7e6e41d58099ca +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/61/ecdf7f472831e1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/62/aab91fbaf197a8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/62/b4287c8ded7066 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/62/d1bb969c2ad559 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/62/d3da0506ec196b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/63/755bcc5c9749d4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/63/e99a0d32a4f8f4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/64/40a199b8062a43 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/64/815fe31e755e2a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/64/ad1f880c99fc61 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/64/ea81f45bf17ae5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/65/589d9669cc61f6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/65/6c588497bfe7a3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/65/bd811cc2556dc6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/65/c553890c3eab50 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/66/003dc4e661f36f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/66/406adb3442d4eb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/66/4c0e53a7f6a681 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/66/626e61ca14deb9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/66/6af96549e6f53a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/66/bc52f42ba8482a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/66/c9899d36bef7fb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/66/de497093b0e18b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/66/f6e5bc93db86b3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/67/3924b5968f9b84 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/67/5f07b20a8d318d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/67/95f9e8ebcc159d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/67/9b820d9854afd8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/67/bf6718e5a70109 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/68/564e6efa3192a7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/68/5938091786f1cd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/68/6826e20ea3c6b1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/68/a64d50ec9f96af +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/68/c6d99ab50a7d6c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/69/127c6dcdc0aa55 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/69/b68f3e808a5f99 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/69/c5d6c1222b1f2d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6a/2598ec5593f094 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6a/6f201a5efcd7a4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6a/76ddec8a9c88b0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6a/81f1a01c53686d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6a/91991c5952e4bb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6a/f8c915b50fc7f8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6b/4a164d5f63afda +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6b/94f0e638f13904 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6b/bab5d63e604d10 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6b/ce6c1dff2f87ba +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6b/e97e3ae2d752c8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6b/f72439d1c0f0e4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6b/fa80099d3a08ac +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6c/60a0b5233e8fe4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6c/dccd3cc48d3faf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6c/e926b6dac921f7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6d/261980da4b714a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6d/3f2e9695413e3d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6d/4ccb820b6bc524 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6d/7ffb4d0ed9280d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6d/83df095731ca1d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6d/a813034c98682c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6d/b6866b23b7d78a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6d/d85e8d2828ff19 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6e/4244899c8510b3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6e/438b0b06181b96 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6e/46acb50761c14f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6e/8d0d5e90620404 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6e/9e0997c721675f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6e/a4be4b285c2442 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6e/bac9a0ca9f9065 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6f/2cbbaef8c6232d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6f/66a71090a7a744 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/6f/6a63390e6e8ec2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/70/fb42698f36f32e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/71/41af3641271fa8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/71/5838b1b979f84e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/71/c5164eeeb9184b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/71/d23ac2de10d0bb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/72/3735fdcabad44f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/72/375da3c1bc19ea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/72/6cfcab62d3cd4f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/72/704b171e91c2c6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/72/7169dddbefc4e1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/72/7f0eda0679fcbd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/72/c5bbf0a9db873d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/72/ef1eff02051c23 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/73/7731a08c44aed3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/73/87bddf80e6598f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/73/a4e83a0d43e666 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/73/acc70dead786c9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/73/dbbfcff42543dd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/74/14c85d9f59976f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/74/152a9fa5ae38e9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/74/97d58ffc26f28e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/74/c222b7b0c024f8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/76/9b3482c84f9159 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/77/a826c94454ee90 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/77/a8ea1e2b58e542 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/77/ad073814452a4a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/78/2bcde7fbe4188f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/78/2f82368a31e16b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/78/44f92ebea15223 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/78/7558d0bdcfacbd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/78/bb642668f50d4c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/78/c2789165db392a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/78/feee6e0f462fce +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/79/06263946c04338 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/79/1779dd400d167b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/79/34ea106837c6ff +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/79/9a3451a59aff9f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/79/a4526483244edb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/79/ac7369a2819204 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/79/bde3a57cc67cdb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7a/320f14d12ee578 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7a/3c15a8a8d41b3f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7a/5a550d3da2f4b5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7a/6aa958ce138728 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7a/8632c15683c766 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7a/8de2c4ff384be7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7b/4d5a19eab8a804 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7b/5ebe1b2b6aa0d6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7b/9acbb8aacb2bae +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7c/7033d64ce23c8c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7c/85c1e2f7ca1fb1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7c/9346893670206d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7c/df91fa86d93c64 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7c/e2cf92c07ea612 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7c/e78838e22eba99 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7c/fd67f559f97271 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7d/2d9e7b29f009c4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7d/84a2b82a160e51 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7d/8efc2b3e074480 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7d/a39dc1d3642428 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7e/00748e59fe440d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7e/4b75fdc2cb7f0a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7e/4da1f897c6978b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7e/62a927c8697732 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7e/724e76b90ae874 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7e/73e4d15ed9f1fe +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7e/a460a21e4b533d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7e/e2ec0b00d6bf04 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7f/12ead2eaf1fe3c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7f/1420e016a73ed4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7f/1768e71cd43eb5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7f/2f0d31034a72b7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7f/4d35c3f9a92e50 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7f/9889b8729fc9c8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/7f/f09823ba181204 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/80/57248dd3b87661 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/80/ccd5288822bd4a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/80/d9a563e4dc60cc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/80/e78465a6c44466 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/81/2f85ea65648b4b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/81/5e45cb109d00c4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/81/6b10e219350c9f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/81/7690b688d38fc8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/81/84d390689ffa01 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/81/c59eb5a7657674 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/81/d399d191f81ea2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/81/f183837e939bbf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/82/359e68c2b5dd4b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/82/672f8609a8bf1d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/82/69347cc392296b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/82/9527b9e32de786 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/82/bfadfdd421b2b7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/83/2e1d045dd22d33 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/83/484845de5c6e8b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/83/568f7dcee80915 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/83/947bcb76b3dbc3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/83/cd3c9a9162ff0e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/83/d75f4edcd6d120 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/84/07d2f2cbbac4fb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/84/a9a8bbf97b7130 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/84/b1b63731ee3ca4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/84/c2d82ea2b55b98 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/84/c4143684be24a6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/85/53803fa2e7ef20 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/85/b365e1b8b108ea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/85/b7c16e9383c765 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/85/de00818907d22c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/86/15436f82f4b647 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/87/901203fe1388ed +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/87/92188281167c01 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/87/c185cb7180b938 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/88/6bc79663d7759e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/88/b374a5443c298c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/89/29a58e457cc87e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/89/3d9fe9efc133fa +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/89/420ce11d6d0653 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/89/765d65629878e0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/89/a6bf9a9291cc2b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/89/ee33d8bed542c8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/1078e9f63ecdf6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/30985737fdcfb9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/4be5b0845cc07e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/50053d25a4a603 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/76151f30e28088 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/89758278868f6f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/a6c2226da5c1a9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/ad4d22d75e3714 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/ca46981d7f32e2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/d230218e185e6e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/dcf15dafa4a4bc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8a/fce8362f2e57b2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8b/58045bc9796b9b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8b/5bccc1e7b37260 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8b/6f9c0d8f0fd442 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8b/8fca6c09992835 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8b/a7db9931725eba +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8b/ba72c3b90f140b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8b/e79bfb5c546a07 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8b/ed610e925290b8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8c/064af578c772a9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8c/5593db13dc1563 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8c/6ad297b4be8c4c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8c/959537eeeeb9f1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8c/c854ec480556cc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8c/d549e58186d9dc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8d/039c8a27b2786f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8d/156f1765a922c4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8d/158f6209fd73ea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8d/a4d46c8b5c5400 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8d/bd8ea26bb81f6a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8d/c5fe8024e39ce4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8d/ca73c9f573e896 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8d/e9dda5674eff5d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8d/fc41ea1a51d284 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8e/54ee64574fe212 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8e/6cd008f70a304f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8e/6f7af850b2e0de +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8e/a9d220bf3af795 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8e/ad3ac39ce3553c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8e/d1d83ef7b4c1ec +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8e/e93aa1c6deaf91 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8e/ebebcb6dd797bc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8e/f7df60e95b5dd4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8f/7ae7a3580f9209 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8f/a9e9d7240b3800 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8f/beb913efbc7dc1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8f/e725b3e44bda80 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/8f/edf5e234ba7f54 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/90/37295a147fcb39 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/90/40ba3a0578fa35 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/90/4a7789cdcd9d83 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/90/6605ffc2619f94 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/90/675f60a3725855 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/90/6dd20c285cfe49 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/90/868eaad30c98ad +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/90/bf74d5fa22a2d3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/90/e5c8e74ca1ecf4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/0b521e8c235adc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/146ad765114be4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/14e9ca0ef21941 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/304f3efe0cc25f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/36a6d149590903 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/5febc1d1668dcc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/623f9aa5beeda6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/8278d2ec3ebe08 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/b337dca1ab8bef +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/eba95cfa8c53fe +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/91/f66bfccf6e0735 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/92/0e935ad4539b55 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/92/1b43d84637da5a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/92/cb453b7fa7c6fa +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/93/29ce41b57fc0f9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/93/50c1c857d0d29a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/93/75449d2778bd9d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/93/a4ae26c0f8fda3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/94/14cf62479c015f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/94/3422e88369486c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/94/5ea44c85d591f9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/94/c7f0420104752e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/95/05bd556a201a54 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/95/2cb566366d8df6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/95/8a003aea40a577 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/96/192334b9a204b1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/96/2df854eb22921a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/96/48dae47395da7b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/96/5e4d006f9eef7c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/96/9d011901602097 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/96/a5427e9a98a404 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/96/b7d4132bd15c38 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/97/20cd9ebf4dd252 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/97/25f4d4fe2b9904 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/97/34cf1ff391bd1f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/97/992c07b740fd16 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/97/bae350146e5f47 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/97/d2fa814aa0ee5c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/98/232aa878d563da +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/98/24dd5f2b327e62 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/98/9f506092c18de2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/99/22548656f7fbed +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/99/b9266b7244f1aa +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9a/002eaa45d555d7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9a/5da79cb4513d9e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9a/700722b68ddd39 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9a/70f1ae52772ffd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9a/a08a641c60f96b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9a/c3cf40275e0294 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9a/d037b55145291b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9b/1e363a6e226db2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9b/481d66e56c8d5c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9b/97bbbddd3687e7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9b/a287b1b0c9c37a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9b/add8749b9098d7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9b/c34243f53a54ef +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9c/2181fea3999482 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9c/67952a4d881fd7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9c/78bc4056eb6c4a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9c/8711c5097b8371 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9c/aef0c2e10fff96 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9c/b0b65bf1ce2f62 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9c/f63c6bbb3cba37 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9d/1f0538520b023b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9d/8403150dc58e91 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9e/37fcad2ca4b463 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9e/810659e68ea398 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9e/b9575399ccbde0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9f/0f8d429a03cd1e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9f/5a1164262a980b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/9f/822abae5514c65 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a0/333fc0f4e9b579 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a0/3efa1bd575fa00 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a0/41df00301430e1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a0/47b1ea00eacf82 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a0/72bb07b9716e14 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a0/7fcee9c2bd0615 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a0/874f5632ad1366 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a0/d853838a5f5e3f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a0/faf79fe9a9d1f9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a1/4ef8b0d4bbcb8f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a1/b44b51af30e8a6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a1/d1a209d620df7a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a1/f24687d454a8e0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a2/2e5968ba36f18e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a2/311bac75eded89 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a2/42d0ef6c534d70 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a2/58b495e97e8e48 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a2/78691ec271e415 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a2/80fda8b3445e61 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a2/8f0621d173e012 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a2/9d7ff86dc89378 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a2/9dbaebd4f5ff5b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a3/0bf64a5f1ba714 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a3/2939320f34bf5b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a3/35c62c1b629000 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a3/7471b3d920fd66 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a3/bf2df0746e3baf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a3/c4e20a65707c5c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a3/f21607d9155479 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a4/27a0543c4061ba +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a4/aa18bae0d498ed +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a4/adf051c939f938 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a5/5c672f7f99882a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a5/caf02baab1a89b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a5/d2a66c34fa2acb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a5/e2415d710a68e5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a6/4c1c6ea2c433df +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a6/69dc58b964e28b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a6/b799c770d142dc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a6/e582c2aef823a6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a7/0d8d1b95ea323c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a7/0dc33d0b9492db +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a7/3ca53cb1f6dee7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a7/45ff6f2b12d628 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a7/8506f899bfbb70 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a7/88812e56b3b6fc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a7/b37cd689140c1f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a7/e42b40edd223e9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a8/284906319633a8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a8/2e6e6e611feda8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a8/dd61ea35d8ec84 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a9/4e3307c633b039 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/a9/934bcbc56e9ee1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/aa/02eb651046054d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/aa/2d87651ee9d09d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/aa/330a794493a9ca +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/aa/4a06d850c9d7cd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/aa/531587b29680d3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/aa/a912f4c4e20f08 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/aa/b10cd813112ff6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/aa/d1f068acdc0053 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ab/0547a67871b89d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ab/0a0fa27fe5daac +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ab/49d29a841f1b0d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ab/6768d1c482adae +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ab/8fcfd26acf36bc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ab/bdac67c2f64d0b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ac/316527916d3d92 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ac/35c27a572bd7e4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ac/60db12ddf3772e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ac/6d5b90d456e10e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ac/8bf8355f61e9ac +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ac/d54bd464ec0eef +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ad/09d49483935ce2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ad/595c5d15fdfaf4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ad/b21bb8cecd7d58 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ad/ec0e654bfd7766 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ae/126585529a27a2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ae/3c0fc10a7e1f17 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ae/8b2faa7fd983a3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ae/92846a9355c1b7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ae/ae40cbaddd85d6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ae/e8022544e67031 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ae/eb3cd6d3b603d7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/af/3c78b2b6a7dfc6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/af/9067a251623f26 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/af/b2c5c2482c96ad +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b0/11847e264bcb8c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b0/23ba3d4b411ca8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b0/4db01388c5f78c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b0/905b85657b40f6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b1/5b5c8908656362 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b1/6a86be84e5d628 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b1/939977748d38b4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b1/b4e5cf0cc9039b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b1/e3d6b462bb692e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b1/e926dd7c87a701 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b2/1648034e49cabd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b2/16a3f97a102aa5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b2/16d80a726bbba3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b2/1d5c08ac0e3b91 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b2/3010ab9db6be21 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b2/3c2272cd58cf75 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b2/c4653608480af4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b2/ccb45128c1e34c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b3/235eb5070f3a6d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b3/59e7efe4aee9f0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b3/832e08d3cc868b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b3/8f4831d0736abb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b3/a12b59f445a0a9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b3/e11b7023cc8abd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b4/115b76986d5046 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b4/3a1bb84f869369 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b4/508e99a42095c7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b4/a5de9df5af0f41 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b4/a6ddfbf8461513 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b5/a6db8f2e78e208 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b5/ab0306e156be0f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b5/c4b097e491ae6b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b5/e6e5b7b746758a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b6/0e53680b46bf94 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b6/4a62105ce3557b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b6/8dde6ea40fc5b8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b7/14705118cc0711 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b7/1c7ac5b4090eba +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b7/3a41dccf257a10 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b7/5523bc02068b93 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b7/6fbbdf7b9eefc6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b7/d6e027d0234bc3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b7/f72b0419d7d2aa +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b8/3a14059ca308fc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b8/72c4fc6ca03ac9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b8/dadcd7b1205dc5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b9/009c533c705f09 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b9/1cc465c768c9c1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b9/358fd7b41ce3c8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b9/4542d32b938c80 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b9/6a87d668cb69ae +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b9/8e773a4cfd9aea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b9/904ee4e6f7e8ff +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/b9/abcf085fdffc4f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ba/5a2fa1d553379a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ba/7951c52c4e9fb3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ba/b51468aac9060a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/bb/8a27aa2b6f40e3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/bb/8ed23381828d93 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/be/261203224900da +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/bf/0ad77dc06f2e01 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/bf/17718a3b30cdc5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/bf/29790bfc9a943e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/bf/3508851a02e152 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/bf/568ccba7cc9132 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/bf/5c0863dce30c40 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/bf/9e918ace6da0e0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c0/7ea7d982b0f0b5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c0/abf0a537678211 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c1/15de70ac5d9b15 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c1/70c07565a8657c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c1/d5c837c21da7df +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c2/6d25d4de241912 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c2/8d080ac1e82c3f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c2/af5a5127532b7d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c2/c707927cbd870b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c2/d35b38a3854e01 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c2/d4ceb63bdcbfaf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c2/e2edcf31551905 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c3/7f9f09606e2543 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c3/81314c640a88da +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c3/9e35b4c091ded8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c4/34dbc87738ec52 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c4/92fcd9f6ca0776 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c4/f135f274fa482a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c5/07df274ada7351 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c5/20b6e7fbabc835 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c5/3d13f5eb6ba5fc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c5/5b864b2b346c81 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c5/83ea14b61a1e11 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c5/e8608b5c437523 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c6/0fcfbcd0167f3f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c6/300ace85441758 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c6/3012a8fa662494 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c6/a62d0fac81136f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c7/a5ac293fbdb9e8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c8/301d10738cdaef +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c8/9e2b36d57c6f95 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c8/a43310aa9c60d0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c8/b3019bb339a1f3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c8/f50d488a84e6b1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c9/69a5053a4b9253 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c9/a147fb4441adbd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/c9/fccb19386c9bbb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ca/057b6c9c853654 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ca/6631d993155c75 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ca/9701b9af8f79e2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ca/c3fad1530a538e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ca/d7055ab57e364e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ca/d814325d599972 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cb/84bff383441a0e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cb/bdfe50c248c31c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cc/175ab7dbcd6d1b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cc/67cafe670f0e2c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cc/cd5dd86dafd303 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cd/2b22d283d10754 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cd/6aa3ef6b547f75 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cd/6c9878f1bcc04b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cd/712326ca9e6d49 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cd/8735ac0559e510 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ce/1f49b7406ad294 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ce/203e4829cf33a5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ce/3569895b8887dd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ce/3c901c56f38d79 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ce/7180e44ad9ce14 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ce/87bd459de6b959 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ce/8a27eb7464ff18 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cf/28ed57e4f2e026 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cf/8f39b05e88ca7c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cf/cbe6ec101cf5ee +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/cf/dbc31a2273b64d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d0/4af958033f6b95 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d0/5d9feddd9fe4a9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d0/d44e411656e750 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d1/85c405b140c67f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d1/bada5bd3c99d44 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d1/d0f8a4181d9b4a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d2/39f3e8c192ded3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d2/4a28ec8b3c409e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d2/8923a2f6b16b20 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d2/8c532fe5a88d9f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d2/b08ad2f903bc3a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d2/eac55d9bd64cca +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d3/2b56810b8f25d8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d3/41d870320978e5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d3/501f0cfac7753a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d3/5554afe6fa5f7a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d3/8bbed2bde79d6d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d3/a670dc22db9740 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d3/fdfb6c4ef310b9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d4/1db8d9da52f4d2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d4/23390c921fcf45 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d4/5103ad2140bef7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d4/c77498d1d3cd43 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d4/fcc57ef602ca9b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d5/07f54ade1b17c4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d5/9946043eb4af5f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d6/3374164d40161b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d6/5e0b85d24da0ca +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d6/c21081103b9ce1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d6/ced1c1ee0345ea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d7/3035d55255e826 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d7/b72d48dbd5f7da +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d8/3a2a8a08a8e083 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d8/8c6cf333b893b9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d8/aabdc4ad585ed1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d8/c3243d617b6ab1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d8/fbd1a39f5297ae +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d9/090a7cf505adb3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d9/47190878e31934 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d9/4d82f9468c69e1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d9/5671e4c4342fa1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d9/5a49da0f00eb85 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d9/c4f66d95856f15 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/d9/c89fb2b2946069 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/da/08721cfaec7b11 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/da/6e45d4f1baf229 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/da/98dce78d517ab6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/da/b6a0c81bea6885 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/da/f85eefac0df1b1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/db/66468e50267f8d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/db/6860dfcb048723 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/db/70cc7948a00f07 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/db/8e5e6879a215a0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/db/8fd5b4bc61c5df +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/db/972eae18a4743c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/db/9ccb71b03f9a69 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/db/da8a3c7ee72b54 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/db/daa79475a8652b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dc/625102558223d6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dc/7b2bd391880965 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dc/9cc2631344aa8f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dc/b750f4243aeb1c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dc/c316cb875c4ac7 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dd/4ab7f3c69c0a84 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dd/600e649da91561 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dd/966091c4f06e13 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dd/c0d9de11f3c7e6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dd/d9588c7577924e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/dd/ee2785efb47fe3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/de/9bd643dfea0592 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/de/af0b10ad792b6a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/de/c355fcfd808684 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/df/487841cd9452de +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/df/673a48d37e71af +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/df/6ddc4b5281ad14 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/df/ec3bc36896ff3d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e0/0afbcd3ab8e0b9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e0/447568470b3f8e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e0/682b42cf357ba6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e0/7053583e7e2c14 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e1/4e1977ce467060 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e1/91b9a90cbb209d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e1/f3da6fc4d8eac2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e1/fb617a10713499 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e2/076f7d16fdc50f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e2/16fd7dd8de55c4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e2/28c47097fb8189 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e2/8b7ab7e52c1448 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e2/d5fe9c486bcacf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e2/d91c342b7a28e2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e2/e2b6a90795a1a6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e3/0a4250a2e19036 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e3/4b8e50a2e81b88 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e3/90df5346e25059 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e3/c5f832117f07e6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e3/d5d326b2683246 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e4/3d3ba7d074911f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e4/96076b77e94d5d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e4/acfc79c7d2dc2e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e5/68bd0ebb2822bf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e5/7e03b522f259e1 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e5/c87b8b73319c21 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e5/f401515d83a735 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e6/44093cd9bf93a4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e6/81df96adf9fdea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e6/d70d4cf01fc7e2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e6/f7e11cf1e2c9cd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e7/1238d91803aaa5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e7/57f9958a4f4f54 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e7/c84021625720df +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e8/23971c2aa57189 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e8/2e8b5cc6b9fc5f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e8/30b877021c5590 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e8/99f68027c8c04a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e8/bb150baed9ce9d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e9/0254391c19a593 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e9/36a370c3183d31 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e9/a59101e33dff11 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/e9/bc9ecb16f2e767 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ea/3cbaa4a98c0661 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ea/53673ddee71524 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ea/6a210b9f94a4ea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ea/b1fe4e1ea377e4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ea/e023e8435eb593 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/eb/03c9be0565fc7e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/eb/6fbf1cdc72c6b9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/eb/9da54c0e7f5671 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/eb/a4d71315269a3f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/eb/c3c44535616dfc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/eb/c66fda75fb9a93 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/eb/f1ac1d265ad7fb +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ec/11dd5603e04f3c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ec/cb19a1c9d47861 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ec/ee6d5fff0f94d0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ed/2c2cd281e8bac5 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ed/37ce1efdfc1e63 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ed/40517b26e3c975 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ed/60d72c2bbd1306 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ee/0afec6cc41a735 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ee/1735c9e56a7f56 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ee/2d3e361d7ad0ea +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ee/49c826e05efe53 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ee/bc9a68b255b168 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ee/d8b764ea9fdf7b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ef/1bc8326b323657 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f0/1a2075bf6575fc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f0/574e72c2b3c951 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f0/8fc9eccb75e6ed +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f0/b5882ca5c310c3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f0/dde740238f55ec +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f1/44d3bb0125df6d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f1/b305aa54c07536 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/0f4fc7eabeb363 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/459ce9f9a731e3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/580ae024c5320e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/5fc14ee8e77ac8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/6c5717bebe9de9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/6e772162c27e63 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/801aa14fd94ddf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/a887ec139c952a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/c2315e940ec770 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f2/ccd7aaf00512a6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f3/0b1226cb99b425 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f3/c4d16a9303c35f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f3/f54a2b9d4fe49e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f4/154f2e8d8269d4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f4/27c54d8c34f81d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f4/9e577fd0141d44 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f5/0a338b900c007f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f5/0d9e1bbb38e371 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f5/2079d30824223e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f5/5277d79804e2f0 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f5/abbf4e7ac8a985 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f6/0337384a7e9fc4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f6/b83ea3453ce8f3 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f6/b92bfa11c105a6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f6/e29a9d008186a2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f7/3c1c2e12b31e8a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f7/6cb832334ccc14 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f7/93aea451534bf9 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f8/0ab32df7d5d638 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f8/348e09f5001a24 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f8/4492a61b722bf6 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f8/9d0b6bd206ac2c +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f9/0ac1d0c7811798 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f9/240b3b3cdcf0c2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f9/2de372bd0e2b33 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f9/683361af59072f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f9/eec05514ed3ccf +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/f9/ffa3a47d2f6dd8 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fa/1b2b876f478b1b +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fa/7c51c6d02b5a5a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fa/9fc8534c0d8ad4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fa/e7787c441b9083 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fa/e8c5e6ab5c9718 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fb/10474049c0ce51 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fb/343db905b229fd +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fc/3b76891996ff7f +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fc/f97d1d51a4d1d4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fd/10fd61f91a1ae2 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fd/13c704ac74289a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fd/201c36abb6cf15 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fd/3e72320ec8674e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fd/a4a7ec272fdc87 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fd/b3f4cdd755b6cc +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fe/126057ee3a968e +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fe/2ff517af8e2143 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fe/75e0fcbc3df91a +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fe/9d4ca3c5e0b350 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fe/a4274469b90a95 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fe/ab2a4a0e3e8482 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/fe/acac2f2e6a5298 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ff/bd803e18108ae4 +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-compile-cache/ff/dc559a07c4b40d +0 -0
- data/spec/integration/tmp/dummy/tmp/cache/bootsnap-load-path-cache +0 -0
- data/spec/support/error_bubbling_helpers.rb +0 -23
@@ -1,5 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
module GraphQL
|
3
|
+
# When an `authorized?` hook returns false, this error is used to communicate the failure.
|
4
|
+
# It's passed to {Schema.unauthorized_object}.
|
5
|
+
#
|
6
|
+
# Alternatively, custom code in `authorized?` may raise this error. It will be routed the same way.
|
3
7
|
class UnauthorizedError < GraphQL::Error
|
4
8
|
# @return [Object] the application object that failed the authorization check
|
5
9
|
attr_reader :object
|
@@ -18,7 +22,7 @@ module GraphQL
|
|
18
22
|
@object = object
|
19
23
|
@type = type
|
20
24
|
@context = context
|
21
|
-
message ||= "An instance of #{object.class} failed #{type.
|
25
|
+
message ||= "An instance of #{object.class} failed #{type.name}'s authorization check"
|
22
26
|
super(message)
|
23
27
|
end
|
24
28
|
end
|
data/lib/graphql/version.rb
CHANGED
data/spec/dummy/Gemfile.lock
CHANGED
@@ -1,130 +1,130 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/rmosolgo/code/graphql-ruby
|
3
3
|
specs:
|
4
|
-
graphql (1.
|
4
|
+
graphql (1.8.8)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
actioncable (5.2.
|
10
|
-
actionpack (= 5.2.
|
9
|
+
actioncable (5.2.1)
|
10
|
+
actionpack (= 5.2.1)
|
11
11
|
nio4r (~> 2.0)
|
12
12
|
websocket-driver (>= 0.6.1)
|
13
|
-
actionmailer (5.2.
|
14
|
-
actionpack (= 5.2.
|
15
|
-
actionview (= 5.2.
|
16
|
-
activejob (= 5.2.
|
13
|
+
actionmailer (5.2.1)
|
14
|
+
actionpack (= 5.2.1)
|
15
|
+
actionview (= 5.2.1)
|
16
|
+
activejob (= 5.2.1)
|
17
17
|
mail (~> 2.5, >= 2.5.4)
|
18
18
|
rails-dom-testing (~> 2.0)
|
19
|
-
actionpack (5.2.
|
20
|
-
actionview (= 5.2.
|
21
|
-
activesupport (= 5.2.
|
22
|
-
rack (~> 2.0
|
19
|
+
actionpack (5.2.1)
|
20
|
+
actionview (= 5.2.1)
|
21
|
+
activesupport (= 5.2.1)
|
22
|
+
rack (~> 2.0)
|
23
23
|
rack-test (>= 0.6.3)
|
24
24
|
rails-dom-testing (~> 2.0)
|
25
25
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
26
|
-
actionview (5.2.
|
27
|
-
activesupport (= 5.2.
|
26
|
+
actionview (5.2.1)
|
27
|
+
activesupport (= 5.2.1)
|
28
28
|
builder (~> 3.1)
|
29
29
|
erubi (~> 1.4)
|
30
30
|
rails-dom-testing (~> 2.0)
|
31
31
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
32
|
-
activejob (5.2.
|
33
|
-
activesupport (= 5.2.
|
32
|
+
activejob (5.2.1)
|
33
|
+
activesupport (= 5.2.1)
|
34
34
|
globalid (>= 0.3.6)
|
35
|
-
activemodel (5.2.
|
36
|
-
activesupport (= 5.2.
|
37
|
-
activerecord (5.2.
|
38
|
-
activemodel (= 5.2.
|
39
|
-
activesupport (= 5.2.
|
35
|
+
activemodel (5.2.1)
|
36
|
+
activesupport (= 5.2.1)
|
37
|
+
activerecord (5.2.1)
|
38
|
+
activemodel (= 5.2.1)
|
39
|
+
activesupport (= 5.2.1)
|
40
40
|
arel (>= 9.0)
|
41
|
-
activestorage (5.2.
|
42
|
-
actionpack (= 5.2.
|
43
|
-
activerecord (= 5.2.
|
41
|
+
activestorage (5.2.1)
|
42
|
+
actionpack (= 5.2.1)
|
43
|
+
activerecord (= 5.2.1)
|
44
44
|
marcel (~> 0.3.1)
|
45
|
-
activesupport (5.2.
|
45
|
+
activesupport (5.2.1)
|
46
46
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
47
47
|
i18n (>= 0.7, < 2)
|
48
48
|
minitest (~> 5.1)
|
49
49
|
tzinfo (~> 1.1)
|
50
|
-
addressable (2.
|
51
|
-
public_suffix (>= 2.0.2, <
|
50
|
+
addressable (2.5.2)
|
51
|
+
public_suffix (>= 2.0.2, < 4.0)
|
52
52
|
arel (9.0.0)
|
53
|
-
builder (3.2.
|
54
|
-
capybara (3.
|
53
|
+
builder (3.2.3)
|
54
|
+
capybara (3.7.2)
|
55
55
|
addressable
|
56
56
|
mini_mime (>= 0.1.3)
|
57
57
|
nokogiri (~> 1.8)
|
58
58
|
rack (>= 1.6.0)
|
59
59
|
rack-test (>= 0.6.3)
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
concurrent-ruby (1.
|
64
|
-
crass (1.0.
|
65
|
-
erubi (1.
|
66
|
-
ffi (1.
|
67
|
-
globalid (0.4.
|
60
|
+
xpath (~> 3.1)
|
61
|
+
childprocess (0.9.0)
|
62
|
+
ffi (~> 1.0, >= 1.0.11)
|
63
|
+
concurrent-ruby (1.0.5)
|
64
|
+
crass (1.0.4)
|
65
|
+
erubi (1.7.1)
|
66
|
+
ffi (1.9.25)
|
67
|
+
globalid (0.4.1)
|
68
68
|
activesupport (>= 4.2.0)
|
69
|
-
i18n (1.
|
69
|
+
i18n (1.1.0)
|
70
70
|
concurrent-ruby (~> 1.0)
|
71
|
-
listen (3.
|
72
|
-
rb-fsevent (~> 0.
|
73
|
-
rb-inotify (~> 0.9, >= 0.9.
|
74
|
-
|
71
|
+
listen (3.1.5)
|
72
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
73
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
74
|
+
ruby_dep (~> 1.2)
|
75
|
+
loofah (2.2.2)
|
75
76
|
crass (~> 1.0.2)
|
76
77
|
nokogiri (>= 1.5.9)
|
77
|
-
mail (2.7.
|
78
|
+
mail (2.7.0)
|
78
79
|
mini_mime (>= 0.1.1)
|
79
80
|
marcel (0.3.3)
|
80
81
|
mimemagic (~> 0.3.2)
|
81
|
-
method_source (
|
82
|
-
mimemagic (0.3.
|
83
|
-
mini_mime (1.0.
|
84
|
-
mini_portile2 (2.
|
85
|
-
minitest (5.
|
86
|
-
nio4r (2.
|
87
|
-
nokogiri (1.
|
88
|
-
mini_portile2 (~> 2.
|
89
|
-
public_suffix (
|
90
|
-
puma (
|
91
|
-
|
92
|
-
rack (2.2.2)
|
82
|
+
method_source (0.9.0)
|
83
|
+
mimemagic (0.3.2)
|
84
|
+
mini_mime (1.0.1)
|
85
|
+
mini_portile2 (2.3.0)
|
86
|
+
minitest (5.11.3)
|
87
|
+
nio4r (2.3.1)
|
88
|
+
nokogiri (1.8.4)
|
89
|
+
mini_portile2 (~> 2.3.0)
|
90
|
+
public_suffix (3.0.3)
|
91
|
+
puma (3.12.0)
|
92
|
+
rack (2.0.5)
|
93
93
|
rack-test (1.1.0)
|
94
94
|
rack (>= 1.0, < 3)
|
95
|
-
rails (5.2.
|
96
|
-
actioncable (= 5.2.
|
97
|
-
actionmailer (= 5.2.
|
98
|
-
actionpack (= 5.2.
|
99
|
-
actionview (= 5.2.
|
100
|
-
activejob (= 5.2.
|
101
|
-
activemodel (= 5.2.
|
102
|
-
activerecord (= 5.2.
|
103
|
-
activestorage (= 5.2.
|
104
|
-
activesupport (= 5.2.
|
95
|
+
rails (5.2.1)
|
96
|
+
actioncable (= 5.2.1)
|
97
|
+
actionmailer (= 5.2.1)
|
98
|
+
actionpack (= 5.2.1)
|
99
|
+
actionview (= 5.2.1)
|
100
|
+
activejob (= 5.2.1)
|
101
|
+
activemodel (= 5.2.1)
|
102
|
+
activerecord (= 5.2.1)
|
103
|
+
activestorage (= 5.2.1)
|
104
|
+
activesupport (= 5.2.1)
|
105
105
|
bundler (>= 1.3.0)
|
106
|
-
railties (= 5.2.
|
106
|
+
railties (= 5.2.1)
|
107
107
|
sprockets-rails (>= 2.0.0)
|
108
108
|
rails-dom-testing (2.0.3)
|
109
109
|
activesupport (>= 4.2.0)
|
110
110
|
nokogiri (>= 1.6)
|
111
|
-
rails-html-sanitizer (1.
|
112
|
-
loofah (~> 2.
|
113
|
-
railties (5.2.
|
114
|
-
actionpack (= 5.2.
|
115
|
-
activesupport (= 5.2.
|
111
|
+
rails-html-sanitizer (1.0.4)
|
112
|
+
loofah (~> 2.2, >= 2.2.2)
|
113
|
+
railties (5.2.1)
|
114
|
+
actionpack (= 5.2.1)
|
115
|
+
activesupport (= 5.2.1)
|
116
116
|
method_source
|
117
117
|
rake (>= 0.8.7)
|
118
118
|
thor (>= 0.19.0, < 2.0)
|
119
|
-
rake (
|
120
|
-
rb-fsevent (0.10.
|
121
|
-
rb-inotify (0.10
|
122
|
-
ffi (
|
123
|
-
|
124
|
-
rubyzip (2.
|
125
|
-
selenium-webdriver (3.
|
126
|
-
childprocess (
|
127
|
-
rubyzip (
|
119
|
+
rake (12.3.1)
|
120
|
+
rb-fsevent (0.10.3)
|
121
|
+
rb-inotify (0.9.10)
|
122
|
+
ffi (>= 0.5.0, < 2)
|
123
|
+
ruby_dep (1.5.0)
|
124
|
+
rubyzip (1.2.2)
|
125
|
+
selenium-webdriver (3.14.0)
|
126
|
+
childprocess (~> 0.5)
|
127
|
+
rubyzip (~> 1.2)
|
128
128
|
sprockets (3.7.2)
|
129
129
|
concurrent-ruby (~> 1.0)
|
130
130
|
rack (> 1, < 3)
|
@@ -132,18 +132,14 @@ GEM
|
|
132
132
|
actionpack (>= 4.0)
|
133
133
|
activesupport (>= 4.0)
|
134
134
|
sprockets (>= 3.0.0)
|
135
|
-
thor (
|
135
|
+
thor (0.20.0)
|
136
136
|
thread_safe (0.3.6)
|
137
|
-
tzinfo (1.2.
|
137
|
+
tzinfo (1.2.5)
|
138
138
|
thread_safe (~> 0.1)
|
139
|
-
|
140
|
-
nokogiri (~> 1.6)
|
141
|
-
rubyzip (>= 1.3.0)
|
142
|
-
selenium-webdriver (>= 3.0, < 4.0)
|
143
|
-
websocket-driver (0.7.2)
|
139
|
+
websocket-driver (0.7.0)
|
144
140
|
websocket-extensions (>= 0.1.0)
|
145
|
-
websocket-extensions (0.1.
|
146
|
-
xpath (3.
|
141
|
+
websocket-extensions (0.1.3)
|
142
|
+
xpath (3.1.0)
|
147
143
|
nokogiri (~> 1.8)
|
148
144
|
|
149
145
|
PLATFORMS
|
@@ -156,7 +152,6 @@ DEPENDENCIES
|
|
156
152
|
puma
|
157
153
|
rails (~> 5.2.1)
|
158
154
|
selenium-webdriver
|
159
|
-
webdrivers (~> 4.1)
|
160
155
|
|
161
156
|
BUNDLED WITH
|
162
|
-
|
157
|
+
1.16.1
|
@@ -1,20 +1,28 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
class GraphqlChannel < ActionCable::Channel::Base
|
3
|
-
QueryType
|
4
|
-
|
5
|
-
|
3
|
+
class QueryType < GraphQL::Schema::Object
|
4
|
+
field :value, Integer, null: false
|
5
|
+
def value
|
6
|
+
3
|
7
|
+
end
|
6
8
|
end
|
7
9
|
|
8
|
-
|
9
|
-
|
10
|
-
field :payload, PayloadType do
|
11
|
-
argument :id, !types.ID
|
12
|
-
end
|
10
|
+
class PayloadType < GraphQL::Schema::Object
|
11
|
+
field :value, Integer, null: false
|
13
12
|
end
|
14
13
|
|
15
|
-
|
16
|
-
|
17
|
-
|
14
|
+
class SubscriptionType < GraphQL::Schema::Object
|
15
|
+
if TESTING_INTERPRETER
|
16
|
+
extend GraphQL::Subscriptions::SubscriptionRoot
|
17
|
+
end
|
18
|
+
|
19
|
+
field :payload, PayloadType, null: false do
|
20
|
+
argument :id, ID, required: true
|
21
|
+
end
|
22
|
+
|
23
|
+
def payload(id:)
|
24
|
+
id
|
25
|
+
end
|
18
26
|
end
|
19
27
|
|
20
28
|
# Wacky behavior around the number 4
|
@@ -42,6 +50,9 @@ class GraphqlChannel < ActionCable::Channel::Base
|
|
42
50
|
subscription(SubscriptionType)
|
43
51
|
use GraphQL::Subscriptions::ActionCableSubscriptions,
|
44
52
|
serializer: CustomSerializer
|
53
|
+
if TESTING_INTERPRETER
|
54
|
+
use GraphQL::Execution::Interpreter
|
55
|
+
end
|
45
56
|
end
|
46
57
|
|
47
58
|
def subscribed
|
data/spec/dummy/log/test.log
CHANGED
@@ -1,746 +1,96 @@
|
|
1
1
|
-----------------------------------------------------------
|
2
2
|
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
3
3
|
-----------------------------------------------------------
|
4
|
-
Started GET "/" for 127.0.0.1 at
|
4
|
+
Started GET "/" for 127.0.0.1 at 2018-09-29 14:31:04 -0400
|
5
5
|
Processing by PagesController#show as HTML
|
6
6
|
Rendering pages/show.html within layouts/application
|
7
7
|
Rendered pages/show.html within layouts/application (1.3ms)
|
8
|
-
Completed 200 OK in
|
9
|
-
Started GET "/assets/application-
|
10
|
-
Started GET "/cable" for 127.0.0.1 at
|
11
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at
|
8
|
+
Completed 200 OK in 211ms (Views: 208.8ms)
|
9
|
+
Started GET "/assets/application-03569c14ba2ebaf689cf2b8eecd6aba17af7402d872a3eca6c4ec8fac4eb31e9.js" for 127.0.0.1 at 2018-09-29 14:31:05 -0400
|
10
|
+
Started GET "/cable" for 127.0.0.1 at 2018-09-29 14:31:05 -0400
|
11
|
+
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-09-29 14:31:05 -0400
|
12
12
|
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
13
13
|
GraphqlChannel is transmitting the subscription confirmation
|
14
14
|
GraphqlChannel is transmitting the subscription confirmation
|
15
15
|
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
16
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
17
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
18
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
19
|
-
GraphqlChannel is streaming from graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf
|
20
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
21
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
22
|
-
GraphqlChannel is streaming from graphql-subscription:d9e2b733-76cc-4459-9eac-de9edbe806f9
|
23
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
24
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
25
|
-
[ActionCable] Broadcasting to graphql-subscription:d9e2b733-76cc-4459-9eac-de9edbe806f9: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
26
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:d9e2b733-76cc-4459-9eac-de9edbe806f9)
|
27
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>2})
|
28
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
29
|
-
[ActionCable] Broadcasting to graphql-subscription:d9e2b733-76cc-4459-9eac-de9edbe806f9: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
30
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:d9e2b733-76cc-4459-9eac-de9edbe806f9)
|
31
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>3})
|
32
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
33
|
-
[ActionCable] Broadcasting to graphql-subscription:d9e2b733-76cc-4459-9eac-de9edbe806f9: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
34
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:d9e2b733-76cc-4459-9eac-de9edbe806f9)
|
35
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>1})
|
36
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
37
|
-
[ActionCable] Broadcasting to graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
38
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf)
|
39
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>2})
|
40
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
41
|
-
[ActionCable] Broadcasting to graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
42
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf)
|
43
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1728637f94e"}
|
44
|
-
GraphqlChannel stopped streaming from graphql-subscription:d9e2b733-76cc-4459-9eac-de9edbe806f9
|
45
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
46
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"1728637f94e\"}", "data"=>"{\"field\":\"payload\",\"arguments\":{\"id\":\"updates-1\"},\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"1728637f94e"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
47
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>3})
|
48
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
49
|
-
[ActionCable] Broadcasting to graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
50
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf)
|
51
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>4})
|
52
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
53
|
-
[ActionCable] Broadcasting to graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
54
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf)
|
55
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-05 16:41:43 -0400
|
56
|
-
GraphqlChannel stopped streaming from graphql-subscription:055167ce-0d6c-4071-99d8-20d4f46e0daf
|
57
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
58
|
-
------------------------------------------------------------------------------------------------------------
|
59
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
60
|
-
------------------------------------------------------------------------------------------------------------
|
61
|
-
Started GET "/" for 127.0.0.1 at 2020-06-05 16:41:43 -0400
|
62
|
-
Processing by PagesController#show as HTML
|
63
|
-
Rendering pages/show.html within layouts/application
|
64
|
-
Rendered pages/show.html within layouts/application (0.1ms)
|
65
|
-
Completed 200 OK in 3ms (Views: 3.1ms)
|
66
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-05 16:41:43 -0400
|
67
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-05 16:41:43 -0400
|
68
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
69
|
-
GraphqlChannel is transmitting the subscription confirmation
|
70
|
-
GraphqlChannel is transmitting the subscription confirmation
|
71
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
72
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
73
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
74
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
75
|
-
GraphqlChannel is streaming from graphql-subscription:3736a169-94d6-43d3-8dd7-230e294a45a0
|
76
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
77
|
-
GraphqlChannel is streaming from graphql-subscription:66312d97-9f64-4055-aeab-e0d0b6db0cf9
|
78
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
79
|
-
GraphqlChannel is transmitting the subscription confirmation
|
80
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
81
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
82
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
83
|
-
GraphqlChannel is streaming from graphql-subscription:4588478a-5a3c-4d09-a3ef-4fb05540bc25
|
84
|
-
GraphqlChannel is transmitting the subscription confirmation
|
85
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
86
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
87
|
-
GraphqlChannel is streaming from graphql-subscription:db6d4b4e-0513-49ae-be9a-f736e3af6761
|
88
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
89
|
-
GraphqlChannel is transmitting the subscription confirmation
|
90
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
91
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
92
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
93
|
-
GraphqlChannel is streaming from graphql-subscription:257519a5-fcf0-4bdb-a08a-b83994daf42d
|
94
|
-
GraphqlChannel is transmitting the subscription confirmation
|
95
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
96
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
97
|
-
GraphqlChannel is streaming from graphql-subscription:910bf232-7082-4192-bdc4-8d96e1f7d2aa
|
98
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
99
|
-
GraphqlChannel is transmitting the subscription confirmation
|
100
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
101
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
102
|
-
GraphqlChannel is streaming from graphql-subscription:03fc1d41-e73e-4273-8b9c-f986dbf3ba6a
|
103
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
104
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
105
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
106
|
-
[ActionCable] Broadcasting to graphql-subscription:4588478a-5a3c-4d09-a3ef-4fb05540bc25: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
107
|
-
[ActionCable] Broadcasting to graphql-subscription:910bf232-7082-4192-bdc4-8d96e1f7d2aa: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
108
|
-
[ActionCable] Broadcasting to graphql-subscription:db6d4b4e-0513-49ae-be9a-f736e3af6761: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
109
|
-
[ActionCable] Broadcasting to graphql-subscription:03fc1d41-e73e-4273-8b9c-f986dbf3ba6a: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
110
|
-
[ActionCable] Broadcasting to graphql-subscription:257519a5-fcf0-4bdb-a08a-b83994daf42d: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
111
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:4588478a-5a3c-4d09-a3ef-4fb05540bc25)
|
112
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:910bf232-7082-4192-bdc4-8d96e1f7d2aa)
|
113
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:db6d4b4e-0513-49ae-be9a-f736e3af6761)
|
114
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:03fc1d41-e73e-4273-8b9c-f986dbf3ba6a)
|
115
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:257519a5-fcf0-4bdb-a08a-b83994daf42d)
|
116
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1728637ec50"}
|
117
|
-
GraphqlChannel stopped streaming from graphql-subscription:910bf232-7082-4192-bdc4-8d96e1f7d2aa
|
118
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
119
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17286389b95"}
|
120
|
-
GraphqlChannel stopped streaming from graphql-subscription:03fc1d41-e73e-4273-8b9c-f986dbf3ba6a
|
121
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
122
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
123
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
124
|
-
[ActionCable] Broadcasting to graphql-subscription:4588478a-5a3c-4d09-a3ef-4fb05540bc25: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
125
|
-
[ActionCable] Broadcasting to graphql-subscription:db6d4b4e-0513-49ae-be9a-f736e3af6761: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
126
|
-
[ActionCable] Broadcasting to graphql-subscription:257519a5-fcf0-4bdb-a08a-b83994daf42d: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
127
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:4588478a-5a3c-4d09-a3ef-4fb05540bc25)
|
128
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:db6d4b4e-0513-49ae-be9a-f736e3af6761)
|
129
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:257519a5-fcf0-4bdb-a08a-b83994daf42d)
|
130
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1728637e3c9"}
|
131
|
-
GraphqlChannel stopped streaming from graphql-subscription:4588478a-5a3c-4d09-a3ef-4fb05540bc25
|
132
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1728637ed03"}
|
133
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1728639455a"}
|
134
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
135
|
-
GraphqlChannel stopped streaming from graphql-subscription:db6d4b4e-0513-49ae-be9a-f736e3af6761
|
136
|
-
GraphqlChannel stopped streaming from graphql-subscription:257519a5-fcf0-4bdb-a08a-b83994daf42d
|
137
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
138
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
139
|
-
GraphqlChannel is transmitting the subscription confirmation
|
140
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
141
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
142
|
-
GraphqlChannel is streaming from graphql-subscription:9dafab5f-1f03-4917-8397-1c42693aa125
|
143
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
144
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
145
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
146
|
-
[ActionCable] Broadcasting to graphql-subscription:9dafab5f-1f03-4917-8397-1c42693aa125: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
147
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:9dafab5f-1f03-4917-8397-1c42693aa125)
|
148
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-05 16:41:44 -0400
|
149
|
-
GraphqlChannel stopped streaming from graphql-subscription:3736a169-94d6-43d3-8dd7-230e294a45a0
|
150
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
151
|
-
GraphqlChannel stopped streaming from graphql-subscription:66312d97-9f64-4055-aeab-e0d0b6db0cf9
|
152
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
153
|
-
GraphqlChannel stopped streaming from graphql-subscription:9dafab5f-1f03-4917-8397-1c42693aa125
|
154
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
155
|
-
------------------------------------------------------------------------------------------------------------
|
156
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
157
|
-
------------------------------------------------------------------------------------------------------------
|
158
|
-
Started GET "/" for 127.0.0.1 at 2020-06-06 06:55:33 -0400
|
159
|
-
Processing by PagesController#show as HTML
|
160
|
-
Rendering pages/show.html within layouts/application
|
161
|
-
Rendered pages/show.html within layouts/application (1.9ms)
|
162
|
-
Completed 200 OK in 253ms (Views: 249.2ms)
|
163
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-06-06 06:55:33 -0400
|
164
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-06 06:55:33 -0400
|
165
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-06 06:55:33 -0400
|
166
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
167
|
-
GraphqlChannel is transmitting the subscription confirmation
|
168
|
-
GraphqlChannel is transmitting the subscription confirmation
|
169
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
170
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
171
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
172
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
173
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
174
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
175
|
-
GraphqlChannel is streaming from graphql-subscription:5463aef3-76f8-4c8f-804a-881f33defea0
|
176
|
-
GraphqlChannel is streaming from graphql-subscription:768d8968-d1ad-4377-b447-09e0828ab4c2
|
177
|
-
GraphqlChannel is transmitting the subscription confirmation
|
178
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
179
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
180
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
181
|
-
GraphqlChannel is streaming from graphql-subscription:bd2c902a-d604-4adb-93bb-69807a228495
|
182
|
-
GraphqlChannel is transmitting the subscription confirmation
|
183
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
184
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
185
|
-
GraphqlChannel is streaming from graphql-subscription:7c81bf6a-8ace-491a-b80e-6ca37b6051af
|
186
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
187
|
-
GraphqlChannel is transmitting the subscription confirmation
|
188
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
189
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
190
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
191
|
-
GraphqlChannel is streaming from graphql-subscription:ca60b2e7-a91b-4a2b-960f-5cb058cd309b
|
192
|
-
GraphqlChannel is transmitting the subscription confirmation
|
193
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
194
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
195
|
-
GraphqlChannel is streaming from graphql-subscription:df0aa5c0-b375-4423-82e2-7168737ae9f9
|
196
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
197
|
-
GraphqlChannel is transmitting the subscription confirmation
|
198
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
199
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
200
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
201
|
-
GraphqlChannel is streaming from graphql-subscription:919e0531-22d5-478c-84f6-874511910cc8
|
202
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
203
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
204
|
-
[ActionCable] Broadcasting to graphql-subscription:bd2c902a-d604-4adb-93bb-69807a228495: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
205
|
-
[ActionCable] Broadcasting to graphql-subscription:df0aa5c0-b375-4423-82e2-7168737ae9f9: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
206
|
-
[ActionCable] Broadcasting to graphql-subscription:7c81bf6a-8ace-491a-b80e-6ca37b6051af: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
207
|
-
[ActionCable] Broadcasting to graphql-subscription:919e0531-22d5-478c-84f6-874511910cc8: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
208
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:bd2c902a-d604-4adb-93bb-69807a228495)
|
209
|
-
[ActionCable] Broadcasting to graphql-subscription:ca60b2e7-a91b-4a2b-960f-5cb058cd309b: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
210
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:df0aa5c0-b375-4423-82e2-7168737ae9f9)
|
211
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:7c81bf6a-8ace-491a-b80e-6ca37b6051af)
|
212
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:919e0531-22d5-478c-84f6-874511910cc8)
|
213
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:ca60b2e7-a91b-4a2b-960f-5cb058cd309b)
|
214
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1728945a9ca"}
|
215
|
-
GraphqlChannel stopped streaming from graphql-subscription:df0aa5c0-b375-4423-82e2-7168737ae9f9
|
216
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
217
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1728945c95b"}
|
218
|
-
GraphqlChannel stopped streaming from graphql-subscription:919e0531-22d5-478c-84f6-874511910cc8
|
219
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
220
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
221
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
222
|
-
[ActionCable] Broadcasting to graphql-subscription:bd2c902a-d604-4adb-93bb-69807a228495: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
223
|
-
[ActionCable] Broadcasting to graphql-subscription:7c81bf6a-8ace-491a-b80e-6ca37b6051af: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
224
|
-
[ActionCable] Broadcasting to graphql-subscription:ca60b2e7-a91b-4a2b-960f-5cb058cd309b: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
225
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:bd2c902a-d604-4adb-93bb-69807a228495)
|
226
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:ca60b2e7-a91b-4a2b-960f-5cb058cd309b)
|
227
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:7c81bf6a-8ace-491a-b80e-6ca37b6051af)
|
228
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1728945b581"}
|
229
|
-
GraphqlChannel stopped streaming from graphql-subscription:bd2c902a-d604-4adb-93bb-69807a228495
|
230
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17289465663"}
|
231
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17289466069"}
|
232
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
233
|
-
GraphqlChannel stopped streaming from graphql-subscription:7c81bf6a-8ace-491a-b80e-6ca37b6051af
|
234
|
-
GraphqlChannel stopped streaming from graphql-subscription:ca60b2e7-a91b-4a2b-960f-5cb058cd309b
|
235
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
236
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
237
|
-
GraphqlChannel is transmitting the subscription confirmation
|
238
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
239
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
240
|
-
GraphqlChannel is streaming from graphql-subscription:66d9efe3-37e5-4272-bd9d-415781a8d6df
|
241
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
242
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
243
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
244
|
-
[ActionCable] Broadcasting to graphql-subscription:66d9efe3-37e5-4272-bd9d-415781a8d6df: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
245
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:66d9efe3-37e5-4272-bd9d-415781a8d6df)
|
246
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-06 06:55:34 -0400
|
247
|
-
GraphqlChannel stopped streaming from graphql-subscription:5463aef3-76f8-4c8f-804a-881f33defea0
|
248
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
249
|
-
GraphqlChannel stopped streaming from graphql-subscription:768d8968-d1ad-4377-b447-09e0828ab4c2
|
250
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
251
|
-
GraphqlChannel stopped streaming from graphql-subscription:66d9efe3-37e5-4272-bd9d-415781a8d6df
|
252
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
253
|
-
-----------------------------------------------------------
|
254
|
-
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
255
|
-
-----------------------------------------------------------
|
256
|
-
Started GET "/" for 127.0.0.1 at 2020-06-06 06:55:34 -0400
|
257
|
-
Processing by PagesController#show as HTML
|
258
|
-
Rendering pages/show.html within layouts/application
|
259
|
-
Rendered pages/show.html within layouts/application (0.1ms)
|
260
|
-
Completed 200 OK in 3ms (Views: 2.3ms)
|
261
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-06 06:55:34 -0400
|
262
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-06 06:55:34 -0400
|
263
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
264
|
-
GraphqlChannel is transmitting the subscription confirmation
|
265
|
-
GraphqlChannel is transmitting the subscription confirmation
|
266
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
267
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
268
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
269
|
-
GraphqlChannel is streaming from graphql-subscription:a40b09ef-a56a-49e8-99bc-152fceda9912
|
270
16
|
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
271
|
-
|
272
|
-
|
273
|
-
GraphqlChannel
|
274
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
17
|
+
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"1662699726a\"}", "data"=>"{\"query\":\"subscription($id: ID!) { payload(id: $id) { value } }\",\"variables\":{\"id\":\"updates-1\"},\"action\":\"execute\"}"}) [ArgumentError - wrong number of arguments (given 1, expected 0)]: /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:19:in `payload' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/schema/field.rb:524:in `public_send' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/schema/field.rb:524:in `block in public_send_field' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/schema/field.rb:536:in `with_extensions' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/schema/field.rb:515:in `public_send_field'
|
18
|
+
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"166269a4ccc\"}", "data"=>"{\"query\":\"subscription($id: ID!) { payload(id: $id) { value } }\",\"variables\":{\"id\":\"updates-2\"},\"action\":\"execute\"}"}) [ArgumentError - wrong number of arguments (given 1, expected 0)]: /Users/rmosolgo/code/graphql-ruby/spec/dummy/app/channels/graphql_channel.rb:19:in `payload' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/schema/field.rb:524:in `public_send' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/schema/field.rb:524:in `block in public_send_field' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/schema/field.rb:536:in `with_extensions' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/schema/field.rb:515:in `public_send_field'
|
19
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
|
275
20
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
276
|
-
|
277
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:a40b09ef-a56a-49e8-99bc-152fceda9912)
|
278
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>2})
|
21
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
|
279
22
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
280
|
-
|
281
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:a40b09ef-a56a-49e8-99bc-152fceda9912)
|
282
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>3})
|
23
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
|
283
24
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
284
|
-
[
|
285
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:a40b09ef-a56a-49e8-99bc-152fceda9912)
|
286
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>1})
|
287
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
288
|
-
[ActionCable] Broadcasting to graphql-subscription:915ef0dd-bbd6-483e-ab49-399771c711e8: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
289
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:915ef0dd-bbd6-483e-ab49-399771c711e8)
|
290
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>2})
|
291
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
292
|
-
[ActionCable] Broadcasting to graphql-subscription:915ef0dd-bbd6-483e-ab49-399771c711e8: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
293
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:915ef0dd-bbd6-483e-ab49-399771c711e8)
|
294
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17289466b77"}
|
295
|
-
GraphqlChannel stopped streaming from graphql-subscription:a40b09ef-a56a-49e8-99bc-152fceda9912
|
296
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
297
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"17289466b77\"}", "data"=>"{\"field\":\"payload\",\"arguments\":{\"id\":\"updates-1\"},\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"17289466b77"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
298
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>3})
|
299
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
300
|
-
[ActionCable] Broadcasting to graphql-subscription:915ef0dd-bbd6-483e-ab49-399771c711e8: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
301
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:915ef0dd-bbd6-483e-ab49-399771c711e8)
|
302
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>4})
|
303
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
304
|
-
[ActionCable] Broadcasting to graphql-subscription:915ef0dd-bbd6-483e-ab49-399771c711e8: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
305
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:915ef0dd-bbd6-483e-ab49-399771c711e8)
|
306
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-06 06:55:35 -0400
|
307
|
-
GraphqlChannel stopped streaming from graphql-subscription:915ef0dd-bbd6-483e-ab49-399771c711e8
|
308
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
309
|
-
-----------------------------------------------------------
|
310
|
-
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
311
|
-
-----------------------------------------------------------
|
312
|
-
Started GET "/" for 127.0.0.1 at 2020-06-07 17:10:56 -0400
|
313
|
-
Processing by PagesController#show as HTML
|
314
|
-
Rendering pages/show.html within layouts/application
|
315
|
-
Rendered pages/show.html within layouts/application (3.7ms)
|
316
|
-
Completed 200 OK in 151ms (Views: 148.3ms)
|
317
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-06-07 17:10:56 -0400
|
318
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-07 17:10:56 -0400
|
319
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-07 17:10:56 -0400
|
320
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
321
|
-
GraphqlChannel is transmitting the subscription confirmation
|
322
|
-
GraphqlChannel is transmitting the subscription confirmation
|
323
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
324
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"172909f7b5d\"}", "data"=>"{\"query\":\"subscription($id: ID!) { payload(id: $id) { value } }\",\"variables\":{\"id\":\"updates-1\"},\"action\":\"execute\"}"}) [NoMethodError - undefined method `build_id' for GraphQL::Subscriptions:Class]: /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/event.rb:68:in `fingerprint' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:127:in `block in write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `each' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/instrumentation.rb:34:in `after_query'
|
325
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
326
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"17290a02d36\"}", "data"=>"{\"query\":\"subscription($id: ID!) { payload(id: $id) { value } }\",\"variables\":{\"id\":\"updates-2\"},\"action\":\"execute\"}"}) [NoMethodError - undefined method `build_id' for GraphQL::Subscriptions:Class]: /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/event.rb:68:in `fingerprint' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:127:in `block in write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `each' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/instrumentation.rb:34:in `after_query'
|
327
|
-
GraphqlChannel is streaming from graphql-subscription:d84819eb-7519-46e6-8997-66f351b7d078
|
328
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
329
|
-
GraphqlChannel is streaming from graphql-subscription:af2f916c-1493-47f1-adeb-0a6ad6ce8d8d
|
330
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
331
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-07 17:10:58 -0400
|
332
|
-
GraphqlChannel stopped streaming from graphql-subscription:d84819eb-7519-46e6-8997-66f351b7d078
|
333
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
334
|
-
GraphqlChannel stopped streaming from graphql-subscription:af2f916c-1493-47f1-adeb-0a6ad6ce8d8d
|
335
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
336
|
-
------------------------------------------------------------------------------------------------------------
|
337
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
338
|
-
------------------------------------------------------------------------------------------------------------
|
339
|
-
Started GET "/" for 127.0.0.1 at 2020-06-07 17:10:59 -0400
|
340
|
-
Processing by PagesController#show as HTML
|
341
|
-
Rendering pages/show.html within layouts/application
|
342
|
-
Rendered pages/show.html within layouts/application (0.1ms)
|
343
|
-
Completed 200 OK in 3ms (Views: 2.2ms)
|
344
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-07 17:10:59 -0400
|
345
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-07 17:10:59 -0400
|
346
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
347
|
-
GraphqlChannel is transmitting the subscription confirmation
|
348
|
-
GraphqlChannel is transmitting the subscription confirmation
|
349
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
350
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"17290a02568\"}", "data"=>"{\"query\":\"subscription($id: ID!) { payload(id: $id) { value } }\",\"variables\":{\"id\":\"updates-2\"},\"action\":\"execute\"}"}) [NoMethodError - undefined method `build_id' for GraphQL::Subscriptions:Class]: /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/event.rb:68:in `fingerprint' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:127:in `block in write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `each' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/instrumentation.rb:34:in `after_query'
|
351
|
-
GraphqlChannel is streaming from graphql-subscription:1235dcab-ba02-46a8-bf1b-9139856b4c69
|
352
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
353
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
354
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"17290a0010c\"}", "data"=>"{\"query\":\"subscription($id: ID!) { payload(id: $id) { value } }\",\"variables\":{\"id\":\"updates-1\"},\"action\":\"execute\"}"}) [NoMethodError - undefined method `build_id' for GraphQL::Subscriptions:Class]: /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/event.rb:68:in `fingerprint' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:127:in `block in write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `each' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/instrumentation.rb:34:in `after_query'
|
355
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
356
|
-
GraphqlChannel is streaming from graphql-subscription:6c2e1377-272e-405b-a527-2808f1bce64e
|
357
|
-
GraphqlChannel is transmitting the subscription confirmation
|
358
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
359
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"17290a0ac14\"}", "data"=>"{\"query\":\"subscription fingerprint1 { counterIncremented { newValue } }\",\"variables\":{},\"action\":\"execute\"}"}) [NoMethodError - undefined method `build_id' for GraphQL::Subscriptions:Class]: /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/event.rb:68:in `fingerprint' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:127:in `block in write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `each' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/action_cable_subscriptions.rb:123:in `write_subscription' | /Users/rmosolgo/code/graphql-ruby/lib/graphql/subscriptions/instrumentation.rb:34:in `after_query'
|
360
|
-
GraphqlChannel is streaming from graphql-subscription:ccf878b7-a990-45b5-a7bf-f744aee79b6d
|
361
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
362
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-07 17:11:06 -0400
|
363
|
-
GraphqlChannel stopped streaming from graphql-subscription:1235dcab-ba02-46a8-bf1b-9139856b4c69
|
364
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
365
|
-
GraphqlChannel stopped streaming from graphql-subscription:6c2e1377-272e-405b-a527-2808f1bce64e
|
366
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
367
|
-
GraphqlChannel stopped streaming from graphql-subscription:ccf878b7-a990-45b5-a7bf-f744aee79b6d
|
368
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
25
|
+
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2018-09-29 14:31:08 -0400
|
369
26
|
-----------------------------------------------------------
|
370
27
|
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
371
28
|
-----------------------------------------------------------
|
372
|
-
Started GET "/" for 127.0.0.1 at
|
29
|
+
Started GET "/" for 127.0.0.1 at 2018-09-29 14:31:34 -0400
|
373
30
|
Processing by PagesController#show as HTML
|
374
31
|
Rendering pages/show.html within layouts/application
|
375
|
-
Rendered pages/show.html within layouts/application (
|
376
|
-
Completed 200 OK in
|
377
|
-
Started GET "/assets/application-
|
378
|
-
Started GET "/cable" for 127.0.0.1 at
|
379
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at
|
32
|
+
Rendered pages/show.html within layouts/application (1.2ms)
|
33
|
+
Completed 200 OK in 209ms (Views: 206.7ms)
|
34
|
+
Started GET "/assets/application-03569c14ba2ebaf689cf2b8eecd6aba17af7402d872a3eca6c4ec8fac4eb31e9.js" for 127.0.0.1 at 2018-09-29 14:31:34 -0400
|
35
|
+
Started GET "/cable" for 127.0.0.1 at 2018-09-29 14:31:34 -0400
|
36
|
+
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-09-29 14:31:34 -0400
|
380
37
|
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
381
38
|
GraphqlChannel is transmitting the subscription confirmation
|
382
39
|
GraphqlChannel is transmitting the subscription confirmation
|
383
40
|
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
384
|
-
GraphqlChannel transmitting {:result=>{"data"=>
|
385
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
386
|
-
GraphqlChannel is streaming from graphql-subscription:f596a51d-a3d1-494c-aeff-5ce3cec6c0d4
|
387
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
388
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
389
|
-
GraphqlChannel is streaming from graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1
|
390
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
391
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
392
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
393
|
-
[ActionCable] Broadcasting to graphql-subscription:f596a51d-a3d1-494c-aeff-5ce3cec6c0d4: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
394
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:f596a51d-a3d1-494c-aeff-5ce3cec6c0d4)
|
395
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>2})
|
396
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
397
|
-
[ActionCable] Broadcasting to graphql-subscription:f596a51d-a3d1-494c-aeff-5ce3cec6c0d4: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
398
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:f596a51d-a3d1-494c-aeff-5ce3cec6c0d4)
|
399
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>3})
|
400
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
401
|
-
[ActionCable] Broadcasting to graphql-subscription:f596a51d-a3d1-494c-aeff-5ce3cec6c0d4: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
402
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:f596a51d-a3d1-494c-aeff-5ce3cec6c0d4)
|
403
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>1})
|
404
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
405
|
-
[ActionCable] Broadcasting to graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
406
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1)
|
407
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>2})
|
408
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
409
|
-
[ActionCable] Broadcasting to graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
410
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1)
|
411
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17290b46940"}
|
412
|
-
GraphqlChannel stopped streaming from graphql-subscription:f596a51d-a3d1-494c-aeff-5ce3cec6c0d4
|
413
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
414
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"17290b46940\"}", "data"=>"{\"field\":\"payload\",\"arguments\":{\"id\":\"updates-1\"},\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"17290b46940"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
415
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>3})
|
416
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
417
|
-
[ActionCable] Broadcasting to graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
418
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1)
|
419
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>4})
|
420
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
421
|
-
[ActionCable] Broadcasting to graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
422
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1)
|
423
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-07 17:32:38 -0400
|
424
|
-
GraphqlChannel stopped streaming from graphql-subscription:d726b64b-9e43-4ab8-b8d3-9cc14fc436d1
|
425
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
426
|
-
------------------------------------------------------------------------------------------------------------
|
427
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
428
|
-
------------------------------------------------------------------------------------------------------------
|
429
|
-
Started GET "/" for 127.0.0.1 at 2020-06-07 17:32:38 -0400
|
430
|
-
Processing by PagesController#show as HTML
|
431
|
-
Rendering pages/show.html within layouts/application
|
432
|
-
Rendered pages/show.html within layouts/application (0.1ms)
|
433
|
-
Completed 200 OK in 3ms (Views: 2.2ms)
|
434
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-07 17:32:38 -0400
|
435
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-07 17:32:38 -0400
|
436
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
437
|
-
GraphqlChannel is transmitting the subscription confirmation
|
438
|
-
GraphqlChannel is transmitting the subscription confirmation
|
41
|
+
GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
|
439
42
|
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
440
|
-
GraphqlChannel transmitting {:result=>{"data"=>
|
441
|
-
GraphqlChannel
|
442
|
-
GraphqlChannel is streaming from graphql-
|
443
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
444
|
-
GraphqlChannel is streaming from graphql-subscription:8a0c18fa-ae55-40c5-93e1-16c2d0d5dd39
|
445
|
-
GraphqlChannel is streaming from graphql-subscription:88607a42-3a6e-4609-acfb-0816ad1781ab
|
43
|
+
GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
|
44
|
+
GraphqlChannel is streaming from graphql-subscription:d39b7767-bfcf-487f-9985-a99e0074a99c
|
45
|
+
GraphqlChannel is streaming from graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41
|
446
46
|
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
447
|
-
GraphqlChannel is transmitting the subscription confirmation
|
448
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
449
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
450
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
451
|
-
GraphqlChannel is streaming from graphql-subscription:2fd22690-e814-4bed-b8c8-c0db5f41e9e1
|
452
|
-
GraphqlChannel is transmitting the subscription confirmation
|
453
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
454
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
455
|
-
GraphqlChannel is streaming from graphql-subscription:3bc82abf-db4e-48b8-a683-68010af119aa
|
456
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
457
|
-
GraphqlChannel is transmitting the subscription confirmation
|
458
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
459
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
460
|
-
GraphqlChannel is streaming from graphql-subscription:8a1bcf61-ff4d-4d9c-af4a-d11cab6172af
|
461
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
462
|
-
GraphqlChannel is transmitting the subscription confirmation
|
463
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
464
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
465
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
466
|
-
GraphqlChannel is streaming from graphql-subscription:edb5411a-6ce6-4f12-8195-37fb4bc785ad
|
467
|
-
GraphqlChannel is transmitting the subscription confirmation
|
468
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
469
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
470
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
471
|
-
GraphqlChannel is streaming from graphql-subscription:b25221d6-df1d-44ff-b81e-2489a9953c1e
|
472
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
473
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
474
|
-
[ActionCable] Broadcasting to graphql-subscription:2fd22690-e814-4bed-b8c8-c0db5f41e9e1: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
475
|
-
[ActionCable] Broadcasting to graphql-subscription:edb5411a-6ce6-4f12-8195-37fb4bc785ad: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
476
|
-
[ActionCable] Broadcasting to graphql-subscription:3bc82abf-db4e-48b8-a683-68010af119aa: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
477
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:2fd22690-e814-4bed-b8c8-c0db5f41e9e1)
|
478
|
-
[ActionCable] Broadcasting to graphql-subscription:b25221d6-df1d-44ff-b81e-2489a9953c1e: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
479
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:edb5411a-6ce6-4f12-8195-37fb4bc785ad)
|
480
|
-
[ActionCable] Broadcasting to graphql-subscription:8a1bcf61-ff4d-4d9c-af4a-d11cab6172af: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
481
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:3bc82abf-db4e-48b8-a683-68010af119aa)
|
482
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:b25221d6-df1d-44ff-b81e-2489a9953c1e)
|
483
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:8a1bcf61-ff4d-4d9c-af4a-d11cab6172af)
|
484
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17290b3c2b4"}
|
485
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17290b3bb0b"}
|
486
|
-
GraphqlChannel stopped streaming from graphql-subscription:edb5411a-6ce6-4f12-8195-37fb4bc785ad
|
487
|
-
GraphqlChannel stopped streaming from graphql-subscription:b25221d6-df1d-44ff-b81e-2489a9953c1e
|
488
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
489
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
490
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
491
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
492
|
-
[ActionCable] Broadcasting to graphql-subscription:2fd22690-e814-4bed-b8c8-c0db5f41e9e1: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
493
|
-
[ActionCable] Broadcasting to graphql-subscription:3bc82abf-db4e-48b8-a683-68010af119aa: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
494
|
-
[ActionCable] Broadcasting to graphql-subscription:8a1bcf61-ff4d-4d9c-af4a-d11cab6172af: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
495
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:8a1bcf61-ff4d-4d9c-af4a-d11cab6172af)
|
496
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:3bc82abf-db4e-48b8-a683-68010af119aa)
|
497
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:2fd22690-e814-4bed-b8c8-c0db5f41e9e1)
|
498
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17290b430b8"}
|
499
|
-
GraphqlChannel stopped streaming from graphql-subscription:2fd22690-e814-4bed-b8c8-c0db5f41e9e1
|
500
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
501
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17290b4820a"}
|
502
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17290b342d0"}
|
503
|
-
GraphqlChannel stopped streaming from graphql-subscription:3bc82abf-db4e-48b8-a683-68010af119aa
|
504
|
-
GraphqlChannel stopped streaming from graphql-subscription:8a1bcf61-ff4d-4d9c-af4a-d11cab6172af
|
505
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
506
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
507
|
-
GraphqlChannel is transmitting the subscription confirmation
|
508
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
509
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
510
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
511
|
-
GraphqlChannel is streaming from graphql-subscription:c5e812a5-d1f8-4380-8460-4a55955f827b
|
512
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
513
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
514
|
-
[ActionCable] Broadcasting to graphql-subscription:c5e812a5-d1f8-4380-8460-4a55955f827b: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
515
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:c5e812a5-d1f8-4380-8460-4a55955f827b)
|
516
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-07 17:32:39 -0400
|
517
|
-
GraphqlChannel stopped streaming from graphql-subscription:8a0c18fa-ae55-40c5-93e1-16c2d0d5dd39
|
518
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
519
|
-
GraphqlChannel stopped streaming from graphql-subscription:88607a42-3a6e-4609-acfb-0816ad1781ab
|
520
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
521
|
-
GraphqlChannel stopped streaming from graphql-subscription:c5e812a5-d1f8-4380-8460-4a55955f827b
|
522
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
523
|
-
-----------------------------------------------------------
|
524
|
-
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
525
|
-
-----------------------------------------------------------
|
526
|
-
Started GET "/" for 127.0.0.1 at 2020-06-12 15:00:07 -0400
|
527
|
-
Processing by PagesController#show as HTML
|
528
|
-
Rendering pages/show.html within layouts/application
|
529
|
-
Rendered pages/show.html within layouts/application (1.9ms)
|
530
|
-
Completed 200 OK in 204ms (Views: 199.2ms)
|
531
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-06-12 15:00:08 -0400
|
532
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-12 15:00:08 -0400
|
533
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-12 15:00:08 -0400
|
534
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
535
|
-
GraphqlChannel is transmitting the subscription confirmation
|
536
|
-
GraphqlChannel is transmitting the subscription confirmation
|
537
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
538
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
539
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
540
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
541
|
-
GraphqlChannel is streaming from graphql-subscription:6573022b-326d-4b3b-8d2a-2ddfb8e755c6
|
542
47
|
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
543
|
-
GraphqlChannel
|
544
|
-
GraphqlChannel is streaming from graphql-subscription:df31d1dd-6b0b-4a08-8c89-6b095a1b5c56
|
545
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
48
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
|
546
49
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
547
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
548
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:
|
549
|
-
GraphqlChannel#make_trigger({"
|
50
|
+
[ActionCable] Broadcasting to graphql-subscription:d39b7767-bfcf-487f-9985-a99e0074a99c: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
51
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:d39b7767-bfcf-487f-9985-a99e0074a99c)
|
52
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
|
550
53
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
551
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
552
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:
|
553
|
-
GraphqlChannel#make_trigger({"
|
54
|
+
[ActionCable] Broadcasting to graphql-subscription:d39b7767-bfcf-487f-9985-a99e0074a99c: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
55
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:d39b7767-bfcf-487f-9985-a99e0074a99c)
|
56
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
|
554
57
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
555
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
556
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:
|
557
|
-
GraphqlChannel#make_trigger({"
|
58
|
+
[ActionCable] Broadcasting to graphql-subscription:d39b7767-bfcf-487f-9985-a99e0074a99c: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
59
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:d39b7767-bfcf-487f-9985-a99e0074a99c)
|
60
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
|
558
61
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
559
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
560
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:
|
561
|
-
GraphqlChannel#make_trigger({"
|
62
|
+
[ActionCable] Broadcasting to graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
63
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41)
|
64
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
|
562
65
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
563
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
564
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:
|
565
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"
|
566
|
-
GraphqlChannel stopped streaming from graphql-subscription:
|
66
|
+
[ActionCable] Broadcasting to graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
67
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41)
|
68
|
+
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"166269a8bd0"}
|
69
|
+
GraphqlChannel stopped streaming from graphql-subscription:d39b7767-bfcf-487f-9985-a99e0074a99c
|
567
70
|
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
568
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"
|
569
|
-
GraphqlChannel#make_trigger({"
|
71
|
+
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"166269a8bd0\"}", "data"=>"{\"id\":\"updates-1\",\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"166269a8bd0"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
72
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
|
570
73
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
571
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
572
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:
|
573
|
-
GraphqlChannel#make_trigger({"
|
74
|
+
[ActionCable] Broadcasting to graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
75
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41)
|
76
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>4})
|
574
77
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
575
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
576
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:
|
577
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at
|
578
|
-
GraphqlChannel stopped streaming from graphql-subscription:
|
579
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
580
|
-
------------------------------------------------------------------------------------------------------------
|
581
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
582
|
-
------------------------------------------------------------------------------------------------------------
|
583
|
-
Started GET "/" for 127.0.0.1 at 2020-06-12 15:00:09 -0400
|
584
|
-
Processing by PagesController#show as HTML
|
585
|
-
Rendering pages/show.html within layouts/application
|
586
|
-
Rendered pages/show.html within layouts/application (0.1ms)
|
587
|
-
Completed 200 OK in 3ms (Views: 2.5ms)
|
588
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-12 15:00:09 -0400
|
589
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-12 15:00:09 -0400
|
590
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
591
|
-
GraphqlChannel is transmitting the subscription confirmation
|
592
|
-
GraphqlChannel is transmitting the subscription confirmation
|
593
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
594
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
595
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
596
|
-
GraphqlChannel is streaming from graphql-subscription:4876d27a-bde6-4293-a258-310d2078f8bd
|
597
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
598
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
599
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
600
|
-
GraphqlChannel is streaming from graphql-subscription:43342f89-e838-4a00-b567-89722dc482fc
|
601
|
-
GraphqlChannel is transmitting the subscription confirmation
|
602
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
603
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
604
|
-
GraphqlChannel is streaming from graphql-subscription:51ee79ff-91bd-4604-aca3-1e5b6d45f8d3
|
605
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
606
|
-
GraphqlChannel is transmitting the subscription confirmation
|
607
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
608
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
609
|
-
GraphqlChannel is streaming from graphql-subscription:0f5be351-5596-45c0-bee6-774141199fcc
|
610
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
611
|
-
GraphqlChannel is transmitting the subscription confirmation
|
612
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
613
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
614
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
615
|
-
GraphqlChannel is streaming from graphql-subscription:cd816eb2-7e16-4ca1-9abf-179d011f8d09
|
616
|
-
GraphqlChannel is transmitting the subscription confirmation
|
617
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
618
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
619
|
-
GraphqlChannel is streaming from graphql-subscription:d48fe81f-8cca-4625-a7ef-cd2b8c263f60
|
620
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
621
|
-
GraphqlChannel is transmitting the subscription confirmation
|
622
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
623
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
624
|
-
GraphqlChannel is streaming from graphql-subscription:7b42a97a-f005-4ca3-94de-8b5e8fda53a5
|
625
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
626
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
627
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
628
|
-
[ActionCable] Broadcasting to graphql-subscription:51ee79ff-91bd-4604-aca3-1e5b6d45f8d3: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
629
|
-
[ActionCable] Broadcasting to graphql-subscription:d48fe81f-8cca-4625-a7ef-cd2b8c263f60: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
630
|
-
[ActionCable] Broadcasting to graphql-subscription:0f5be351-5596-45c0-bee6-774141199fcc: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
631
|
-
[ActionCable] Broadcasting to graphql-subscription:7b42a97a-f005-4ca3-94de-8b5e8fda53a5: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
632
|
-
[ActionCable] Broadcasting to graphql-subscription:cd816eb2-7e16-4ca1-9abf-179d011f8d09: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
633
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:51ee79ff-91bd-4604-aca3-1e5b6d45f8d3)
|
634
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:d48fe81f-8cca-4625-a7ef-cd2b8c263f60)
|
635
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:0f5be351-5596-45c0-bee6-774141199fcc)
|
636
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:7b42a97a-f005-4ca3-94de-8b5e8fda53a5)
|
637
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:cd816eb2-7e16-4ca1-9abf-179d011f8d09)
|
638
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172a9e7c90e"}
|
639
|
-
GraphqlChannel stopped streaming from graphql-subscription:d48fe81f-8cca-4625-a7ef-cd2b8c263f60
|
640
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172a9e7876b"}
|
641
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
642
|
-
GraphqlChannel stopped streaming from graphql-subscription:7b42a97a-f005-4ca3-94de-8b5e8fda53a5
|
643
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
644
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
645
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
646
|
-
[ActionCable] Broadcasting to graphql-subscription:51ee79ff-91bd-4604-aca3-1e5b6d45f8d3: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
647
|
-
[ActionCable] Broadcasting to graphql-subscription:0f5be351-5596-45c0-bee6-774141199fcc: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
648
|
-
[ActionCable] Broadcasting to graphql-subscription:cd816eb2-7e16-4ca1-9abf-179d011f8d09: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
649
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:51ee79ff-91bd-4604-aca3-1e5b6d45f8d3)
|
650
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:0f5be351-5596-45c0-bee6-774141199fcc)
|
651
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:cd816eb2-7e16-4ca1-9abf-179d011f8d09)
|
652
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172a9e85485"}
|
653
|
-
GraphqlChannel stopped streaming from graphql-subscription:51ee79ff-91bd-4604-aca3-1e5b6d45f8d3
|
654
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172a9e7e322"}
|
655
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172a9e7b322"}
|
656
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
657
|
-
GraphqlChannel stopped streaming from graphql-subscription:0f5be351-5596-45c0-bee6-774141199fcc
|
658
|
-
GraphqlChannel stopped streaming from graphql-subscription:cd816eb2-7e16-4ca1-9abf-179d011f8d09
|
659
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
660
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
661
|
-
GraphqlChannel is transmitting the subscription confirmation
|
662
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
663
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
664
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
665
|
-
GraphqlChannel is streaming from graphql-subscription:b1993011-2f5f-46d9-8f5b-49394ee8e0a8
|
666
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
667
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
668
|
-
[ActionCable] Broadcasting to graphql-subscription:b1993011-2f5f-46d9-8f5b-49394ee8e0a8: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
669
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:b1993011-2f5f-46d9-8f5b-49394ee8e0a8)
|
670
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-12 15:00:10 -0400
|
671
|
-
GraphqlChannel stopped streaming from graphql-subscription:4876d27a-bde6-4293-a258-310d2078f8bd
|
672
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
673
|
-
GraphqlChannel stopped streaming from graphql-subscription:43342f89-e838-4a00-b567-89722dc482fc
|
78
|
+
[ActionCable] Broadcasting to graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
79
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41)
|
80
|
+
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2018-09-29 14:31:36 -0400
|
81
|
+
GraphqlChannel stopped streaming from graphql-subscription:95a2d0a0-e2a1-47d2-b9c4-a305e9532f41
|
674
82
|
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
675
|
-
GraphqlChannel stopped streaming from graphql-subscription:b1993011-2f5f-46d9-8f5b-49394ee8e0a8
|
676
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
677
83
|
-----------------------------------------------------------
|
678
84
|
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
679
85
|
-----------------------------------------------------------
|
680
|
-
Started GET "/" for 127.0.0.1 at
|
681
|
-
Processing by PagesController#show as HTML
|
682
|
-
Rendering pages/show.html within layouts/application
|
683
|
-
Rendered pages/show.html within layouts/application (1.7ms)
|
684
|
-
Completed 200 OK in 243ms (Views: 240.5ms)
|
685
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-06-12 15:01:29 -0400
|
686
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-12 15:01:29 -0400
|
687
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-12 15:01:30 -0400
|
688
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
689
|
-
GraphqlChannel is transmitting the subscription confirmation
|
690
|
-
GraphqlChannel is transmitting the subscription confirmation
|
691
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
692
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
693
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
694
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
695
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
696
|
-
GraphqlChannel is streaming from graphql-subscription:db8b2430-1da9-4804-a661-e2a6132002c2
|
697
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
698
|
-
GraphqlChannel is streaming from graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d
|
699
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
700
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
701
|
-
[ActionCable] Broadcasting to graphql-subscription:db8b2430-1da9-4804-a661-e2a6132002c2: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
702
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:db8b2430-1da9-4804-a661-e2a6132002c2)
|
703
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>2})
|
704
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
705
|
-
[ActionCable] Broadcasting to graphql-subscription:db8b2430-1da9-4804-a661-e2a6132002c2: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
706
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:db8b2430-1da9-4804-a661-e2a6132002c2)
|
707
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>3})
|
708
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
709
|
-
[ActionCable] Broadcasting to graphql-subscription:db8b2430-1da9-4804-a661-e2a6132002c2: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
710
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:db8b2430-1da9-4804-a661-e2a6132002c2)
|
711
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>1})
|
712
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
713
|
-
[ActionCable] Broadcasting to graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
714
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d)
|
715
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>2})
|
716
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
717
|
-
[ActionCable] Broadcasting to graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
718
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d)
|
719
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172a9e97aed"}
|
720
|
-
GraphqlChannel stopped streaming from graphql-subscription:db8b2430-1da9-4804-a661-e2a6132002c2
|
721
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
722
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"172a9e97aed\"}", "data"=>"{\"field\":\"payload\",\"arguments\":{\"id\":\"updates-1\"},\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"172a9e97aed"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
723
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>3})
|
724
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
725
|
-
[ActionCable] Broadcasting to graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
726
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d)
|
727
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>4})
|
728
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
729
|
-
[ActionCable] Broadcasting to graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
730
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d)
|
731
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-12 15:01:30 -0400
|
732
|
-
GraphqlChannel stopped streaming from graphql-subscription:527cad30-9a41-45c3-bcff-a170a45bec0d
|
733
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
734
|
-
------------------------------------------------------------------------------------------------------------
|
735
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
736
|
-
------------------------------------------------------------------------------------------------------------
|
737
|
-
Started GET "/" for 127.0.0.1 at 2020-06-12 15:01:31 -0400
|
86
|
+
Started GET "/" for 127.0.0.1 at 2018-09-29 14:31:58 -0400
|
738
87
|
Processing by PagesController#show as HTML
|
739
88
|
Rendering pages/show.html within layouts/application
|
740
|
-
Rendered pages/show.html within layouts/application (
|
741
|
-
Completed 200 OK in
|
742
|
-
Started GET "/
|
743
|
-
Started GET "/cable
|
89
|
+
Rendered pages/show.html within layouts/application (1.2ms)
|
90
|
+
Completed 200 OK in 244ms (Views: 241.4ms)
|
91
|
+
Started GET "/assets/application-03569c14ba2ebaf689cf2b8eecd6aba17af7402d872a3eca6c4ec8fac4eb31e9.js" for 127.0.0.1 at 2018-09-29 14:31:58 -0400
|
92
|
+
Started GET "/cable" for 127.0.0.1 at 2018-09-29 14:31:58 -0400
|
93
|
+
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-09-29 14:31:58 -0400
|
744
94
|
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
745
95
|
GraphqlChannel is transmitting the subscription confirmation
|
746
96
|
GraphqlChannel is transmitting the subscription confirmation
|
@@ -748,1443 +98,99 @@ GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { va
|
|
748
98
|
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
749
99
|
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
750
100
|
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
751
|
-
GraphqlChannel is streaming from graphql-subscription:
|
101
|
+
GraphqlChannel is streaming from graphql-subscription:2b19317b-9279-4b20-95fc-adee4a81161b
|
752
102
|
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
753
|
-
GraphqlChannel is streaming from graphql-subscription:
|
754
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
755
|
-
GraphqlChannel is transmitting the subscription confirmation
|
756
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
757
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
758
|
-
GraphqlChannel is streaming from graphql-subscription:abfcfa05-60c8-4dfc-8cea-1a3ef6f4ab06
|
759
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
760
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-12 15:02:01 -0400
|
761
|
-
GraphqlChannel stopped streaming from graphql-subscription:fe1902fb-f20d-4f95-8395-79be8f7a16f9
|
762
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
763
|
-
GraphqlChannel stopped streaming from graphql-subscription:95461cd3-a27c-409d-b8bc-276129de0645
|
764
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
765
|
-
GraphqlChannel stopped streaming from graphql-subscription:abfcfa05-60c8-4dfc-8cea-1a3ef6f4ab06
|
766
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
767
|
-
-----------------------------------------------------------
|
768
|
-
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
769
|
-
-----------------------------------------------------------
|
770
|
-
Started GET "/" for 127.0.0.1 at 2020-06-13 08:12:46 -0400
|
771
|
-
Processing by PagesController#show as HTML
|
772
|
-
Rendering pages/show.html within layouts/application
|
773
|
-
Rendered pages/show.html within layouts/application (3.0ms)
|
774
|
-
Completed 200 OK in 301ms (Views: 294.3ms)
|
775
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-06-13 08:12:46 -0400
|
776
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-13 08:12:46 -0400
|
777
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-13 08:12:46 -0400
|
778
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
779
|
-
GraphqlChannel is transmitting the subscription confirmation
|
780
|
-
GraphqlChannel is transmitting the subscription confirmation
|
781
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
782
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
783
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
784
|
-
GraphqlChannel is streaming from graphql-subscription:437832ec-99ca-467d-8657-4dd23ba6cbc5
|
785
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
103
|
+
GraphqlChannel is streaming from graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b
|
786
104
|
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
787
|
-
GraphqlChannel
|
788
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
789
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
105
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
|
790
106
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
791
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
792
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:
|
793
|
-
GraphqlChannel#make_trigger({"
|
107
|
+
[ActionCable] Broadcasting to graphql-subscription:2b19317b-9279-4b20-95fc-adee4a81161b: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
108
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:2b19317b-9279-4b20-95fc-adee4a81161b)
|
109
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
|
794
110
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
795
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
796
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:
|
797
|
-
GraphqlChannel#make_trigger({"
|
111
|
+
[ActionCable] Broadcasting to graphql-subscription:2b19317b-9279-4b20-95fc-adee4a81161b: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
112
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:2b19317b-9279-4b20-95fc-adee4a81161b)
|
113
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
|
798
114
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
799
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
800
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:
|
801
|
-
GraphqlChannel#make_trigger({"
|
115
|
+
[ActionCable] Broadcasting to graphql-subscription:2b19317b-9279-4b20-95fc-adee4a81161b: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
116
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:2b19317b-9279-4b20-95fc-adee4a81161b)
|
117
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
|
802
118
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
803
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
804
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:
|
805
|
-
GraphqlChannel#make_trigger({"
|
119
|
+
[ActionCable] Broadcasting to graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
120
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b)
|
121
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
|
806
122
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
807
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
808
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:
|
809
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"
|
810
|
-
GraphqlChannel stopped streaming from graphql-subscription:
|
123
|
+
[ActionCable] Broadcasting to graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
124
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b)
|
125
|
+
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"166269a7cac"}
|
126
|
+
GraphqlChannel stopped streaming from graphql-subscription:2b19317b-9279-4b20-95fc-adee4a81161b
|
811
127
|
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
812
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"
|
813
|
-
GraphqlChannel#make_trigger({"
|
128
|
+
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"166269a7cac\"}", "data"=>"{\"id\":\"updates-1\",\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"166269a7cac"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
129
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
|
814
130
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
815
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
816
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:
|
817
|
-
GraphqlChannel#make_trigger({"
|
131
|
+
[ActionCable] Broadcasting to graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
132
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b)
|
133
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>4})
|
818
134
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
819
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
820
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:
|
821
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at
|
822
|
-
GraphqlChannel stopped streaming from graphql-subscription:
|
823
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
824
|
-
------------------------------------------------------------------------------------------------------------
|
825
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
826
|
-
------------------------------------------------------------------------------------------------------------
|
827
|
-
Started GET "/" for 127.0.0.1 at 2020-06-13 08:12:48 -0400
|
828
|
-
Processing by PagesController#show as HTML
|
829
|
-
Rendering pages/show.html within layouts/application
|
830
|
-
Rendered pages/show.html within layouts/application (0.1ms)
|
831
|
-
Completed 200 OK in 12ms (Views: 11.3ms)
|
832
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-13 08:12:48 -0400
|
833
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-13 08:12:48 -0400
|
834
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
835
|
-
GraphqlChannel is transmitting the subscription confirmation
|
836
|
-
GraphqlChannel is transmitting the subscription confirmation
|
837
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
838
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
839
|
-
GraphqlChannel is streaming from graphql-subscription:18176513-5f22-4e99-bd87-ffddc445dc24
|
840
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
841
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
842
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
843
|
-
GraphqlChannel is streaming from graphql-subscription:9aa8ab9f-13af-4a4b-b12c-b0bc71401b69
|
844
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
845
|
-
GraphqlChannel is transmitting the subscription confirmation
|
846
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
847
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
848
|
-
GraphqlChannel is streaming from graphql-subscription:a5f0f415-debd-4b1c-b40e-218e07d5c029
|
849
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
850
|
-
GraphqlChannel is transmitting the subscription confirmation
|
851
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
852
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
853
|
-
GraphqlChannel is streaming from graphql-subscription:009def7f-2201-48f8-b19e-8d925d67f446
|
854
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
855
|
-
GraphqlChannel is transmitting the subscription confirmation
|
856
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
857
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
858
|
-
GraphqlChannel is streaming from graphql-subscription:29649aa1-e7a3-48dd-8440-aab87fc03cd7
|
859
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
860
|
-
GraphqlChannel is transmitting the subscription confirmation
|
861
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
862
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
863
|
-
GraphqlChannel is streaming from graphql-subscription:f350ed97-e0b7-424b-803f-2674be828ae1
|
864
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
865
|
-
GraphqlChannel is transmitting the subscription confirmation
|
866
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
867
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
868
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
869
|
-
GraphqlChannel is streaming from graphql-subscription:be382c87-f1c6-4628-aef9-0ead8da5cb48
|
870
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
871
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
872
|
-
[ActionCable] Broadcasting to graphql-subscription:a5f0f415-debd-4b1c-b40e-218e07d5c029: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
873
|
-
[ActionCable] Broadcasting to graphql-subscription:009def7f-2201-48f8-b19e-8d925d67f446: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
874
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:a5f0f415-debd-4b1c-b40e-218e07d5c029)
|
875
|
-
[ActionCable] Broadcasting to graphql-subscription:f350ed97-e0b7-424b-803f-2674be828ae1: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
876
|
-
[ActionCable] Broadcasting to graphql-subscription:29649aa1-e7a3-48dd-8440-aab87fc03cd7: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
877
|
-
[ActionCable] Broadcasting to graphql-subscription:be382c87-f1c6-4628-aef9-0ead8da5cb48: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
878
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:009def7f-2201-48f8-b19e-8d925d67f446)
|
879
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:f350ed97-e0b7-424b-803f-2674be828ae1)
|
880
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:29649aa1-e7a3-48dd-8440-aab87fc03cd7)
|
881
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:be382c87-f1c6-4628-aef9-0ead8da5cb48)
|
882
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172ad9989df"}
|
883
|
-
GraphqlChannel stopped streaming from graphql-subscription:f350ed97-e0b7-424b-803f-2674be828ae1
|
884
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172ad990828"}
|
885
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
886
|
-
GraphqlChannel stopped streaming from graphql-subscription:be382c87-f1c6-4628-aef9-0ead8da5cb48
|
887
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
888
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
889
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
890
|
-
[ActionCable] Broadcasting to graphql-subscription:a5f0f415-debd-4b1c-b40e-218e07d5c029: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
891
|
-
[ActionCable] Broadcasting to graphql-subscription:009def7f-2201-48f8-b19e-8d925d67f446: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
892
|
-
[ActionCable] Broadcasting to graphql-subscription:29649aa1-e7a3-48dd-8440-aab87fc03cd7: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
893
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:a5f0f415-debd-4b1c-b40e-218e07d5c029)
|
894
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:009def7f-2201-48f8-b19e-8d925d67f446)
|
895
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:29649aa1-e7a3-48dd-8440-aab87fc03cd7)
|
896
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172ad990c99"}
|
897
|
-
GraphqlChannel stopped streaming from graphql-subscription:a5f0f415-debd-4b1c-b40e-218e07d5c029
|
898
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172ad994896"}
|
899
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172ad98da18"}
|
900
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
901
|
-
GraphqlChannel stopped streaming from graphql-subscription:009def7f-2201-48f8-b19e-8d925d67f446
|
902
|
-
GraphqlChannel stopped streaming from graphql-subscription:29649aa1-e7a3-48dd-8440-aab87fc03cd7
|
903
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
904
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
905
|
-
GraphqlChannel is transmitting the subscription confirmation
|
906
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
907
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
908
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
909
|
-
GraphqlChannel is streaming from graphql-subscription:a0ecebe2-21de-4d2a-b2e8-814b2c4ce708
|
910
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
911
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
912
|
-
[ActionCable] Broadcasting to graphql-subscription:a0ecebe2-21de-4d2a-b2e8-814b2c4ce708: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
913
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:a0ecebe2-21de-4d2a-b2e8-814b2c4ce708)
|
914
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-13 08:12:49 -0400
|
915
|
-
GraphqlChannel stopped streaming from graphql-subscription:18176513-5f22-4e99-bd87-ffddc445dc24
|
916
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
917
|
-
GraphqlChannel stopped streaming from graphql-subscription:9aa8ab9f-13af-4a4b-b12c-b0bc71401b69
|
135
|
+
[ActionCable] Broadcasting to graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
136
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b)
|
137
|
+
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2018-09-29 14:32:00 -0400
|
138
|
+
GraphqlChannel stopped streaming from graphql-subscription:5f944467-ccfa-4765-9b4a-3bccb29b0b6b
|
918
139
|
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
919
|
-
GraphqlChannel stopped streaming from graphql-subscription:a0ecebe2-21de-4d2a-b2e8-814b2c4ce708
|
920
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
921
140
|
-----------------------------------------------------------
|
922
141
|
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
923
142
|
-----------------------------------------------------------
|
924
|
-
Started GET "/" for 127.0.0.1 at
|
143
|
+
Started GET "/" for 127.0.0.1 at 2018-10-05 11:46:22 -0400
|
925
144
|
Processing by PagesController#show as HTML
|
926
145
|
Rendering pages/show.html within layouts/application
|
927
|
-
Rendered pages/show.html within layouts/application (
|
928
|
-
Completed 200 OK in
|
929
|
-
Started GET "/assets/application-
|
930
|
-
Started GET "/cable" for 127.0.0.1 at
|
931
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at
|
146
|
+
Rendered pages/show.html within layouts/application (1.7ms)
|
147
|
+
Completed 200 OK in 254ms (Views: 251.5ms)
|
148
|
+
Started GET "/assets/application-03569c14ba2ebaf689cf2b8eecd6aba17af7402d872a3eca6c4ec8fac4eb31e9.js" for 127.0.0.1 at 2018-10-05 11:46:22 -0400
|
149
|
+
Started GET "/cable" for 127.0.0.1 at 2018-10-05 11:46:22 -0400
|
150
|
+
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2018-10-05 11:46:22 -0400
|
932
151
|
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
933
152
|
GraphqlChannel is transmitting the subscription confirmation
|
934
153
|
GraphqlChannel is transmitting the subscription confirmation
|
935
154
|
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
936
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
937
155
|
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
938
|
-
GraphqlChannel transmitting {:result=>{"data"=>
|
156
|
+
GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
|
157
|
+
GraphqlChannel transmitting {:result=>{"data"=>nil}, :more=>true}
|
158
|
+
GraphqlChannel is streaming from graphql-subscription:6da90bd0-cd94-41db-bf3e-760e37b2873f
|
159
|
+
GraphqlChannel is streaming from graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad
|
939
160
|
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
940
161
|
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
941
|
-
GraphqlChannel
|
942
|
-
GraphqlChannel is streaming from graphql-subscription:73f9e6bf-dec6-4db0-a503-593b3b2ab4bb
|
943
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
162
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>1})
|
944
163
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
945
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
946
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:
|
947
|
-
GraphqlChannel#make_trigger({"
|
164
|
+
[ActionCable] Broadcasting to graphql-subscription:6da90bd0-cd94-41db-bf3e-760e37b2873f: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
165
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:6da90bd0-cd94-41db-bf3e-760e37b2873f)
|
166
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>2})
|
948
167
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
949
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
950
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:
|
951
|
-
GraphqlChannel#make_trigger({"
|
168
|
+
[ActionCable] Broadcasting to graphql-subscription:6da90bd0-cd94-41db-bf3e-760e37b2873f: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
169
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:6da90bd0-cd94-41db-bf3e-760e37b2873f)
|
170
|
+
GraphqlChannel#make_trigger({"id"=>"updates-1", "value"=>3})
|
952
171
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
953
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
954
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:
|
955
|
-
GraphqlChannel#make_trigger({"
|
172
|
+
[ActionCable] Broadcasting to graphql-subscription:6da90bd0-cd94-41db-bf3e-760e37b2873f: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
173
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:6da90bd0-cd94-41db-bf3e-760e37b2873f)
|
174
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>1})
|
956
175
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
957
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
958
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:
|
959
|
-
GraphqlChannel#make_trigger({"
|
176
|
+
[ActionCable] Broadcasting to graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
177
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad)
|
178
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>2})
|
960
179
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
961
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
962
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:
|
963
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"
|
964
|
-
GraphqlChannel stopped streaming from graphql-subscription:
|
180
|
+
[ActionCable] Broadcasting to graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
181
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad)
|
182
|
+
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"16644e966c2"}
|
183
|
+
GraphqlChannel stopped streaming from graphql-subscription:6da90bd0-cd94-41db-bf3e-760e37b2873f
|
965
184
|
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
966
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"
|
967
|
-
GraphqlChannel#make_trigger({"
|
185
|
+
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"16644e966c2\"}", "data"=>"{\"id\":\"updates-1\",\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"16644e966c2"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.1/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
186
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>3})
|
968
187
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
969
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
970
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:
|
971
|
-
GraphqlChannel#make_trigger({"
|
188
|
+
[ActionCable] Broadcasting to graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
189
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad)
|
190
|
+
GraphqlChannel#make_trigger({"id"=>"updates-2", "value"=>4})
|
972
191
|
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
973
|
-
[ActionCable] Broadcasting to graphql-subscription:
|
974
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:
|
975
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at
|
976
|
-
GraphqlChannel stopped streaming from graphql-subscription:
|
977
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
978
|
-
------------------------------------------------------------------------------------------------------------
|
979
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
980
|
-
------------------------------------------------------------------------------------------------------------
|
981
|
-
Started GET "/" for 127.0.0.1 at 2020-06-17 09:39:20 -0400
|
982
|
-
Processing by PagesController#show as HTML
|
983
|
-
Rendering pages/show.html within layouts/application
|
984
|
-
Rendered pages/show.html within layouts/application (0.0ms)
|
985
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
986
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-17 09:39:20 -0400
|
987
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-17 09:39:20 -0400
|
988
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
989
|
-
GraphqlChannel is transmitting the subscription confirmation
|
990
|
-
GraphqlChannel is transmitting the subscription confirmation
|
991
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
992
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
993
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
994
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
995
|
-
GraphqlChannel is streaming from graphql-subscription:3890b64e-5e63-4cfe-9401-7047e7f073dc
|
996
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
997
|
-
GraphqlChannel is streaming from graphql-subscription:770a0d46-bfa5-487a-a40e-602ff6aa0b7d
|
998
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
999
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1000
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1001
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1002
|
-
GraphqlChannel is streaming from graphql-subscription:68185bb6-7d78-4813-adb6-0abf252aa877
|
1003
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1004
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1005
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1006
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1007
|
-
GraphqlChannel is streaming from graphql-subscription:c56078e3-0d14-4e59-92cc-b46faf22be9e
|
1008
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1009
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1010
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1011
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1012
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1013
|
-
GraphqlChannel is streaming from graphql-subscription:1cf30df5-eba4-4de8-a2e3-412b007a7106
|
1014
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1015
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1016
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1017
|
-
GraphqlChannel is streaming from graphql-subscription:e777384b-007e-4a23-b7f0-53fff21123cc
|
1018
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1019
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1020
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1021
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1022
|
-
GraphqlChannel is streaming from graphql-subscription:15b1dbab-35e3-4e61-9c14-fc75c71bea91
|
1023
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1024
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1025
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1026
|
-
[ActionCable] Broadcasting to graphql-subscription:68185bb6-7d78-4813-adb6-0abf252aa877: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1027
|
-
[ActionCable] Broadcasting to graphql-subscription:c56078e3-0d14-4e59-92cc-b46faf22be9e: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1028
|
-
[ActionCable] Broadcasting to graphql-subscription:e777384b-007e-4a23-b7f0-53fff21123cc: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1029
|
-
[ActionCable] Broadcasting to graphql-subscription:1cf30df5-eba4-4de8-a2e3-412b007a7106: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1030
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:68185bb6-7d78-4813-adb6-0abf252aa877)
|
1031
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:c56078e3-0d14-4e59-92cc-b46faf22be9e)
|
1032
|
-
[ActionCable] Broadcasting to graphql-subscription:15b1dbab-35e3-4e61-9c14-fc75c71bea91: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1033
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:e777384b-007e-4a23-b7f0-53fff21123cc)
|
1034
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:1cf30df5-eba4-4de8-a2e3-412b007a7106)
|
1035
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:15b1dbab-35e3-4e61-9c14-fc75c71bea91)
|
1036
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172c282c7ac"}
|
1037
|
-
GraphqlChannel stopped streaming from graphql-subscription:e777384b-007e-4a23-b7f0-53fff21123cc
|
1038
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1039
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172c281fc9d"}
|
1040
|
-
GraphqlChannel stopped streaming from graphql-subscription:15b1dbab-35e3-4e61-9c14-fc75c71bea91
|
1041
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1042
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1043
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1044
|
-
[ActionCable] Broadcasting to graphql-subscription:68185bb6-7d78-4813-adb6-0abf252aa877: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1045
|
-
[ActionCable] Broadcasting to graphql-subscription:c56078e3-0d14-4e59-92cc-b46faf22be9e: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1046
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:68185bb6-7d78-4813-adb6-0abf252aa877)
|
1047
|
-
[ActionCable] Broadcasting to graphql-subscription:1cf30df5-eba4-4de8-a2e3-412b007a7106: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1048
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:c56078e3-0d14-4e59-92cc-b46faf22be9e)
|
1049
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:1cf30df5-eba4-4de8-a2e3-412b007a7106)
|
1050
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172c2818b47"}
|
1051
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172c282c033"}
|
1052
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172c2826296"}
|
1053
|
-
GraphqlChannel stopped streaming from graphql-subscription:68185bb6-7d78-4813-adb6-0abf252aa877
|
1054
|
-
GraphqlChannel stopped streaming from graphql-subscription:c56078e3-0d14-4e59-92cc-b46faf22be9e
|
1055
|
-
GraphqlChannel stopped streaming from graphql-subscription:1cf30df5-eba4-4de8-a2e3-412b007a7106
|
1056
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1057
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1058
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1059
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1060
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1061
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1062
|
-
GraphqlChannel is streaming from graphql-subscription:cca1c43d-d886-47dd-af11-417ef4175352
|
1063
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1064
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1065
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1066
|
-
[ActionCable] Broadcasting to graphql-subscription:cca1c43d-d886-47dd-af11-417ef4175352: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
1067
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:cca1c43d-d886-47dd-af11-417ef4175352)
|
1068
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-17 09:39:22 -0400
|
1069
|
-
GraphqlChannel stopped streaming from graphql-subscription:770a0d46-bfa5-487a-a40e-602ff6aa0b7d
|
1070
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1071
|
-
GraphqlChannel stopped streaming from graphql-subscription:3890b64e-5e63-4cfe-9401-7047e7f073dc
|
1072
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1073
|
-
GraphqlChannel stopped streaming from graphql-subscription:cca1c43d-d886-47dd-af11-417ef4175352
|
1074
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1075
|
-
-----------------------------------------------------------
|
1076
|
-
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
1077
|
-
-----------------------------------------------------------
|
1078
|
-
Started GET "/" for 127.0.0.1 at 2020-06-17 09:41:29 -0400
|
1079
|
-
Processing by PagesController#show as HTML
|
1080
|
-
Rendering pages/show.html within layouts/application
|
1081
|
-
Rendered pages/show.html within layouts/application (1.5ms)
|
1082
|
-
Completed 200 OK in 152ms (Views: 149.1ms)
|
1083
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-06-17 09:41:29 -0400
|
1084
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-17 09:41:29 -0400
|
1085
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-17 09:41:30 -0400
|
1086
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1087
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1088
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1089
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1090
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1091
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1092
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1093
|
-
GraphqlChannel is streaming from graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c
|
1094
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1095
|
-
GraphqlChannel is streaming from graphql-subscription:bc6a05a7-e65b-487f-974b-e847b783d8d4
|
1096
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1097
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
1098
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
1099
|
-
[ActionCable] Broadcasting to graphql-subscription:bc6a05a7-e65b-487f-974b-e847b783d8d4: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
1100
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:bc6a05a7-e65b-487f-974b-e847b783d8d4)
|
1101
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>2})
|
1102
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
1103
|
-
[ActionCable] Broadcasting to graphql-subscription:bc6a05a7-e65b-487f-974b-e847b783d8d4: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
1104
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:bc6a05a7-e65b-487f-974b-e847b783d8d4)
|
1105
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>3})
|
1106
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
1107
|
-
[ActionCable] Broadcasting to graphql-subscription:bc6a05a7-e65b-487f-974b-e847b783d8d4: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
1108
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:bc6a05a7-e65b-487f-974b-e847b783d8d4)
|
1109
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>1})
|
1110
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
1111
|
-
[ActionCable] Broadcasting to graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
1112
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c)
|
1113
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>2})
|
1114
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
1115
|
-
[ActionCable] Broadcasting to graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
1116
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c)
|
1117
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"172c283d8e9"}
|
1118
|
-
GraphqlChannel stopped streaming from graphql-subscription:bc6a05a7-e65b-487f-974b-e847b783d8d4
|
1119
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1120
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"172c283d8e9\"}", "data"=>"{\"field\":\"payload\",\"arguments\":{\"id\":\"updates-1\"},\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"172c283d8e9"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
1121
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>3})
|
1122
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
1123
|
-
[ActionCable] Broadcasting to graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
1124
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c)
|
1125
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>4})
|
1126
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
1127
|
-
[ActionCable] Broadcasting to graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
1128
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c)
|
1129
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-17 09:41:30 -0400
|
1130
|
-
GraphqlChannel stopped streaming from graphql-subscription:8527d307-d8d0-4ec0-b7ae-8dd78427443c
|
1131
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1132
|
-
------------------------------------------------------------------------------------------------------------
|
1133
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
1134
|
-
------------------------------------------------------------------------------------------------------------
|
1135
|
-
Started GET "/" for 127.0.0.1 at 2020-06-17 09:41:30 -0400
|
1136
|
-
Processing by PagesController#show as HTML
|
1137
|
-
Rendering pages/show.html within layouts/application
|
1138
|
-
Rendered pages/show.html within layouts/application (0.1ms)
|
1139
|
-
Completed 200 OK in 3ms (Views: 2.7ms)
|
1140
|
-
Started GET "/cable" for 127.0.0.1 at 2020-06-17 09:41:30 -0400
|
1141
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-17 09:41:30 -0400
|
1142
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1143
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1144
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1145
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1146
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1147
|
-
GraphqlChannel is streaming from graphql-subscription:29cb04e6-42a3-4767-bb21-81db9f3755ee
|
1148
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1149
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1150
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1151
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1152
|
-
GraphqlChannel is streaming from graphql-subscription:65e61ac7-08fa-4bcd-a829-9ad9d039fba7
|
1153
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1154
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1155
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1156
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1157
|
-
GraphqlChannel is streaming from graphql-subscription:67654879-e78f-4560-9be8-54e21ad4d774
|
1158
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1159
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1160
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1161
|
-
GraphqlChannel is streaming from graphql-subscription:3a5c9792-73a2-4f49-8a8c-56cfb57a254c
|
1162
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1163
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1164
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1165
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1166
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1167
|
-
GraphqlChannel is streaming from graphql-subscription:15da463c-f396-4931-9e4f-903c08d22dd5
|
1168
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1169
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1170
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1171
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1172
|
-
GraphqlChannel is streaming from graphql-subscription:769a8734-7016-4aef-bc94-70b8a14ae968
|
1173
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1174
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1175
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1176
|
-
GraphqlChannel is streaming from graphql-subscription:8073c111-7de3-4c26-8b6a-f5b07d5c2310
|
1177
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1178
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-06-17 09:42:31 -0400
|
1179
|
-
GraphqlChannel stopped streaming from graphql-subscription:29cb04e6-42a3-4767-bb21-81db9f3755ee
|
1180
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1181
|
-
GraphqlChannel stopped streaming from graphql-subscription:65e61ac7-08fa-4bcd-a829-9ad9d039fba7
|
1182
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1183
|
-
GraphqlChannel stopped streaming from graphql-subscription:67654879-e78f-4560-9be8-54e21ad4d774
|
1184
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1185
|
-
GraphqlChannel stopped streaming from graphql-subscription:3a5c9792-73a2-4f49-8a8c-56cfb57a254c
|
1186
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1187
|
-
GraphqlChannel stopped streaming from graphql-subscription:15da463c-f396-4931-9e4f-903c08d22dd5
|
1188
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1189
|
-
GraphqlChannel stopped streaming from graphql-subscription:769a8734-7016-4aef-bc94-70b8a14ae968
|
1190
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1191
|
-
GraphqlChannel stopped streaming from graphql-subscription:8073c111-7de3-4c26-8b6a-f5b07d5c2310
|
1192
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1193
|
-
-----------------------------------------------------------
|
1194
|
-
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
1195
|
-
-----------------------------------------------------------
|
1196
|
-
Started GET "/" for 127.0.0.1 at 2020-09-02 10:59:13 -0400
|
1197
|
-
Processing by PagesController#show as HTML
|
1198
|
-
Rendering pages/show.html within layouts/application
|
1199
|
-
Rendered pages/show.html within layouts/application (2.5ms)
|
1200
|
-
Completed 200 OK in 549ms (Views: 544.7ms)
|
1201
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-09-02 10:59:14 -0400
|
1202
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-02 10:59:14 -0400
|
1203
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 10:59:14 -0400
|
1204
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1205
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1206
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1207
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1208
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1209
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1210
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1211
|
-
GraphqlChannel is streaming from graphql-subscription:307cf2d5-e3f0-4cf7-8632-327d6e197943
|
1212
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1213
|
-
GraphqlChannel is streaming from graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28
|
1214
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1215
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
1216
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
1217
|
-
[ActionCable] Broadcasting to graphql-subscription:307cf2d5-e3f0-4cf7-8632-327d6e197943: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
1218
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:307cf2d5-e3f0-4cf7-8632-327d6e197943)
|
1219
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>2})
|
1220
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
1221
|
-
[ActionCable] Broadcasting to graphql-subscription:307cf2d5-e3f0-4cf7-8632-327d6e197943: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
1222
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:307cf2d5-e3f0-4cf7-8632-327d6e197943)
|
1223
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>3})
|
1224
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
1225
|
-
[ActionCable] Broadcasting to graphql-subscription:307cf2d5-e3f0-4cf7-8632-327d6e197943: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
1226
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:307cf2d5-e3f0-4cf7-8632-327d6e197943)
|
1227
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>1})
|
1228
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
1229
|
-
[ActionCable] Broadcasting to graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
1230
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28)
|
1231
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>2})
|
1232
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
1233
|
-
[ActionCable] Broadcasting to graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
1234
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28)
|
1235
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1744f553664"}
|
1236
|
-
GraphqlChannel stopped streaming from graphql-subscription:307cf2d5-e3f0-4cf7-8632-327d6e197943
|
1237
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1238
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"1744f553664\"}", "data"=>"{\"field\":\"payload\",\"arguments\":{\"id\":\"updates-1\"},\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"1744f553664"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
1239
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>3})
|
1240
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
1241
|
-
[ActionCable] Broadcasting to graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
1242
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28)
|
1243
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>4})
|
1244
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
1245
|
-
[ActionCable] Broadcasting to graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
1246
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28)
|
1247
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 10:59:15 -0400
|
1248
|
-
GraphqlChannel stopped streaming from graphql-subscription:9fa55c4d-84dc-4303-8caf-1b9cd402df28
|
1249
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1250
|
-
------------------------------------------------------------------------------------------------------------
|
1251
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
1252
|
-
------------------------------------------------------------------------------------------------------------
|
1253
|
-
Started GET "/" for 127.0.0.1 at 2020-09-02 10:59:15 -0400
|
1254
|
-
Processing by PagesController#show as HTML
|
1255
|
-
Rendering pages/show.html within layouts/application
|
1256
|
-
Rendered pages/show.html within layouts/application (0.0ms)
|
1257
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1258
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-02 10:59:15 -0400
|
1259
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 10:59:15 -0400
|
1260
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1261
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1262
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1263
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1264
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1265
|
-
GraphqlChannel is streaming from graphql-subscription:78af6e30-dbb4-4b79-b195-bf8acb35faf4
|
1266
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1267
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1268
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1269
|
-
GraphqlChannel is streaming from graphql-subscription:d531bd65-6999-4ba0-b13d-0dc167f699f6
|
1270
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1271
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1272
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1273
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1274
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1275
|
-
GraphqlChannel is streaming from graphql-subscription:fe23d4ce-5e66-40cb-88f6-7879cab3471a
|
1276
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1277
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1278
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1279
|
-
GraphqlChannel is streaming from graphql-subscription:fc8030e6-e7dd-4c17-9048-a75a11db77bb
|
1280
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1281
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1282
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1283
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1284
|
-
GraphqlChannel is streaming from graphql-subscription:a54d0c1b-c73b-4e8c-b4f1-40707999fcd9
|
1285
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1286
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1287
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1288
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1289
|
-
GraphqlChannel is streaming from graphql-subscription:50610b3f-b721-4be6-b0bc-5b45e6ff503e
|
1290
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1291
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1292
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1293
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1294
|
-
GraphqlChannel is streaming from graphql-subscription:970d6ba2-4a80-48df-b1f6-1ef6afcbc528
|
1295
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1296
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1297
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1298
|
-
[ActionCable] Broadcasting to graphql-subscription:fe23d4ce-5e66-40cb-88f6-7879cab3471a: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1299
|
-
[ActionCable] Broadcasting to graphql-subscription:fc8030e6-e7dd-4c17-9048-a75a11db77bb: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1300
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:fe23d4ce-5e66-40cb-88f6-7879cab3471a)
|
1301
|
-
[ActionCable] Broadcasting to graphql-subscription:a54d0c1b-c73b-4e8c-b4f1-40707999fcd9: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1302
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:fc8030e6-e7dd-4c17-9048-a75a11db77bb)
|
1303
|
-
[ActionCable] Broadcasting to graphql-subscription:50610b3f-b721-4be6-b0bc-5b45e6ff503e: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1304
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:a54d0c1b-c73b-4e8c-b4f1-40707999fcd9)
|
1305
|
-
[ActionCable] Broadcasting to graphql-subscription:970d6ba2-4a80-48df-b1f6-1ef6afcbc528: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1306
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:50610b3f-b721-4be6-b0bc-5b45e6ff503e)
|
1307
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:970d6ba2-4a80-48df-b1f6-1ef6afcbc528)
|
1308
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1744f5539d1"}
|
1309
|
-
GraphqlChannel stopped streaming from graphql-subscription:50610b3f-b721-4be6-b0bc-5b45e6ff503e
|
1310
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1744f54daf0"}
|
1311
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1312
|
-
GraphqlChannel stopped streaming from graphql-subscription:970d6ba2-4a80-48df-b1f6-1ef6afcbc528
|
1313
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1314
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1315
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1316
|
-
[ActionCable] Broadcasting to graphql-subscription:fe23d4ce-5e66-40cb-88f6-7879cab3471a: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1317
|
-
[ActionCable] Broadcasting to graphql-subscription:fc8030e6-e7dd-4c17-9048-a75a11db77bb: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1318
|
-
[ActionCable] Broadcasting to graphql-subscription:a54d0c1b-c73b-4e8c-b4f1-40707999fcd9: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1319
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:fe23d4ce-5e66-40cb-88f6-7879cab3471a)
|
1320
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:fc8030e6-e7dd-4c17-9048-a75a11db77bb)
|
1321
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:a54d0c1b-c73b-4e8c-b4f1-40707999fcd9)
|
1322
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1744f551b0b"}
|
1323
|
-
GraphqlChannel stopped streaming from graphql-subscription:fe23d4ce-5e66-40cb-88f6-7879cab3471a
|
1324
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1744f544ece"}
|
1325
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1744f54a765"}
|
1326
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1327
|
-
GraphqlChannel stopped streaming from graphql-subscription:fc8030e6-e7dd-4c17-9048-a75a11db77bb
|
1328
|
-
GraphqlChannel stopped streaming from graphql-subscription:a54d0c1b-c73b-4e8c-b4f1-40707999fcd9
|
1329
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1330
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1331
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1332
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1333
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1334
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1335
|
-
GraphqlChannel is streaming from graphql-subscription:99723d49-4c84-4cb2-9274-5ae02faa1d7d
|
1336
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1337
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1338
|
-
[ActionCable] Broadcasting to graphql-subscription:99723d49-4c84-4cb2-9274-5ae02faa1d7d: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
1339
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:99723d49-4c84-4cb2-9274-5ae02faa1d7d)
|
1340
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 10:59:16 -0400
|
1341
|
-
GraphqlChannel stopped streaming from graphql-subscription:78af6e30-dbb4-4b79-b195-bf8acb35faf4
|
1342
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1343
|
-
GraphqlChannel stopped streaming from graphql-subscription:d531bd65-6999-4ba0-b13d-0dc167f699f6
|
1344
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1345
|
-
GraphqlChannel stopped streaming from graphql-subscription:99723d49-4c84-4cb2-9274-5ae02faa1d7d
|
1346
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1347
|
-
-----------------------------------------------------------
|
1348
|
-
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
1349
|
-
-----------------------------------------------------------
|
1350
|
-
Started GET "/" for 127.0.0.1 at 2020-09-02 15:40:44 -0400
|
1351
|
-
Processing by PagesController#show as HTML
|
1352
|
-
Rendering pages/show.html within layouts/application
|
1353
|
-
Rendered pages/show.html within layouts/application (5.2ms)
|
1354
|
-
Completed 200 OK in 489ms (Views: 483.7ms)
|
1355
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-09-02 15:40:44 -0400
|
1356
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-02 15:40:44 -0400
|
1357
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 15:40:44 -0400
|
1358
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1359
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1360
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1361
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1362
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1363
|
-
GraphqlChannel is streaming from graphql-subscription:091744f6-8807-4767-ae7f-30b54888498b
|
1364
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1365
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1366
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1367
|
-
GraphqlChannel is streaming from graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7
|
1368
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1369
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
1370
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
1371
|
-
[ActionCable] Broadcasting to graphql-subscription:091744f6-8807-4767-ae7f-30b54888498b: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
1372
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:091744f6-8807-4767-ae7f-30b54888498b)
|
1373
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>2})
|
1374
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
1375
|
-
[ActionCable] Broadcasting to graphql-subscription:091744f6-8807-4767-ae7f-30b54888498b: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
1376
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:091744f6-8807-4767-ae7f-30b54888498b)
|
1377
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>3})
|
1378
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
1379
|
-
[ActionCable] Broadcasting to graphql-subscription:091744f6-8807-4767-ae7f-30b54888498b: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
1380
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:091744f6-8807-4767-ae7f-30b54888498b)
|
1381
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>1})
|
1382
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
1383
|
-
[ActionCable] Broadcasting to graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
1384
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7)
|
1385
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>2})
|
1386
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
1387
|
-
[ActionCable] Broadcasting to graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
1388
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7)
|
1389
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17450576c4c"}
|
1390
|
-
GraphqlChannel stopped streaming from graphql-subscription:091744f6-8807-4767-ae7f-30b54888498b
|
1391
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1392
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"17450576c4c\"}", "data"=>"{\"field\":\"payload\",\"arguments\":{\"id\":\"updates-1\"},\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"17450576c4c"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
1393
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>3})
|
1394
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
1395
|
-
[ActionCable] Broadcasting to graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
1396
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7)
|
1397
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>4})
|
1398
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
1399
|
-
[ActionCable] Broadcasting to graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
1400
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7)
|
1401
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 15:40:45 -0400
|
1402
|
-
GraphqlChannel stopped streaming from graphql-subscription:d75e8e06-4785-4d9b-8eb2-33be65cc2fe7
|
1403
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1404
|
-
------------------------------------------------------------------------------------------------------------
|
1405
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
1406
|
-
------------------------------------------------------------------------------------------------------------
|
1407
|
-
Started GET "/" for 127.0.0.1 at 2020-09-02 15:40:45 -0400
|
1408
|
-
Processing by PagesController#show as HTML
|
1409
|
-
Rendering pages/show.html within layouts/application
|
1410
|
-
Rendered pages/show.html within layouts/application (0.1ms)
|
1411
|
-
Completed 200 OK in 3ms (Views: 2.1ms)
|
1412
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-02 15:40:46 -0400
|
1413
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 15:40:46 -0400
|
1414
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1415
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1416
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1417
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1418
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1419
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1420
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1421
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1422
|
-
GraphqlChannel is streaming from graphql-subscription:47457a5c-6c43-402a-82b6-b48787075ad3
|
1423
|
-
GraphqlChannel is streaming from graphql-subscription:fd6e34c2-40dd-4c85-b355-32461a210395
|
1424
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1425
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1426
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1427
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1428
|
-
GraphqlChannel is streaming from graphql-subscription:b1a130db-f7c9-41fa-8843-abb0ea277c3a
|
1429
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1430
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1431
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1432
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1433
|
-
GraphqlChannel is streaming from graphql-subscription:4bba446e-fdaf-4e76-9b57-54e1931b03d4
|
1434
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1435
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1436
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1437
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1438
|
-
GraphqlChannel is streaming from graphql-subscription:9973adfd-31b4-4cdc-879c-6624faa815d9
|
1439
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1440
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1441
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1442
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1443
|
-
GraphqlChannel is streaming from graphql-subscription:d5b19022-11bf-46b7-8405-37d295a0620f
|
1444
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1445
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1446
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1447
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1448
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1449
|
-
GraphqlChannel is streaming from graphql-subscription:9bf566f3-fc9c-41be-aa31-6120e2d7fb81
|
1450
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1451
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1452
|
-
[ActionCable] Broadcasting to graphql-subscription:d5b19022-11bf-46b7-8405-37d295a0620f: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1453
|
-
[ActionCable] Broadcasting to graphql-subscription:9bf566f3-fc9c-41be-aa31-6120e2d7fb81: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1454
|
-
[ActionCable] Broadcasting to graphql-subscription:b1a130db-f7c9-41fa-8843-abb0ea277c3a: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1455
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:d5b19022-11bf-46b7-8405-37d295a0620f)
|
1456
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:9bf566f3-fc9c-41be-aa31-6120e2d7fb81)
|
1457
|
-
[ActionCable] Broadcasting to graphql-subscription:4bba446e-fdaf-4e76-9b57-54e1931b03d4: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1458
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:b1a130db-f7c9-41fa-8843-abb0ea277c3a)
|
1459
|
-
[ActionCable] Broadcasting to graphql-subscription:9973adfd-31b4-4cdc-879c-6624faa815d9: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1460
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:4bba446e-fdaf-4e76-9b57-54e1931b03d4)
|
1461
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:9973adfd-31b4-4cdc-879c-6624faa815d9)
|
1462
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1745056fec3"}
|
1463
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17450574bdf"}
|
1464
|
-
GraphqlChannel stopped streaming from graphql-subscription:9bf566f3-fc9c-41be-aa31-6120e2d7fb81
|
1465
|
-
GraphqlChannel stopped streaming from graphql-subscription:d5b19022-11bf-46b7-8405-37d295a0620f
|
1466
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1467
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1468
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1469
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1470
|
-
[ActionCable] Broadcasting to graphql-subscription:b1a130db-f7c9-41fa-8843-abb0ea277c3a: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1471
|
-
[ActionCable] Broadcasting to graphql-subscription:4bba446e-fdaf-4e76-9b57-54e1931b03d4: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1472
|
-
[ActionCable] Broadcasting to graphql-subscription:9973adfd-31b4-4cdc-879c-6624faa815d9: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1473
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:b1a130db-f7c9-41fa-8843-abb0ea277c3a)
|
1474
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:4bba446e-fdaf-4e76-9b57-54e1931b03d4)
|
1475
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:9973adfd-31b4-4cdc-879c-6624faa815d9)
|
1476
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1745056e78e"}
|
1477
|
-
GraphqlChannel stopped streaming from graphql-subscription:b1a130db-f7c9-41fa-8843-abb0ea277c3a
|
1478
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1479
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1745056fdf9"}
|
1480
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1745057705e"}
|
1481
|
-
GraphqlChannel stopped streaming from graphql-subscription:4bba446e-fdaf-4e76-9b57-54e1931b03d4
|
1482
|
-
GraphqlChannel stopped streaming from graphql-subscription:9973adfd-31b4-4cdc-879c-6624faa815d9
|
1483
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1484
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1485
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1486
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1487
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1488
|
-
GraphqlChannel is streaming from graphql-subscription:cca71875-c3b0-4fa1-a27e-cfa5e12a18e3
|
1489
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1490
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1491
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1492
|
-
[ActionCable] Broadcasting to graphql-subscription:cca71875-c3b0-4fa1-a27e-cfa5e12a18e3: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
1493
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:cca71875-c3b0-4fa1-a27e-cfa5e12a18e3)
|
1494
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 15:40:47 -0400
|
1495
|
-
GraphqlChannel stopped streaming from graphql-subscription:47457a5c-6c43-402a-82b6-b48787075ad3
|
1496
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1497
|
-
GraphqlChannel stopped streaming from graphql-subscription:fd6e34c2-40dd-4c85-b355-32461a210395
|
1498
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1499
|
-
GraphqlChannel stopped streaming from graphql-subscription:cca71875-c3b0-4fa1-a27e-cfa5e12a18e3
|
1500
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1501
|
-
------------------------------------------------------------------------------------------------------------
|
1502
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
1503
|
-
------------------------------------------------------------------------------------------------------------
|
1504
|
-
Started GET "/" for 127.0.0.1 at 2020-09-02 15:41:04 -0400
|
1505
|
-
Processing by PagesController#show as HTML
|
1506
|
-
Rendering pages/show.html within layouts/application
|
1507
|
-
Rendered pages/show.html within layouts/application (4.9ms)
|
1508
|
-
Completed 200 OK in 440ms (Views: 436.2ms)
|
1509
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-09-02 15:41:04 -0400
|
1510
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-02 15:41:04 -0400
|
1511
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 15:41:04 -0400
|
1512
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1513
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1514
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1515
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1516
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1517
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1518
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1519
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1520
|
-
GraphqlChannel is streaming from graphql-subscription:6a8546d7-67d3-4566-9ff0-7d17893e5ddc
|
1521
|
-
GraphqlChannel is streaming from graphql-subscription:ea2c59c3-419c-45fd-9886-249dc19ccddd
|
1522
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1523
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1524
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1525
|
-
GraphqlChannel is streaming from graphql-subscription:4d5b9dc9-fadc-4484-9b94-631737b62a5f
|
1526
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1527
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1528
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1529
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1530
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1531
|
-
GraphqlChannel is streaming from graphql-subscription:5de5a2e2-2b38-4ef3-aa11-9364a4779b24
|
1532
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1533
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1534
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1535
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1536
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1537
|
-
GraphqlChannel is streaming from graphql-subscription:15eec431-01c5-4554-b4cb-7abf848846ba
|
1538
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1539
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1540
|
-
GraphqlChannel is streaming from graphql-subscription:8b761755-ce92-4f90-8e9a-6ec99f802672
|
1541
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1542
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1543
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1544
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1545
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1546
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1547
|
-
GraphqlChannel is streaming from graphql-subscription:c4903ce7-d352-417b-958a-67e6dade1bba
|
1548
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1549
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1550
|
-
[ActionCable] Broadcasting to graphql-subscription:4d5b9dc9-fadc-4484-9b94-631737b62a5f: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1551
|
-
[ActionCable] Broadcasting to graphql-subscription:8b761755-ce92-4f90-8e9a-6ec99f802672: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1552
|
-
[ActionCable] Broadcasting to graphql-subscription:5de5a2e2-2b38-4ef3-aa11-9364a4779b24: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1553
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:4d5b9dc9-fadc-4484-9b94-631737b62a5f)
|
1554
|
-
[ActionCable] Broadcasting to graphql-subscription:c4903ce7-d352-417b-958a-67e6dade1bba: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1555
|
-
[ActionCable] Broadcasting to graphql-subscription:15eec431-01c5-4554-b4cb-7abf848846ba: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1556
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:8b761755-ce92-4f90-8e9a-6ec99f802672)
|
1557
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:5de5a2e2-2b38-4ef3-aa11-9364a4779b24)
|
1558
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:c4903ce7-d352-417b-958a-67e6dade1bba)
|
1559
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:15eec431-01c5-4554-b4cb-7abf848846ba)
|
1560
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174505769ec"}
|
1561
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17450570c7b"}
|
1562
|
-
GraphqlChannel stopped streaming from graphql-subscription:8b761755-ce92-4f90-8e9a-6ec99f802672
|
1563
|
-
GraphqlChannel stopped streaming from graphql-subscription:c4903ce7-d352-417b-958a-67e6dade1bba
|
1564
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1565
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1566
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1567
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1568
|
-
[ActionCable] Broadcasting to graphql-subscription:4d5b9dc9-fadc-4484-9b94-631737b62a5f: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1569
|
-
[ActionCable] Broadcasting to graphql-subscription:5de5a2e2-2b38-4ef3-aa11-9364a4779b24: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1570
|
-
[ActionCable] Broadcasting to graphql-subscription:15eec431-01c5-4554-b4cb-7abf848846ba: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1571
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:4d5b9dc9-fadc-4484-9b94-631737b62a5f)
|
1572
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:5de5a2e2-2b38-4ef3-aa11-9364a4779b24)
|
1573
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:15eec431-01c5-4554-b4cb-7abf848846ba)
|
1574
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17450567d14"}
|
1575
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1745056c0e4"}
|
1576
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174505756f2"}
|
1577
|
-
GraphqlChannel stopped streaming from graphql-subscription:4d5b9dc9-fadc-4484-9b94-631737b62a5f
|
1578
|
-
GraphqlChannel stopped streaming from graphql-subscription:5de5a2e2-2b38-4ef3-aa11-9364a4779b24
|
1579
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1580
|
-
GraphqlChannel stopped streaming from graphql-subscription:15eec431-01c5-4554-b4cb-7abf848846ba
|
1581
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1582
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1583
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1584
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1585
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1586
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1587
|
-
GraphqlChannel is streaming from graphql-subscription:7983077f-9f40-40db-8cf1-5e6b5eb93ce6
|
1588
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1589
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1590
|
-
[ActionCable] Broadcasting to graphql-subscription:7983077f-9f40-40db-8cf1-5e6b5eb93ce6: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
1591
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:7983077f-9f40-40db-8cf1-5e6b5eb93ce6)
|
1592
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 15:41:06 -0400
|
1593
|
-
GraphqlChannel stopped streaming from graphql-subscription:ea2c59c3-419c-45fd-9886-249dc19ccddd
|
1594
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1595
|
-
GraphqlChannel stopped streaming from graphql-subscription:6a8546d7-67d3-4566-9ff0-7d17893e5ddc
|
1596
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1597
|
-
GraphqlChannel stopped streaming from graphql-subscription:7983077f-9f40-40db-8cf1-5e6b5eb93ce6
|
1598
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1599
|
-
-----------------------------------------------------------
|
1600
|
-
ActionCableSubscriptionsTest: test_it_handles_subscriptions
|
1601
|
-
-----------------------------------------------------------
|
1602
|
-
Started GET "/" for 127.0.0.1 at 2020-09-02 15:41:06 -0400
|
1603
|
-
Processing by PagesController#show as HTML
|
1604
|
-
Rendering pages/show.html within layouts/application
|
1605
|
-
Rendered pages/show.html within layouts/application (0.1ms)
|
1606
|
-
Completed 200 OK in 2ms (Views: 1.3ms)
|
1607
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-02 15:41:06 -0400
|
1608
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 15:41:06 -0400
|
1609
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1610
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1611
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1612
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1613
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1614
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1615
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1616
|
-
GraphqlChannel is streaming from graphql-subscription:2e788dc4-81db-4804-b3cf-2f6895afcb26
|
1617
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1618
|
-
GraphqlChannel is streaming from graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a
|
1619
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1620
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>1})
|
1621
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
1622
|
-
[ActionCable] Broadcasting to graphql-subscription:2e788dc4-81db-4804-b3cf-2f6895afcb26: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
1623
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:2e788dc4-81db-4804-b3cf-2f6895afcb26)
|
1624
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>2})
|
1625
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
1626
|
-
[ActionCable] Broadcasting to graphql-subscription:2e788dc4-81db-4804-b3cf-2f6895afcb26: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
1627
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:2e788dc4-81db-4804-b3cf-2f6895afcb26)
|
1628
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-1"}, "value"=>3})
|
1629
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-1: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
1630
|
-
[ActionCable] Broadcasting to graphql-subscription:2e788dc4-81db-4804-b3cf-2f6895afcb26: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
1631
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:2e788dc4-81db-4804-b3cf-2f6895afcb26)
|
1632
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>1})
|
1633
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzE\"}"
|
1634
|
-
[ActionCable] Broadcasting to graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a: {:result=>{"data"=>{"payload"=>{"value"=>1}}}, :more=>true}
|
1635
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>1}}}, "more"=>true} (via streamed from graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a)
|
1636
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>2})
|
1637
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzI\"}"
|
1638
|
-
[ActionCable] Broadcasting to graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a: {:result=>{"data"=>{"payload"=>{"value"=>2}}}, :more=>true}
|
1639
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>2}}}, "more"=>true} (via streamed from graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a)
|
1640
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1745057222a"}
|
1641
|
-
GraphqlChannel stopped streaming from graphql-subscription:2e788dc4-81db-4804-b3cf-2f6895afcb26
|
1642
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1643
|
-
Could not execute command from ({"command"=>"message", "identifier"=>"{\"channel\":\"GraphqlChannel\",\"id\":\"1745057222a\"}", "data"=>"{\"field\":\"payload\",\"arguments\":{\"id\":\"updates-1\"},\"value\":4,\"action\":\"make_trigger\"}"}) [RuntimeError - Unable to find subscription with identifier: {"channel":"GraphqlChannel","id":"1745057222a"}]: /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:78:in `find' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:55:in `perform_action' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/subscriptions.rb:19:in `execute_command' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/connection/base.rb:87:in `dispatch_websocket_message' | /Users/rmosolgo/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actioncable-5.2.4.3/lib/action_cable/server/worker.rb:60:in `block in invoke'
|
1644
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>3})
|
1645
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "{\"__gid__\":\"Z2lkOi8vZHVtbXkvR3JhcGhxbENoYW5uZWw6OkV4YW1wbGVQYXlsb2FkLzM\"}"
|
1646
|
-
[ActionCable] Broadcasting to graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a: {:result=>{"data"=>{"payload"=>{"value"=>3}}}, :more=>true}
|
1647
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>3}}}, "more"=>true} (via streamed from graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a)
|
1648
|
-
GraphqlChannel#make_trigger({"field"=>"payload", "arguments"=>{"id"=>"updates-2"}, "value"=>4})
|
1649
|
-
[ActionCable] Broadcasting to graphql-event::payload:id:updates-2: "4x"
|
1650
|
-
[ActionCable] Broadcasting to graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
1651
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a)
|
1652
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-02 15:41:07 -0400
|
1653
|
-
GraphqlChannel stopped streaming from graphql-subscription:6959e782-4d50-4c5d-b9b9-f1d6542eb06a
|
1654
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1655
|
-
------------------------------------------------------------------------------------------------------------
|
1656
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
1657
|
-
------------------------------------------------------------------------------------------------------------
|
1658
|
-
Started GET "/" for 127.0.0.1 at 2020-09-15 12:14:31 -0400
|
1659
|
-
Processing by PagesController#show as HTML
|
1660
|
-
Rendering pages/show.html within layouts/application
|
1661
|
-
Rendered pages/show.html within layouts/application (6.1ms)
|
1662
|
-
Completed 200 OK in 309ms (Views: 300.0ms)
|
1663
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-09-15 12:14:31 -0400
|
1664
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-15 12:14:31 -0400
|
1665
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:14:31 -0400
|
1666
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1667
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1668
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1669
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1670
|
-
GraphqlChannel is streaming from graphql-subscription:e92cbb6b-9aae-48e8-a77e-a435208dec19
|
1671
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1672
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1673
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1674
|
-
GraphqlChannel is streaming from graphql-subscription:51d5b403-8d6f-4dd0-af30-d2dfecb8c0d2
|
1675
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1676
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1677
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1678
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1679
|
-
GraphqlChannel is streaming from graphql-subscription:4e9ed340-5a70-4721-b39e-ddbb2ebb0454
|
1680
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1681
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1682
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1683
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1684
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1685
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1686
|
-
GraphqlChannel is streaming from graphql-subscription:c69e10c5-76c0-4b9b-a21c-86deacb61b9c
|
1687
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1688
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1689
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1690
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1691
|
-
GraphqlChannel is streaming from graphql-subscription:e8c65eb5-9d7d-4795-87e7-5131b2f73758
|
1692
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1693
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1694
|
-
GraphqlChannel is streaming from graphql-subscription:d3c2b83d-c460-4749-a1c7-69eb70dda386
|
1695
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1696
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1697
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1698
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1699
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1700
|
-
GraphqlChannel is streaming from graphql-subscription:293b534f-54bb-4e37-bd83-d196bc824c56
|
1701
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1702
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1703
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1704
|
-
[ActionCable] Broadcasting to graphql-subscription:4e9ed340-5a70-4721-b39e-ddbb2ebb0454: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1705
|
-
[ActionCable] Broadcasting to graphql-subscription:d3c2b83d-c460-4749-a1c7-69eb70dda386: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1706
|
-
[ActionCable] Broadcasting to graphql-subscription:c69e10c5-76c0-4b9b-a21c-86deacb61b9c: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1707
|
-
[ActionCable] Broadcasting to graphql-subscription:293b534f-54bb-4e37-bd83-d196bc824c56: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1708
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:4e9ed340-5a70-4721-b39e-ddbb2ebb0454)
|
1709
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:d3c2b83d-c460-4749-a1c7-69eb70dda386)
|
1710
|
-
[ActionCable] Broadcasting to graphql-subscription:e8c65eb5-9d7d-4795-87e7-5131b2f73758: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1711
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:c69e10c5-76c0-4b9b-a21c-86deacb61b9c)
|
1712
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:293b534f-54bb-4e37-bd83-d196bc824c56)
|
1713
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:e8c65eb5-9d7d-4795-87e7-5131b2f73758)
|
1714
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174928c81fe"}
|
1715
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174928d6fb1"}
|
1716
|
-
GraphqlChannel stopped streaming from graphql-subscription:d3c2b83d-c460-4749-a1c7-69eb70dda386
|
1717
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1718
|
-
GraphqlChannel stopped streaming from graphql-subscription:293b534f-54bb-4e37-bd83-d196bc824c56
|
1719
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1720
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1721
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1722
|
-
[ActionCable] Broadcasting to graphql-subscription:4e9ed340-5a70-4721-b39e-ddbb2ebb0454: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1723
|
-
[ActionCable] Broadcasting to graphql-subscription:c69e10c5-76c0-4b9b-a21c-86deacb61b9c: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1724
|
-
[ActionCable] Broadcasting to graphql-subscription:e8c65eb5-9d7d-4795-87e7-5131b2f73758: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1725
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:4e9ed340-5a70-4721-b39e-ddbb2ebb0454)
|
1726
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:c69e10c5-76c0-4b9b-a21c-86deacb61b9c)
|
1727
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:e8c65eb5-9d7d-4795-87e7-5131b2f73758)
|
1728
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174928d59e8"}
|
1729
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174928cd9ae"}
|
1730
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174928d2977"}
|
1731
|
-
GraphqlChannel stopped streaming from graphql-subscription:4e9ed340-5a70-4721-b39e-ddbb2ebb0454
|
1732
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1733
|
-
GraphqlChannel stopped streaming from graphql-subscription:e8c65eb5-9d7d-4795-87e7-5131b2f73758
|
1734
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1735
|
-
GraphqlChannel stopped streaming from graphql-subscription:c69e10c5-76c0-4b9b-a21c-86deacb61b9c
|
1736
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1737
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1738
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1739
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1740
|
-
GraphqlChannel is streaming from graphql-subscription:b444d987-5675-42b4-81f6-9940954c0a2c
|
1741
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1742
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1743
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1744
|
-
[ActionCable] Broadcasting to graphql-subscription:b444d987-5675-42b4-81f6-9940954c0a2c: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
1745
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:b444d987-5675-42b4-81f6-9940954c0a2c)
|
1746
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:15:02 -0400
|
1747
|
-
GraphqlChannel stopped streaming from graphql-subscription:e92cbb6b-9aae-48e8-a77e-a435208dec19
|
1748
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1749
|
-
GraphqlChannel stopped streaming from graphql-subscription:51d5b403-8d6f-4dd0-af30-d2dfecb8c0d2
|
1750
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1751
|
-
GraphqlChannel stopped streaming from graphql-subscription:b444d987-5675-42b4-81f6-9940954c0a2c
|
1752
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1753
|
-
------------------------------------------------------------------------------------------------------------
|
1754
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
1755
|
-
------------------------------------------------------------------------------------------------------------
|
1756
|
-
Started GET "/" for 127.0.0.1 at 2020-09-15 12:18:27 -0400
|
1757
|
-
Processing by PagesController#show as HTML
|
1758
|
-
Rendering pages/show.html within layouts/application
|
1759
|
-
Rendered pages/show.html within layouts/application (1.9ms)
|
1760
|
-
Completed 200 OK in 300ms (Views: 296.4ms)
|
1761
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-09-15 12:18:27 -0400
|
1762
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-15 12:18:27 -0400
|
1763
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:18:27 -0400
|
1764
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1765
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1766
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1767
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1768
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1769
|
-
GraphqlChannel is streaming from graphql-subscription:7cbec04c-99c8-44cf-8b3e-cdc1b6e96842
|
1770
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1771
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1772
|
-
GraphqlChannel is streaming from graphql-subscription:e77f3d3b-3aa9-418b-bc12-4817eda0d995
|
1773
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1774
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1775
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1776
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1777
|
-
GraphqlChannel is streaming from graphql-subscription:fe406b66-9c61-49fa-aa64-665c70f0e6b9
|
1778
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1779
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1780
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1781
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1782
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1783
|
-
GraphqlChannel is streaming from graphql-subscription:04022f39-5838-45ec-9417-7c8fb7ea6b34
|
1784
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1785
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1786
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1787
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1788
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1789
|
-
GraphqlChannel is streaming from graphql-subscription:46709ebc-9534-4927-a4d8-65ecf6bf4a26
|
1790
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1791
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1792
|
-
GraphqlChannel is streaming from graphql-subscription:191bff83-9c07-4e12-ab88-6165391f31cb
|
1793
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1794
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1795
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1796
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1797
|
-
GraphqlChannel is streaming from graphql-subscription:257da132-8a46-4292-b56c-eda81f339cef
|
1798
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1799
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1800
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1801
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1802
|
-
[ActionCable] Broadcasting to graphql-subscription:191bff83-9c07-4e12-ab88-6165391f31cb: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1803
|
-
[ActionCable] Broadcasting to graphql-subscription:257da132-8a46-4292-b56c-eda81f339cef: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1804
|
-
[ActionCable] Broadcasting to graphql-subscription:fe406b66-9c61-49fa-aa64-665c70f0e6b9: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1805
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:257da132-8a46-4292-b56c-eda81f339cef)
|
1806
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:191bff83-9c07-4e12-ab88-6165391f31cb)
|
1807
|
-
[ActionCable] Broadcasting to graphql-subscription:04022f39-5838-45ec-9417-7c8fb7ea6b34: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1808
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:fe406b66-9c61-49fa-aa64-665c70f0e6b9)
|
1809
|
-
[ActionCable] Broadcasting to graphql-subscription:46709ebc-9534-4927-a4d8-65ecf6bf4a26: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1810
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:04022f39-5838-45ec-9417-7c8fb7ea6b34)
|
1811
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:46709ebc-9534-4927-a4d8-65ecf6bf4a26)
|
1812
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174929028dd"}
|
1813
|
-
GraphqlChannel stopped streaming from graphql-subscription:257da132-8a46-4292-b56c-eda81f339cef
|
1814
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1815
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174928ff577"}
|
1816
|
-
GraphqlChannel stopped streaming from graphql-subscription:191bff83-9c07-4e12-ab88-6165391f31cb
|
1817
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1818
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1819
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1820
|
-
[ActionCable] Broadcasting to graphql-subscription:fe406b66-9c61-49fa-aa64-665c70f0e6b9: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1821
|
-
[ActionCable] Broadcasting to graphql-subscription:04022f39-5838-45ec-9417-7c8fb7ea6b34: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1822
|
-
[ActionCable] Broadcasting to graphql-subscription:46709ebc-9534-4927-a4d8-65ecf6bf4a26: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1823
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:46709ebc-9534-4927-a4d8-65ecf6bf4a26)
|
1824
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:fe406b66-9c61-49fa-aa64-665c70f0e6b9)
|
1825
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:04022f39-5838-45ec-9417-7c8fb7ea6b34)
|
1826
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:20:21 -0400
|
1827
|
-
GraphqlChannel stopped streaming from graphql-subscription:7cbec04c-99c8-44cf-8b3e-cdc1b6e96842
|
1828
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1829
|
-
GraphqlChannel stopped streaming from graphql-subscription:e77f3d3b-3aa9-418b-bc12-4817eda0d995
|
1830
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1831
|
-
GraphqlChannel stopped streaming from graphql-subscription:fe406b66-9c61-49fa-aa64-665c70f0e6b9
|
1832
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1833
|
-
GraphqlChannel stopped streaming from graphql-subscription:04022f39-5838-45ec-9417-7c8fb7ea6b34
|
1834
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1835
|
-
GraphqlChannel stopped streaming from graphql-subscription:46709ebc-9534-4927-a4d8-65ecf6bf4a26
|
1836
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1837
|
-
------------------------------------------------------------------------------------------------------------
|
1838
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
1839
|
-
------------------------------------------------------------------------------------------------------------
|
1840
|
-
Started GET "/" for 127.0.0.1 at 2020-09-15 12:31:36 -0400
|
1841
|
-
Processing by PagesController#show as HTML
|
1842
|
-
Rendering pages/show.html within layouts/application
|
1843
|
-
Rendered pages/show.html within layouts/application (3.2ms)
|
1844
|
-
Completed 200 OK in 377ms (Views: 366.6ms)
|
1845
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-09-15 12:31:37 -0400
|
1846
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-15 12:31:37 -0400
|
1847
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:31:37 -0400
|
1848
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1849
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1850
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1851
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1852
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1853
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1854
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1855
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1856
|
-
GraphqlChannel is streaming from graphql-subscription:9c7fb45b-1212-4e8b-b219-e8005a0a2680
|
1857
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1858
|
-
GraphqlChannel is streaming from graphql-subscription:42308c61-585c-4e80-8f1e-fed0e0165a46
|
1859
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1860
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1861
|
-
GraphqlChannel is streaming from graphql-subscription:29628040-833a-4e1a-bdbc-005cad51d767
|
1862
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1863
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1864
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1865
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1866
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1867
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1868
|
-
GraphqlChannel is streaming from graphql-subscription:ef50ef75-4347-49fa-8cd7-2faca57807a2
|
1869
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1870
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1871
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1872
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1873
|
-
GraphqlChannel is streaming from graphql-subscription:fa8dc4d1-b9a6-49a0-a0a9-615ce59fe8a7
|
1874
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1875
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1876
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1877
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1878
|
-
GraphqlChannel is streaming from graphql-subscription:a083c341-7650-44d4-83eb-8d8c5a11e809
|
1879
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1880
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1881
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1882
|
-
GraphqlChannel is streaming from graphql-subscription:c24bd7dc-3e16-4e6b-8fa1-ac5067da80bf
|
1883
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1884
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1885
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1886
|
-
[ActionCable] Broadcasting to graphql-subscription:a083c341-7650-44d4-83eb-8d8c5a11e809: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1887
|
-
[ActionCable] Broadcasting to graphql-subscription:c24bd7dc-3e16-4e6b-8fa1-ac5067da80bf: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1888
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:a083c341-7650-44d4-83eb-8d8c5a11e809)
|
1889
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:c24bd7dc-3e16-4e6b-8fa1-ac5067da80bf)
|
1890
|
-
[ActionCable] Broadcasting to graphql-subscription:29628040-833a-4e1a-bdbc-005cad51d767: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1891
|
-
[ActionCable] Broadcasting to graphql-subscription:ef50ef75-4347-49fa-8cd7-2faca57807a2: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1892
|
-
[ActionCable] Broadcasting to graphql-subscription:fa8dc4d1-b9a6-49a0-a0a9-615ce59fe8a7: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1893
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:29628040-833a-4e1a-bdbc-005cad51d767)
|
1894
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:fa8dc4d1-b9a6-49a0-a0a9-615ce59fe8a7)
|
1895
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:ef50ef75-4347-49fa-8cd7-2faca57807a2)
|
1896
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174929c97fc"}
|
1897
|
-
GraphqlChannel stopped streaming from graphql-subscription:a083c341-7650-44d4-83eb-8d8c5a11e809
|
1898
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1899
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174929c56ca"}
|
1900
|
-
GraphqlChannel stopped streaming from graphql-subscription:c24bd7dc-3e16-4e6b-8fa1-ac5067da80bf
|
1901
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1902
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1903
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1904
|
-
[ActionCable] Broadcasting to graphql-subscription:29628040-833a-4e1a-bdbc-005cad51d767: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1905
|
-
[ActionCable] Broadcasting to graphql-subscription:ef50ef75-4347-49fa-8cd7-2faca57807a2: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1906
|
-
[ActionCable] Broadcasting to graphql-subscription:fa8dc4d1-b9a6-49a0-a0a9-615ce59fe8a7: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
1907
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:fa8dc4d1-b9a6-49a0-a0a9-615ce59fe8a7)
|
1908
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:29628040-833a-4e1a-bdbc-005cad51d767)
|
1909
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:ef50ef75-4347-49fa-8cd7-2faca57807a2)
|
1910
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:32:34 -0400
|
1911
|
-
GraphqlChannel stopped streaming from graphql-subscription:9c7fb45b-1212-4e8b-b219-e8005a0a2680
|
1912
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1913
|
-
GraphqlChannel stopped streaming from graphql-subscription:42308c61-585c-4e80-8f1e-fed0e0165a46
|
1914
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1915
|
-
GraphqlChannel stopped streaming from graphql-subscription:29628040-833a-4e1a-bdbc-005cad51d767
|
1916
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1917
|
-
GraphqlChannel stopped streaming from graphql-subscription:ef50ef75-4347-49fa-8cd7-2faca57807a2
|
1918
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1919
|
-
GraphqlChannel stopped streaming from graphql-subscription:fa8dc4d1-b9a6-49a0-a0a9-615ce59fe8a7
|
1920
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1921
|
-
------------------------------------------------------------------------------------------------------------
|
1922
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
1923
|
-
------------------------------------------------------------------------------------------------------------
|
1924
|
-
Started GET "/" for 127.0.0.1 at 2020-09-15 12:32:55 -0400
|
1925
|
-
Processing by PagesController#show as HTML
|
1926
|
-
Rendering pages/show.html within layouts/application
|
1927
|
-
Rendered pages/show.html within layouts/application (2.1ms)
|
1928
|
-
Completed 200 OK in 1016ms (Views: 1008.9ms)
|
1929
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-09-15 12:32:56 -0400
|
1930
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-15 12:32:56 -0400
|
1931
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:32:56 -0400
|
1932
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
1933
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1934
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1935
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
1936
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1937
|
-
GraphqlChannel is streaming from graphql-subscription:3dd3f8db-7e4e-417f-a75c-d5d469111b0a
|
1938
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
1939
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
1940
|
-
GraphqlChannel is streaming from graphql-subscription:8c975b78-833c-4d84-b1e1-6d1e401ac4cd
|
1941
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
1942
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1943
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1944
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1945
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1946
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1947
|
-
GraphqlChannel is streaming from graphql-subscription:cb8b1622-1742-4b7d-a10b-33d1cc647c8b
|
1948
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1949
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1950
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1951
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1952
|
-
GraphqlChannel is streaming from graphql-subscription:adec0c8b-4158-470c-9fff-6a8cacf432e2
|
1953
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1954
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
1955
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1956
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1957
|
-
GraphqlChannel is streaming from graphql-subscription:777d6d92-5960-4608-bdef-74981b6801f8
|
1958
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1959
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1960
|
-
GraphqlChannel is streaming from graphql-subscription:aea2b4e7-1e9f-482b-85f0-9253f8265e2b
|
1961
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1962
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1963
|
-
GraphqlChannel is transmitting the subscription confirmation
|
1964
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
1965
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
1966
|
-
GraphqlChannel is streaming from graphql-subscription:e319bd11-9521-41b6-bf4d-995edd616720
|
1967
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
1968
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
1969
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
1970
|
-
[ActionCable] Broadcasting to graphql-subscription:aea2b4e7-1e9f-482b-85f0-9253f8265e2b: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1971
|
-
[ActionCable] Broadcasting to graphql-subscription:e319bd11-9521-41b6-bf4d-995edd616720: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
1972
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:e319bd11-9521-41b6-bf4d-995edd616720)
|
1973
|
-
[ActionCable] Broadcasting to graphql-subscription:cb8b1622-1742-4b7d-a10b-33d1cc647c8b: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1974
|
-
[ActionCable] Broadcasting to graphql-subscription:adec0c8b-4158-470c-9fff-6a8cacf432e2: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1975
|
-
[ActionCable] Broadcasting to graphql-subscription:777d6d92-5960-4608-bdef-74981b6801f8: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
1976
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:cb8b1622-1742-4b7d-a10b-33d1cc647c8b)
|
1977
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:aea2b4e7-1e9f-482b-85f0-9253f8265e2b)
|
1978
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:adec0c8b-4158-470c-9fff-6a8cacf432e2)
|
1979
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:777d6d92-5960-4608-bdef-74981b6801f8)
|
1980
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:33:31 -0400
|
1981
|
-
GraphqlChannel stopped streaming from graphql-subscription:3dd3f8db-7e4e-417f-a75c-d5d469111b0a
|
1982
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
1983
|
-
GraphqlChannel stopped streaming from graphql-subscription:8c975b78-833c-4d84-b1e1-6d1e401ac4cd
|
1984
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
1985
|
-
GraphqlChannel stopped streaming from graphql-subscription:cb8b1622-1742-4b7d-a10b-33d1cc647c8b
|
1986
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1987
|
-
GraphqlChannel stopped streaming from graphql-subscription:adec0c8b-4158-470c-9fff-6a8cacf432e2
|
1988
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1989
|
-
GraphqlChannel stopped streaming from graphql-subscription:777d6d92-5960-4608-bdef-74981b6801f8
|
1990
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1991
|
-
GraphqlChannel stopped streaming from graphql-subscription:aea2b4e7-1e9f-482b-85f0-9253f8265e2b
|
1992
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1993
|
-
GraphqlChannel stopped streaming from graphql-subscription:e319bd11-9521-41b6-bf4d-995edd616720
|
1994
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
1995
|
-
------------------------------------------------------------------------------------------------------------
|
1996
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
1997
|
-
------------------------------------------------------------------------------------------------------------
|
1998
|
-
Started GET "/" for 127.0.0.1 at 2020-09-15 12:33:47 -0400
|
1999
|
-
Processing by PagesController#show as HTML
|
2000
|
-
Rendering pages/show.html within layouts/application
|
2001
|
-
Rendered pages/show.html within layouts/application (3.2ms)
|
2002
|
-
Completed 200 OK in 576ms (Views: 570.1ms)
|
2003
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-09-15 12:33:47 -0400
|
2004
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-15 12:33:47 -0400
|
2005
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:33:47 -0400
|
2006
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
2007
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2008
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2009
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
2010
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2011
|
-
GraphqlChannel is streaming from graphql-subscription:c7e432c2-da75-4287-8a16-d47705560cc4
|
2012
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
2013
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
2014
|
-
GraphqlChannel is streaming from graphql-subscription:af49b1de-2216-4f7d-86b8-9ab15aadbb83
|
2015
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
2016
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2017
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2018
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
2019
|
-
GraphqlChannel is streaming from graphql-subscription:03a27f72-de25-4432-8702-1c8aae424d79
|
2020
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2021
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2022
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2023
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
2024
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2025
|
-
GraphqlChannel is streaming from graphql-subscription:11c2f811-0695-4f65-b354-701c89fc1754
|
2026
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2027
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2028
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
2029
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2030
|
-
GraphqlChannel is streaming from graphql-subscription:1847880f-63db-4c70-b21b-cde4e9942548
|
2031
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2032
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2033
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
2034
|
-
GraphqlChannel is streaming from graphql-subscription:72fa786f-7417-4e74-8d58-ca880eec5dff
|
2035
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2036
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2037
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2038
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
2039
|
-
GraphqlChannel is streaming from graphql-subscription:88ad3bb3-4b78-465d-bb1d-a694e40f77af
|
2040
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2041
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2042
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
2043
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
2044
|
-
[ActionCable] Broadcasting to graphql-subscription:03a27f72-de25-4432-8702-1c8aae424d79: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
2045
|
-
[ActionCable] Broadcasting to graphql-subscription:72fa786f-7417-4e74-8d58-ca880eec5dff: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
2046
|
-
[ActionCable] Broadcasting to graphql-subscription:11c2f811-0695-4f65-b354-701c89fc1754: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
2047
|
-
[ActionCable] Broadcasting to graphql-subscription:88ad3bb3-4b78-465d-bb1d-a694e40f77af: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
2048
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:03a27f72-de25-4432-8702-1c8aae424d79)
|
2049
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:72fa786f-7417-4e74-8d58-ca880eec5dff)
|
2050
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:88ad3bb3-4b78-465d-bb1d-a694e40f77af)
|
2051
|
-
[ActionCable] Broadcasting to graphql-subscription:1847880f-63db-4c70-b21b-cde4e9942548: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
2052
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:11c2f811-0695-4f65-b354-701c89fc1754)
|
2053
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:1847880f-63db-4c70-b21b-cde4e9942548)
|
2054
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174929e49c3"}
|
2055
|
-
GraphqlChannel stopped streaming from graphql-subscription:72fa786f-7417-4e74-8d58-ca880eec5dff
|
2056
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2057
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174929d8fa6"}
|
2058
|
-
GraphqlChannel stopped streaming from graphql-subscription:88ad3bb3-4b78-465d-bb1d-a694e40f77af
|
2059
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2060
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
2061
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
2062
|
-
[ActionCable] Broadcasting to graphql-subscription:03a27f72-de25-4432-8702-1c8aae424d79: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
2063
|
-
[ActionCable] Broadcasting to graphql-subscription:11c2f811-0695-4f65-b354-701c89fc1754: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
2064
|
-
[ActionCable] Broadcasting to graphql-subscription:1847880f-63db-4c70-b21b-cde4e9942548: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
2065
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:03a27f72-de25-4432-8702-1c8aae424d79)
|
2066
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:1847880f-63db-4c70-b21b-cde4e9942548)
|
2067
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:11c2f811-0695-4f65-b354-701c89fc1754)
|
2068
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174929eb248"}
|
2069
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174929df8ea"}
|
2070
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174929e71f0"}
|
2071
|
-
GraphqlChannel stopped streaming from graphql-subscription:03a27f72-de25-4432-8702-1c8aae424d79
|
2072
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2073
|
-
GraphqlChannel stopped streaming from graphql-subscription:1847880f-63db-4c70-b21b-cde4e9942548
|
2074
|
-
GraphqlChannel stopped streaming from graphql-subscription:11c2f811-0695-4f65-b354-701c89fc1754
|
2075
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2076
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2077
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2078
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
2079
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2080
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2081
|
-
GraphqlChannel is streaming from graphql-subscription:8e6d5ca2-79b0-4529-acc3-33df40c8cd05
|
2082
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
2083
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
2084
|
-
[ActionCable] Broadcasting to graphql-subscription:8e6d5ca2-79b0-4529-acc3-33df40c8cd05: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
2085
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:8e6d5ca2-79b0-4529-acc3-33df40c8cd05)
|
2086
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 12:33:50 -0400
|
2087
|
-
GraphqlChannel stopped streaming from graphql-subscription:c7e432c2-da75-4287-8a16-d47705560cc4
|
2088
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
2089
|
-
GraphqlChannel stopped streaming from graphql-subscription:af49b1de-2216-4f7d-86b8-9ab15aadbb83
|
2090
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
2091
|
-
GraphqlChannel stopped streaming from graphql-subscription:8e6d5ca2-79b0-4529-acc3-33df40c8cd05
|
2092
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2093
|
-
------------------------------------------------------------------------------------------------------------
|
2094
|
-
ActionCableSubscriptionsTest: test_it_only_re-runs_queries_once_for_subscriptions_with_matching_fingerprints
|
2095
|
-
------------------------------------------------------------------------------------------------------------
|
2096
|
-
Started GET "/" for 127.0.0.1 at 2020-09-15 15:17:38 -0400
|
2097
|
-
Processing by PagesController#show as HTML
|
2098
|
-
Rendering pages/show.html within layouts/application
|
2099
|
-
Rendered pages/show.html within layouts/application (3.0ms)
|
2100
|
-
Completed 200 OK in 575ms (Views: 571.1ms)
|
2101
|
-
Started GET "/assets/application-12d6b104d6e30614ab4966920b56795dd2d8a8b62eb1837438dad536cb3c5afe.js" for 127.0.0.1 at 2020-09-15 15:17:39 -0400
|
2102
|
-
Started GET "/cable" for 127.0.0.1 at 2020-09-15 15:17:39 -0400
|
2103
|
-
Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 15:17:39 -0400
|
2104
|
-
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
|
2105
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2106
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2107
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-1"}})
|
2108
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2109
|
-
GraphqlChannel#execute({"query"=>"subscription($id: ID!) { payload(id: $id) { value } }", "variables"=>{"id"=>"updates-2"}})
|
2110
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-1
|
2111
|
-
GraphqlChannel is streaming from graphql-subscription:284bcff6-2a88-4f6f-8724-40f36c21c94f
|
2112
|
-
GraphqlChannel is streaming from graphql-event::payload:id:updates-2
|
2113
|
-
GraphqlChannel is streaming from graphql-subscription:36f7c13e-3575-49cb-a913-3ff96c85f681
|
2114
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2115
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2116
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
2117
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2118
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2119
|
-
GraphqlChannel is streaming from graphql-subscription:23a7409e-4e91-4ff7-8c99-c780222bf0be
|
2120
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2121
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
2122
|
-
GraphqlChannel is streaming from graphql-subscription:5062b7ae-83da-42e5-abd9-22cff369a4e1
|
2123
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2124
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2125
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2126
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint1 { counterIncremented { newValue } }", "variables"=>{}})
|
2127
|
-
GraphqlChannel is streaming from graphql-subscription:6e7122cb-f305-4667-b342-12631dd988f2
|
2128
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2129
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2130
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2131
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
2132
|
-
GraphqlChannel is streaming from graphql-subscription:695fde16-c339-4a02-adb0-e1a6ce3171de
|
2133
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2134
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2135
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2136
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
2137
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2138
|
-
GraphqlChannel is streaming from graphql-subscription:d01a5872-5015-4bc2-a5f3-34f1ba958b4f
|
2139
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2140
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
2141
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
2142
|
-
[ActionCable] Broadcasting to graphql-subscription:23a7409e-4e91-4ff7-8c99-c780222bf0be: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
2143
|
-
[ActionCable] Broadcasting to graphql-subscription:5062b7ae-83da-42e5-abd9-22cff369a4e1: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
2144
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:23a7409e-4e91-4ff7-8c99-c780222bf0be)
|
2145
|
-
[ActionCable] Broadcasting to graphql-subscription:695fde16-c339-4a02-adb0-e1a6ce3171de: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
2146
|
-
[ActionCable] Broadcasting to graphql-subscription:6e7122cb-f305-4667-b342-12631dd988f2: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, :more=>true}
|
2147
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:5062b7ae-83da-42e5-abd9-22cff369a4e1)
|
2148
|
-
[ActionCable] Broadcasting to graphql-subscription:d01a5872-5015-4bc2-a5f3-34f1ba958b4f: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, :more=>true}
|
2149
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:695fde16-c339-4a02-adb0-e1a6ce3171de)
|
2150
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>1}}}, "more"=>true} (via streamed from graphql-subscription:6e7122cb-f305-4667-b342-12631dd988f2)
|
2151
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>2}}}, "more"=>true} (via streamed from graphql-subscription:d01a5872-5015-4bc2-a5f3-34f1ba958b4f)
|
2152
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1749333b2d1"}
|
2153
|
-
GraphqlChannel stopped streaming from graphql-subscription:695fde16-c339-4a02-adb0-e1a6ce3171de
|
2154
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2155
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1749333f0cb"}
|
2156
|
-
GraphqlChannel stopped streaming from graphql-subscription:d01a5872-5015-4bc2-a5f3-34f1ba958b4f
|
2157
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2158
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
2159
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
2160
|
-
[ActionCable] Broadcasting to graphql-subscription:23a7409e-4e91-4ff7-8c99-c780222bf0be: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
2161
|
-
[ActionCable] Broadcasting to graphql-subscription:5062b7ae-83da-42e5-abd9-22cff369a4e1: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
2162
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:23a7409e-4e91-4ff7-8c99-c780222bf0be)
|
2163
|
-
[ActionCable] Broadcasting to graphql-subscription:6e7122cb-f305-4667-b342-12631dd988f2: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, :more=>true}
|
2164
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:5062b7ae-83da-42e5-abd9-22cff369a4e1)
|
2165
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>3}}}, "more"=>true} (via streamed from graphql-subscription:6e7122cb-f305-4667-b342-12631dd988f2)
|
2166
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"17493348989"}
|
2167
|
-
GraphqlChannel stopped streaming from graphql-subscription:5062b7ae-83da-42e5-abd9-22cff369a4e1
|
2168
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2169
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"174933470e8"}
|
2170
|
-
GraphqlChannel stopped streaming from graphql-subscription:6e7122cb-f305-4667-b342-12631dd988f2
|
2171
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2172
|
-
Unsubscribing from channel: {"channel":"GraphqlChannel","id":"1749334eb15"}
|
2173
|
-
GraphqlChannel stopped streaming from graphql-subscription:23a7409e-4e91-4ff7-8c99-c780222bf0be
|
2174
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|
2175
|
-
GraphqlChannel is transmitting the subscription confirmation
|
2176
|
-
GraphqlChannel#execute({"query"=>"subscription fingerprint2 { counterIncremented { newValue } }", "variables"=>{}})
|
2177
|
-
GraphqlChannel is streaming from graphql-subscription:1c66b637-d6bc-4aeb-9250-52f21c69f9dc
|
2178
|
-
GraphqlChannel is streaming from graphql-event::counterIncremented:
|
2179
|
-
GraphqlChannel transmitting {:result=>{"data"=>{}}, :more=>true}
|
2180
|
-
GraphqlChannel#make_trigger({"field"=>"counterIncremented", "arguments"=>{}, "value"=>nil})
|
2181
|
-
[ActionCable] Broadcasting to graphql-event::counterIncremented:: "null"
|
2182
|
-
[ActionCable] Broadcasting to graphql-subscription:1c66b637-d6bc-4aeb-9250-52f21c69f9dc: {:result=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, :more=>true}
|
2183
|
-
GraphqlChannel transmitting {"result"=>{"data"=>{"counterIncremented"=>{"newValue"=>4}}}, "more"=>true} (via streamed from graphql-subscription:1c66b637-d6bc-4aeb-9250-52f21c69f9dc)
|
2184
|
-
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2020-09-15 15:17:41 -0400
|
2185
|
-
GraphqlChannel stopped streaming from graphql-subscription:284bcff6-2a88-4f6f-8724-40f36c21c94f
|
2186
|
-
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-1
|
2187
|
-
GraphqlChannel stopped streaming from graphql-subscription:36f7c13e-3575-49cb-a913-3ff96c85f681
|
192
|
+
[ActionCable] Broadcasting to graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad: {:result=>{"data"=>{"payload"=>{"value"=>400}}}, :more=>true}
|
193
|
+
GraphqlChannel transmitting {"result"=>{"data"=>{"payload"=>{"value"=>400}}}, "more"=>true} (via streamed from graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad)
|
194
|
+
Finished "/cable/" [WebSocket] for 127.0.0.1 at 2018-10-05 11:46:25 -0400
|
195
|
+
GraphqlChannel stopped streaming from graphql-subscription:c781954b-7b9a-4742-9f9c-69b869d85fad
|
2188
196
|
GraphqlChannel stopped streaming from graphql-event::payload:id:updates-2
|
2189
|
-
GraphqlChannel stopped streaming from graphql-subscription:1c66b637-d6bc-4aeb-9250-52f21c69f9dc
|
2190
|
-
GraphqlChannel stopped streaming from graphql-event::counterIncremented:
|