Julien Boeuf
232d625a84
Merge branch 'master' of github.com:grpc/grpc into core_creds_api_change
9 years ago
jboeuf
930df6f13c
Merge pull request #4096 from jboeuf/update_ssl_cert
...
Updating the server1 cert so that it can be used with Go.
9 years ago
Julien Boeuf
802f6b6724
Merge branch 'master' of https://github.com/grpc/grpc into update_ssl_cert
9 years ago
Julien Boeuf
6049ebd8d2
More C++ fixes (the merge did not quite work...).
9 years ago
Julien Boeuf
9a437c2c46
Forgot to fix driver.cc somehow...
9 years ago
Julien Boeuf
e32075fd8a
Fixing tests.
9 years ago
Jan Tattermusch
7fc77e06ba
Merge pull request #4139 from grpc/release-0_11
...
Merge release-0_11 into master
9 years ago
David G. Quintas
f3923f0316
Merge pull request #4142 from yang-g/cancel
...
Handle Cancel before start.
9 years ago
Nathaniel Manista
fb080a754a
Merge pull request #4135 from soltanmm/example-fix
...
Add missing grace value to server stop in Python example.
9 years ago
Julien Boeuf
675b5ce861
Merge branch 'master' of github.com:grpc/grpc into core_creds_api_change
9 years ago
jboeuf
b0d1e3d95f
Merge pull request #8 from soltanmm/credz
...
Update Python C wrapping layers to new credentials API
9 years ago
Jan Tattermusch
ab88da26ba
Merge pull request #4141 from carl-mastrangelo/fixLink
...
Fix dead link in doc
9 years ago
yang-g
b0e5e082b0
include header
9 years ago
yang-g
a89bf50cf1
Handle cancel before start case
9 years ago
Masood Malekghassemi
7fdfe1afd8
Bandaid over differences in the C API for Python credentials
9 years ago
Carl Mastrangelo
f030b8dae8
Fix dead link in doc
9 years ago
Nicolas Noble
bef0d6d9f6
Merge pull request #4058 from murgatroid99/node_build_yaml
...
Generate all file lists and build target lists in binding.gyp from build.yaml
9 years ago
Sree Kuchibhotla
3cabe69f02
Merge pull request #4138 from dgquintas/std_thread
...
Fix naming issue in stress_test
9 years ago
David Garcia Quintas
5dc96fb5b8
Comments
9 years ago
David Garcia Quintas
5de1616336
Fix naming issue in stress_test
...
(via ahh@google.com )
Under some configurations gRPC includes google3 base headers. google3
has a namespace "thread" which mixes poorly with unqualified use of the
type std::thread; adding that namespace to various google3 headers
breaks this test.
9 years ago
Jorge Canizales
6b116ac825
Merge pull request #4134 from ejona86/improve-language
...
Improve grammar/language for clarity
9 years ago
Masood Malekghassemi
77ebadc662
Add grace=0 to server stop in Python example
...
Fixes #4122
9 years ago
Eric Anderson
94aa0fd393
Improve grammar/language for clarity
9 years ago
Masood Malekghassemi
8e269cfd62
Merge pull request #4044 from nathanielmanistaatgoogle/exception-str
...
Add a useful __str__ method to face exceptions
9 years ago
Michael Lumish
118c0a0eec
Merge pull request #4127 from olostan/patch-1
...
Small typo of NodeJS version in README.md
9 years ago
Valentyn Shybanov
2e5ba81668
Small typo of NodeJS version in README.md
9 years ago
Tim Emiola
e695941aeb
Merge pull request #4091 from murgatroid99/node_channel_args_malloc
...
Fixed incorrect type in a malloc in Node extension
9 years ago
Michael Lumish
06029a03c5
Merge pull request #4120 from tbetbetbe/grpc_ruby_fix_compile_on_2_0_typed_free_immediately
...
Corrects compile error on ruby 2.0
9 years ago
Tim Emiola
9161a82565
Corrects compile error on ruby 2.0
9 years ago
Yang Gao
0af4b59f52
Merge pull request #4114 from jboeuf/ssl_override_doc
...
Fixing the doc to warn of the dangers for overriding the target name …
9 years ago
Michael Lumish
75065d4b1f
Merge pull request #4106 from tbetbetbe/grpc_ruby_fix_flaky_ruby_interop_test
...
Grpc ruby fix flaky ruby interop test
9 years ago
Michael Lumish
05e466e35f
Merge pull request #4107 from tbetbetbe/grpc_ruby_bidi_call_should_read_metadata
...
Grpc ruby bidi call should read metadata
9 years ago
Jorge Canizales
3edd3af222
Merge pull request #4119 from bdotdub/objc-cleanup-generated-libraries
...
Remove unused RouteGuideClient and move RemoteTestClient to tests
9 years ago
Jorge Canizales
87ffbba579
Merge pull request #4108 from bdotdub/objc-sample-update
...
ObjC: Update Sample
9 years ago
Benny Wong
a7c6c85549
Remove unused RouteGuideClient and move RemoteTestClient to tests
...
* Reference discussion: https://github.com/grpc/grpc/pull/4108#discussion-diff-44494393
9 years ago
Benny Wong
66ae6bfe46
Update Podfile to point to the right sample dependencies
9 years ago
Benny Wong
1d5adb38c4
Revert edit for generated_libraries RemoteTest
9 years ago
Julien Boeuf
112f4a3035
Fixing the doc to warn of the dangers for overriding the target name when using SSL.
9 years ago
Tim Emiola
a082435e06
Updates interop client/server logging
...
- server logger.level = WARN
- client logger.level = INFO
9 years ago
Tim Emiola
69a672e6c2
Adds standard logging to the client/server
...
- truncates the server debug log entries to make that readable
9 years ago
Tim Emiola
7d21c04b2c
Fixes a multithreading bug in the ruby rpc_server
...
This fixes the current ruby server interop test flakiness.
- The interop tests recently changed so that clients access servers in
parallel, meaning that the interop servers handle multiple rpcs at once,
which is how this bug became visible
- since this change, tests run against the ruby interop server have
failed sporadically
- the problem was that the block in #loop_handle_server_calls that is
passed to the thread pool referenced a var in an enclosing block,
which resulted in requests being processed by the wrong handler
- this fix ensures that the block to be run on the thread pool thread
does not have any references to vars in the enclosing block
9 years ago
Benny Wong
7beff53151
Update location of grpc_objective_c_plugin for sample
9 years ago
Benny Wong
3f1f5a48f7
Update ObjC sample to use the new ProtoMethod instead of GRPCMethodName
9 years ago
Tim Emiola
24fdc179c1
Ensures that bidi calls obtain metadata.
...
Fixes an omission from earlier PRs that adds support metadata.
9 years ago
Tim Emiola
b48236a2b4
Fixes an issue running the tests on Ruby2.2
9 years ago
Michael Lumish
0dd67a109a
Merge pull request #4090 from stanley-cheung/php_add_app_user_agent_string
...
PHP: append application user agent string at the beginning
9 years ago
Julien Boeuf
334314b888
Updating the server1 cert so that it can be used with Go.
...
The encoding of the issuer field in this cert is now a PRINTABLESTRING
as opposed to UTF8STRING in the previous server1.pem which was causing
the Go issue.
Fixes #4086 .
9 years ago
Louis Ryan
bf94551bcb
Merge pull request #4060 from ejona86/spec-improvements
...
Specify header value restrictions
9 years ago
murgatroid99
3236607685
Fixed incorrect type in a malloc in Node extension
9 years ago
murgatroid99
1900ca157f
Merge remote-tracking branch 'refs/remotes/grpc/master'
9 years ago