Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Only check metadata that we want: its allowed to have extra elements | Craig Tiller | 2015-07-18 |
| | |||
* | Merge github.com:grpc/grpc into we-dont-need-no-backup | Craig Tiller | 2015-06-17 |
|\ | | | | | | | | | Conflicts: include/grpc/compression.h | ||
| * | Merge pull request #2100 from tbetbetbe/grpc-ruby-adjust-rspec-output | donnadionne | 2015-06-17 |
| |\ | | | | | | | Prints test names as ruby tests run | ||
| | * | Prints test names as ruby tests run | Tim Emiola | 2015-06-17 |
| | | | |||
* | | | Merge branch 'you-complete-me' into we-dont-need-no-backup | Craig Tiller | 2015-06-17 |
|\| | | |||
| * | | Ruby shutdown api migration | Tim Emiola | 2015-06-17 |
| |/ | | | | | | | | | | | + all tests pass, - but there are a couple of workarounds - tests are flaky | ||
* | | Merge github.com:grpc/grpc into we-dont-need-no-backup | Craig Tiller | 2015-05-26 |
|\| | |||
* | | Merge github.com:grpc/grpc into we-dont-need-no-backup | Craig Tiller | 2015-05-24 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/core/surface/call.c test/core/end2end/dualstack_socket_test.c test/core/end2end/tests/early_server_shutdown_finishes_inflight_calls.c test/core/end2end/tests/early_server_shutdown_finishes_tags.c test/core/end2end/tests/graceful_server_shutdown.c test/core/end2end/tests/invoke_large_request.c test/core/end2end/tests/max_concurrent_streams.c test/core/end2end/tests/max_message_length.c test/core/end2end/tests/request_response_with_binary_metadata_and_payload.c test/core/end2end/tests/request_response_with_metadata_and_payload.c test/core/end2end/tests/request_response_with_payload.c test/core/end2end/tests/request_response_with_payload_and_call_creds.c test/core/end2end/tests/request_response_with_trailing_metadata_and_payload.c test/core/end2end/tests/request_with_large_metadata.c test/core/end2end/tests/request_with_payload.c test/core/httpcli/httpcli_test.c tools/run_tests/run_tests.py | ||
| | * | Various tweaks to improve server stability | Tim Emiola | 2015-05-22 |
| |/ | |||
| * | Encapsulate logger within GRPC module | Nick Gauthier | 2015-05-20 |
| | | |||
* | | Ensure that there's always a poller for completion | Craig Tiller | 2015-05-17 |
|/ | | | | | | The C core uses completion_queue_next as a directive that progress should be made on requests bound to that cq. If nobody is polling for completion, then a deadlock can occur (client needs to do work, but we're blocked waiting for the server). There is no scope for this to occur using the idiomatic layers (as far as I can tell), but these low level tests need to be massaged. | ||
* | Getting rid of more seemingly dead code | Craig Tiller | 2015-05-12 |
| | |||
* | make underscore a class method of GenericService | Tim Emiola | 2015-05-07 |
| | |||
* | Move Notifier into its own file | Tim Emiola | 2015-04-24 |
| | |||
* | Merge pull request #1309 from tbetbetbe/grpc_ruby_rpc_server_md | Jan Tattermusch | 2015-04-20 |
|\ | | | | | Grpc ruby add support for returning metadata to the rpc server | ||
* \ | Merge pull request #1313 from tbetbetbe/grpc_ruby_add_ruby_coverage | Jan Tattermusch | 2015-04-20 |
|\ \ | | | | | | | Add SimpleCov coverage set up for gRPC ruby | ||
* \ \ | Merge pull request #1315 from jboeuf/security_connector | Craig Tiller | 2015-04-19 |
|\ \ \ | | | | | | | | | Refactoring of core security to remove the factories. | ||
| * | | | Fixing inaccurate ruby test. | Julien Boeuf | 2015-04-18 |
| | | | | |||
* | | | | Remove usage of xray | Tim Emiola | 2015-04-17 |
|/ / / | | | | | | | | | | | | | | | | | | | | | | - xray was useful during dev testing but is neither a dev or runtime dep - its presence causes issues for libraries that handle signals themselves Also - updates grpc.gemspec with requirements | ||
| * / | Add SimpleCov coverage set up for gRPC ruby | Tim Emiola | 2015-04-17 |
|/ / | |||
| * | clarify test descriptions | Tim Emiola | 2015-04-17 |
| | | |||
| * | Adds support for updating the output metadata to calls | Tim Emiola | 2015-04-17 |
| | | |||
| * | Propagate metadata in BadStatus | Tim Emiola | 2015-04-17 |
| | | | | | | | | | | | | - allow BadStatus to contain metadata that's populated by keyword args - on servers, convert raised BadStatus metadata to trailers - on clients, convert trailers to BadStatus metadata when raising BadStatus | ||
| * | Adds a hook for returning the client connect metadata | Tim Emiola | 2015-04-17 |
| | | |||
| * | Refactor: Move the Pool out from RpcServer | Tim Emiola | 2015-04-16 |
|/ | |||
* | Adds an explicit Cancellation exception | Tim Emiola | 2015-04-15 |
| | | | | | - uses Forwardable to provide access the @call within an ActiveCall - removes redundant methods from ActiveCall | ||
* | Adds a tests that demonstrates successful cancellation | Tim Emiola | 2015-04-15 |
| | |||
* | Automatically adds a key for the jwt_aud_uri to the metadata handled by the ↵ | Tim Emiola | 2015-04-14 |
| | | | | metadata_update_proc | ||
* | Correct style errors identified by the latest version of RuboCop | Tim Emiola | 2015-04-14 |
| | |||
* | Move timeout handling into the extension | Tim Emiola | 2015-04-10 |
| | |||
* | Cleanup: remove redundant ruby code | Tim Emiola | 2015-04-10 |
| | |||
* | Updates BidiCall/ClientStub to the new Call API | Tim Emiola | 2015-04-10 |
| | |||
* | Updates ActiveCall to use the new call API | Tim Emiola | 2015-04-10 |
| | |||
* | Rewrite client_server_spec to use the new call API | Tim Emiola | 2015-04-10 |
| | |||
* | Adds symbols to access the fields in Status struct | Tim Emiola | 2015-04-10 |
| | |||
* | Adds the call operation codes | Tim Emiola | 2015-04-10 |
| | |||
* | Updates Channel#create_call to the new API | Tim Emiola | 2015-04-10 |
| | |||
* | Renables the test checking the server can send the initial bidi message | Tim Emiola | 2015-03-23 |
| | |||
* | Enables some incorrectly disabled tests | Tim Emiola | 2015-03-23 |
| | |||
* | Corrects the handling of metadata when the optional deadline is specified | Tim Emiola | 2015-03-23 |
| | |||
* | Merge pull request #1080 from tbetbetbe/grpc_ruby_add_back_server_finish_calls | Michael Lumish | 2015-03-18 |
|\ | | | | | Adds back calls to #finish at the end of server calls | ||
| * | Adds back calls to #finish at the end of server calls | Tim Emiola | 2015-03-17 |
| | | |||
* | | Exposes the metadata method in server-side ActiveCall view classes | Tim Emiola | 2015-03-17 |
|/ | |||
* | Updates ruby code affected by the secure server API change | Tim Emiola | 2015-03-05 |
| | |||
* | Removed execute permissions from README files. | Misha Brukman | 2015-03-02 |
| | |||
* | Removes a redundant canary test | Tim Emiola | 2015-02-25 |
| | |||
* | Merge pull request #783 from ↵ | Michael Lumish | 2015-02-25 |
|\ | | | | | | | | | tbetbetbe/grpc_ruby_switch_auth_to_google_auth_library_ruby Grpc ruby switch auth to google auth library ruby | ||
| * | Remove the ruby gRPC auth implementation | Tim Emiola | 2015-02-25 |
| | | |||
* | | Merge pull request #735 from jboeuf/fix_ssl_san | Craig Tiller | 2015-02-24 |
|\ \ | |/ |/| | Verifying the peer name on the X509 Certs correctly. | ||
* | | Temporarily suspend some tests that started failing because during the final ↵ | Tim Emiola | 2015-02-24 |
| | | | | | | | | shutdown |