Namespace change

pull/6439/head
Ken Payson 9 years ago
parent 85a5ffa1a9
commit af1fe578e0
  1. 6
      src/python/grpcio/tests/health_check/_health_servicer_test.py
  2. 2
      src/python/grpcio_health_checking/MANIFEST.in
  3. 0
      src/python/grpcio_health_checking/grpc_health/__init__.py
  4. 0
      src/python/grpcio_health_checking/grpc_health/health/__init__.py
  5. 0
      src/python/grpcio_health_checking/grpc_health/health/v1/__init__.py
  6. 2
      src/python/grpcio_health_checking/grpc_health/health/v1/health.py
  7. 2
      src/python/grpcio_health_checking/health_commands.py
  8. 2
      src/python/grpcio_health_checking/setup.py

@ -27,12 +27,12 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""Tests of grpc_health_checking.health.v1.health."""
"""Tests of grpc_health.health.v1.health."""
import unittest
from grpc_health_checking.health.v1 import health
from grpc_health_checking.health.v1 import health_pb2
from grpc_health.health.v1 import health
from grpc_health.health.v1 import health_pb2
class HealthServicerTest(unittest.TestCase):

@ -1 +1,3 @@
include health_commands.py
graft grpc_health
global-exclude *.pyc

@ -31,7 +31,7 @@
import threading
from grpc_health_checking.health.v1 import health_pb2
from grpc_health.health.v1 import health_pb2
class HealthServicer(health_pb2.BetaHealthServicer):

@ -94,7 +94,7 @@ class CopyProtoModules(setuptools.Command):
if os.path.isfile(HEALTH_PROTO):
shutil.copyfile(
HEALTH_PROTO,
os.path.join(ROOT_DIR, 'grpc_health_checking/health/v1/health.proto'))
os.path.join(ROOT_DIR, 'grpc_health/health/v1/health.proto'))
class BuildPy(build_py.build_py):

@ -63,7 +63,7 @@ _COMMAND_CLASS = {
setuptools.setup(
name='grpcio_health_checking',
version='0.14.0b1',
version='0.14.0b0',
packages=list(_PACKAGES),
package_dir=_PACKAGE_DIRECTORIES,
install_requires=_INSTALL_REQUIRES,

Loading…
Cancel
Save