-
- Downloads
Reorganize configuration of the http server building
rework the configuration used by `make_app()` so that one can start the http server usig an existing grpc server by a setting the configuration file accordingly. This make the `make_app()` function only accept one config structure (dict), which structure would be: graph: cls: local grpc_server: # config for spawn_java_grpc_server() ... http_rpc_server: # config for GraphServerApp() ... or: graph: cls: remote url: # host:port of the running grpc server ... http_rpc_server: # config for GraphServerApp() ... This also comes wit a few other refactorings: - rename swh/graph/rpc/ as swh/graph/grpc/ to prevent confusion with the (http) rpc server. - similarly, rename swh/graph/rpc_server.py as swh/graph/grpc_server.py - and rename swh/graph/http_server.py as swh/graph/http_rpc_server.py - remove the "graph" config section from the grpc_server config structure (it had only the "path" config entry).
Showing
- Makefile.local 1 addition, 1 deletionMakefile.local
- mypy.ini 1 addition, 1 deletionmypy.ini
- pyproject.toml 1 addition, 1 deletionpyproject.toml
- setup.cfg 1 addition, 1 deletionsetup.cfg
- swh/graph/cli.py 1 addition, 1 deletionswh/graph/cli.py
- swh/graph/grpc/swhgraph.proto 0 additions, 0 deletionsswh/graph/grpc/swhgraph.proto
- swh/graph/grpc/swhgraph_pb2.py 196 additions, 0 deletionsswh/graph/grpc/swhgraph_pb2.py
- swh/graph/grpc/swhgraph_pb2.pyi 235 additions, 237 deletionsswh/graph/grpc/swhgraph_pb2.pyi
- swh/graph/grpc/swhgraph_pb2_grpc.py 43 additions, 43 deletionsswh/graph/grpc/swhgraph_pb2_grpc.py
- swh/graph/grpc_server.py 8 additions, 7 deletionsswh/graph/grpc_server.py
- swh/graph/http_rpc_server.py 59 additions, 9 deletionsswh/graph/http_rpc_server.py
- swh/graph/pytest_plugin.py 15 additions, 4 deletionsswh/graph/pytest_plugin.py
- swh/graph/tests/test_grpc.py 1 addition, 1 deletionswh/graph/tests/test_grpc.py
Loading
Please register or sign in to comment