-
Notifications
You must be signed in to change notification settings - Fork 9
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
Server only api #37
Server only api #37
Conversation
…lementation to rpc_functions.rs. Added semi structured event call logging and track call durations.
… handling to an own module
…he pathfinder. Added a CallContext that contains the current graph for each call as well as log methods that associate the log message to the request-id and client.
@@ -78,7 +78,7 @@ pub fn start_server(listen_at: &str, queue_size: usize, threads: u64) { | |||
thread::spawn(move || loop { | |||
let socket = rec.lock().unwrap().recv().unwrap(); | |||
if let Err(e) = handle_connection(e.deref(), socket) { | |||
println!("Error handling connection: {e}"); | |||
println!("Error handling connection: {}", e); |
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.
Wait what is this? I would have expected the opposite as that is the one recommended by cargo clippy
.
The "add capacity edges" commit looks good. Does it fix the issue? |
OP-159: fix(workflow): add feature/server_only branch trigger
…feature/add-user-balance-to-org-flow-edges
Edit computation of all edges
I tagged the deployed commit w v0.1.0-server+202308 and pushed it as a new branch see #55 |
I will close this PR as we temporarily will maintain |
In this pull request I performed some major changes to the pathfinder code: