Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

signer: Have the signer report its node_id itself #520

Merged
merged 2 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions libs/gl-client-py/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ GENALL += ${PYPROTOS}
${PYPROTOS}: pygrpc

pygrpc: ${PROTOSRC}
python -m grpc_tools.protoc ${PYPROTOC_OPTS} glclient/scheduler.proto
python -m grpc_tools.protoc ${PYPROTOC_OPTS} glclient/greenlight.proto
cp ${PYDIR}/../proto/glclient/scheduler.proto ${PYDIR}/glclient/
cp ${PYDIR}/../proto/glclient/greenlight.proto ${PYDIR}/glclient/
cd ${PYDIR}; poetry install
cd ${PYDIR}; poetry run python -m grpc_tools.protoc ${PYPROTOC_OPTS} glclient/scheduler.proto
cd ${PYDIR}; poetry run python -m grpc_tools.protoc ${PYPROTOC_OPTS} glclient/greenlight.proto

check-py:
cd ${PYDIR}; mypy glclient
Expand Down
Loading
Loading