-
Notifications
You must be signed in to change notification settings - Fork 180
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
Various final backend fixes #117
Conversation
theseus/src/state/mod.rs
Outdated
use tokio::sync::{OnceCell, RwLock, Semaphore}; | ||
|
||
use futures::{ |
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.
clippy error warning here and in a few other places (only marked here because I think a --fix will fix it globally). (I also have 'fmt'-resolvable warnings when I open the branch in vscode)
theseus/src/state/profiles.rs
Outdated
"Fetched {path:?}" | ||
); | ||
} else { | ||
println!( |
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.
Probably not needed to do println! inside the API. The current CLI setup and playground should both have a tracing subscriber and should be able to see the tracing logs in API functions.
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.
yup, was just for debugging
LGTM |
Fixes MOD-406
Fixes MOD-407
Fixes MOD-389
Fixes MOD-310