aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Added missing dependencies to grpc++_baseGravatar David Garcia Quintas2016-07-06
|
* Merge pull request #6886 from murgatroid99/ruby_garbage_collection_fixesGravatar kpayson642016-07-06
|\ | | | | Ruby garbage collection fixes
* \ Merge pull request #7174 from dgquintas/remove_unused_status_code_enum_fileGravatar Nicolas Noble2016-07-06
|\ \ | | | | | | removed unused version of status_code_enum.h
* \ \ Merge pull request #7175 from dgquintas/algo_initGravatar Nicolas Noble2016-07-06
|\ \ \ | | | | | | | | Initialize variables in surface/call.c
* \ \ \ Merge pull request #6791 from soltanmm/painGravatar kpayson642016-07-06
|\ \ \ \ | | | | | | | | | | Make running individual Python tests less painful
* \ \ \ \ Merge pull request #7197 from kpayson64/port_server_fixGravatar Nicolas Noble2016-07-06
|\ \ \ \ \ | | | | | | | | | | | | Change port_server.py to use port 32766
* \ \ \ \ \ Merge pull request #7210 from ctiller/no-more-zookeeperGravatar Nicolas Noble2016-07-01
|\ \ \ \ \ \ | | | | | | | | | | | | | | Expunge all references to zookeeper
* \ \ \ \ \ \ Merge pull request #6893 from y-zeng/handler_http_responseGravatar Nicolas Noble2016-07-01
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add http2 status code in error_message if it's not 200
* \ \ \ \ \ \ \ Merge pull request #7218 from nicolasnoble/contrib-cmakeGravatar Nicolas Noble2016-07-01
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Contributed cmake project files.
| * | | | | | | | Regenerating project files, and adding experimental disclaimer.Gravatar Nicolas "Pixel" Noble2016-07-02
| | | | | | | | |
| * | | | | | | | Merge remote-tracking branch 'google/master' into contrib-cmakeGravatar Nicolas "Pixel" Noble2016-07-02
| |\ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | |
* | | | | | | | | Merge pull request #7162 from dgquintas/interop-cred-flag-fixGravatar David G. Quintas2016-07-01
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Removed invalid sentence from interop flag description
| | | | * | | | | | Expunge all references to zookeeperGravatar Craig Tiller2016-07-01
| |_|_|/ / / / / / |/| | | | | | | |
| | | | | * | | | Regenerate project filesGravatar Masood Malekghassemi2016-07-01
| | | | | | | | |
| | | | | * | | | Fix job_spec invocation for Python run_testsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | |
| | | | | * | | | Remove gcov special-casing for Python testsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We'll need to fix coverage testing in the future anyway (see #6894).
| | | | | * | | | Fall back to default python for test virtualenvsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | |
| | | | | * | | | Sanitize grpcio-tools command argumentsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | |
| | | | | * | | | Remove toxGravatar Masood Malekghassemi2016-07-01
| | | | | | | | |
| | | | | * | | | Make running individual Python tests less painfulGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change, running Python tests individually required building a tox environment via the run_tests script and then specifying long environment variables to filter out just the test we wanted to run (and then we wouldn't be able to get the output on interrupt, nor would we have an easy way of determining the PID of the process for debugger attachment). Now invoking the build_python.sh script creates a workable python virtual environment that includes all necessary libraries and tests (s.t. running a single test is now possible by just knowing the module name). This does not change existing supported means of running tests (e.g. through run_tests.py). An additional way of running individual tests has been introduced. Following invocation of `./tools/run_tests/build_python.sh` (or run_tests.py), one may invoke ./$VENV/bin/python -m $TEST_MODULE_NAME and acquire a single running process that *is* the test process (rather than a parent of the process). $VENV is the virtual environment name specified to `build_python.sh` (defaults to `py27`) and $TEST_MODULE_NAME is what it says on the tin.
| | | | | * | | | Organize Python tests to use grpcio-tools directlyGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moves all tests into a separate package. This does not change existing supported means of running tests (e.g. through run_tests.py).
| | | | | * | | | Ignore cython debug informationGravatar Masood Malekghassemi2016-07-01
| | | | | | | | |
| | | | | * | | | Add programmatic access to protoc in grpcio-toolsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | |
| | | | | * | | | Build Python3 grpcio-tools on OS XGravatar Masood Malekghassemi2016-07-01
| |_|_|_|/ / / / |/| | | | | | |
| | | | * | | | Change port_server.py to use port 32766Gravatar Ken Payson2016-06-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 32767 is used by filenet-powsrm
* | | | | | | | Merge pull request #7176 from ctiller/deflakeGravatar Craig Tiller2016-06-30
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | | Fix memory leak, fix error.c refcount reporting
| | | | * | | | Merge remote-tracking branch 'upstream/master' into handler_http_responseGravatar Yuchen Zeng2016-06-30
| | | | |\ \ \ \ | |_|_|_|/ / / / |/| | | | | | |
* | | | | | | | Merge pull request #6992 from y-zeng/auto-build-exampleGravatar makdharma2016-06-30
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Build objective-c examples as part of automatic tests
| | | | | | | | * Added a comment about Ruby queue destructionGravatar murgatroid992016-06-30
| | | | | | | | |
| | | | | | | | * Simplified Ruby completion queue destruction codeGravatar murgatroid992016-06-30
| | | | | | | | |
* | | | | | | | | Merge pull request #6378 from jcanizales/let-invalidate-channelsGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Add a maybe-temporary way for apps to clear the channel cache
* \ \ \ \ \ \ \ \ \ Merge pull request #7120 from makdharma/issue6746Gravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | fix for working with compressed data. Fixes #6746.
* \ \ \ \ \ \ \ \ \ \ Merge pull request #7109 from soltanmm/toolismGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Use open-source defaults to propagate Python plugin configuration
* \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7093 from murgatroid99/run_interop_override_server_fixGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Fix bug with override_server flag in run_interop_tests.py
* \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7092 from ctiller/dont_create_redundant_errorsGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dont create errors redundently in chttp2_transport.c
* \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7151 from dgquintas/eventfdGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implemented eventfd_check_availability
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7152 from nathanielmanistaatgoogle/interopGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Python server interop spec noncompliance
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7155 from stanley-cheung/php-fix-call-destroyGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHP: fix shutdown hang issue
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7161 from dgquintas/use_releaseGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated git clone URL
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7164 from dgquintas/fix_import_zuGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixed size_t format string
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7091 from kpayson64/python_str_stuffGravatar Nicolas Noble2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed default string type to be str
| | | | * | | | | | | | | | | | | | | | php: update package.xmlGravatar Stanley Cheung2016-06-30
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | * | | | | | | Fix memory leak, fix error.c refcount reportingGravatar Craig Tiller2016-06-30
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | * | | | | | | | Add comments in build_example_test.shGravatar Yuchen Zeng2016-06-30
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | * | | Initialize variablesGravatar David Garcia Quintas2016-06-30
| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | Merge pull request #7144 from jtattermusch/coreclr_packagesGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | Build experimental nugets with dotnet CLI
| | | | | | | | | | | | | | | | | * | removed unused version of status_code_enum.hGravatar David Garcia Quintas2016-06-30
| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Merge pull request #7025 from ctiller/%sGravatar Craig Tiller2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make transport-level errors be reflected in status messages on calls
| | | | * | | | | | | | | | | | | | | fixed size_t format stringGravatar David Garcia Quintas2016-06-29
| |_|_|/ / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Merge pull request #7125 from murgatroid99/node_unskip_creds_testsGravatar Jan Tattermusch2016-06-29
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-enable two Node credentials tests