Skip to content

Commit

Permalink
chore: Remove lifecycle filter
Browse files Browse the repository at this point in the history
  • Loading branch information
morgsmccauley committed Jul 16, 2024
1 parent 3fc4172 commit 2685ada
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions coordinator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,7 @@ async fn main() -> anyhow::Result<()> {
loop {
let indexer_registry = registry.fetch().await?;

for config in indexer_registry
.iter()
.filter(|config| config.account_id.as_str() == "vuso.near")
{
for config in indexer_registry.iter() {
if lifecycle_tasks.contains_key(&config.get_full_name()) {
continue;
}
Expand Down

0 comments on commit 2685ada

Please sign in to comment.