You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve EOA lock release and reduce max_inflight to 50 (#87)
<!-- This is an auto-generated comment: release notes by coderabbit.ai -->
## Summary by CodeRabbit
## Release Notes
* **Bug Fixes**
* Improved error handling and lock management for EOA operations, ensuring locks are properly released even when errors occur.
* Enhanced failure detection in transaction preparation to trigger break-on-failure conditions more reliably.
* **Performance & Optimization**
* Adjusted concurrency limits to optimize resource utilization for EOA job processing.
<sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub>
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
Copy file name to clipboardExpand all lines: server/src/main.rs
+18-7Lines changed: 18 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,15 @@
1
1
use std::{sync::Arc, time::Duration};
2
2
3
-
use engine_core::{signer::{EoaSigner,SolanaSigner}, userop::UserOpSigner, credentials::KmsClientCache};
4
-
use engine_executors::{eoa::authorization_cache::EoaAuthorizationCache, metrics::{ExecutorMetrics, initialize_metrics}, solana_executor::rpc_cache::{SolanaRpcCache,SolanaRpcUrls}};
0 commit comments