-
Notifications
You must be signed in to change notification settings - Fork 10
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
feat: add metrics to api and recon #208
Conversation
Add metrics to ceramic-api and recon crates. Additionally some small build fixes for tokio
Makefile
Outdated
@@ -50,7 +52,7 @@ check-kubo-rpc-server: | |||
|
|||
.PHONY: release | |||
release: | |||
RUSTFLAGS="-D warnings" cargo build -p ceramic-one --locked --release | |||
RUSTFLAGS="-D warnings" $(CARGO) build -p ceramic-one --locked --release |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the RUSTFLAGS
is redefined in the $(CARGO)
should CARGO = RUSTFLAGS='--cfg tokio_unstable' cargo
be more like CARGO = RUSTFLAGS=$RUSTFLAGS + '--cfg tokio_unstable' cargo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the Makefile to handle appending to RUSTFLAGS. Thanks for catching that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add metrics to ceramic-api and recon crates.
Additionally some small build fixes for tokio