Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9f7bb23

Browse files
committedDec 13, 2023
fix: drop the manager handler correctly
1 parent 39ed8d1 commit 9f7bb23

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed
 

‎tap-agent/src/agent.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use crate::{
1313
tap::sender_allocation_relationships_manager::SenderAllocationRelationshipsManager,
1414
};
1515

16-
pub async fn start_agent(config: &'static config::Cli) {
16+
pub async fn start_agent(config: &'static config::Cli) -> SenderAllocationRelationshipsManager {
1717
let pgpool = database::connect(&config.postgres).await;
1818

1919
let http_client = reqwest::Client::new();
@@ -79,7 +79,7 @@ pub async fn start_agent(config: &'static config::Cli) {
7979
verifying_contract: config.receipts.receipts_verifier_address,
8080
};
8181

82-
let _sender_allocation_relationships_manager = SenderAllocationRelationshipsManager::new(
82+
SenderAllocationRelationshipsManager::new(
8383
config,
8484
pgpool,
8585
indexer_allocations,
@@ -88,5 +88,5 @@ pub async fn start_agent(config: &'static config::Cli) {
8888
tap_eip712_domain_separator,
8989
sender_aggregator_endpoints,
9090
)
91-
.await;
91+
.await
9292
}

‎tap-agent/src/main.rs

+15-12
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,22 @@ async fn main() -> Result<()> {
2424
lazy_static::initialize(&CONFIG);
2525
debug!("Config: {:?}", *CONFIG);
2626

27-
agent::start_agent(&CONFIG).await;
28-
info!("TAP Agent started.");
29-
30-
// Have tokio wait for SIGTERM or SIGINT.
31-
let mut signal_sigint = signal(SignalKind::interrupt())?;
32-
let mut signal_sigterm = signal(SignalKind::terminate())?;
33-
tokio::select! {
34-
_ = signal_sigint.recv() => debug!("Received SIGINT."),
35-
_ = signal_sigterm.recv() => debug!("Received SIGTERM."),
27+
{
28+
let _manager = agent::start_agent(&CONFIG).await;
29+
info!("TAP Agent started.");
30+
31+
// Have tokio wait for SIGTERM or SIGINT.
32+
let mut signal_sigint = signal(SignalKind::interrupt())?;
33+
let mut signal_sigterm = signal(SignalKind::terminate())?;
34+
tokio::select! {
35+
_ = signal_sigint.recv() => debug!("Received SIGINT."),
36+
_ = signal_sigterm.recv() => debug!("Received SIGTERM."),
37+
}
38+
39+
// If we're here, we've received a signal to exit.
40+
info!("Shutting down...");
3641
}
37-
38-
// If we're here, we've received a signal to exit.
39-
info!("Shutting down...");
42+
// Manager should be successfully dropped here.
4043

4144
// Stop the server and wait for it to finish gracefully.
4245
debug!("Goodbye!");

0 commit comments

Comments
 (0)
Please sign in to comment.