The source code is moved from src/python to
src/python/src. A setup.py is added at
src/python. The build_python.sh and
run_python.sh scripts are updated to build
and run the Python tests by building a
package and installing it in the developer's
Python 2.7 virtual environment.
compilation errors introduced in the following commit.
commit 0cd69562fd
Author: ctiller <ctiller@google.com>
Date: Fri Jan 9 14:22:10 2015 -0800
Allow logging mechanism to be overridden by applications.
This necessitated the removal of gpr_vlog to keep a clean interface.
Change on 2015/01/09 by ctiller <ctiller@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83634996
Errors are:
grpc/src/core/support/log_android.c:75:20: error: 'file' undeclared (first use in this function)
display_file = file;
^
grpc/src/core/support/log_android.c:75:20: note: each undeclared identifier is reported only once for each function it appears in
grpc/src/core/support/log_android.c:79:13: error: 'prefix' undeclared (first use in this function)
asprintf(&prefix, "%s:%d] %s", display_file, args->line, args->message);
^
grpc/src/core/support/log_android.c:85:8: error: 'suffix' undeclared (first use in this function)
free(suffix);
^
Run faster on smaller machines.
Don't watch '.' prefixed files for changes. These files don't typically contribute to builds, and are used as vim temp files.
roots.pem is not added to source control, but is instead saved on GCS.
The func copies roots.pem to docker host, to a location that can referenced by
Dockerfiles using the ADD directive
- the client test gets new, necessary flags
- adds a prod test command that explicitly sets the SSL_CERT_FILE to pick up
certs that the c core can load successfully.