-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* stop indexer via queue * added sleeps * ci fixes * print localstack endpoint * Revert "print localstack endpoint" This reverts commit 9da3be4. * refactor * format toml * ignore flaky test failed * add logs for killing process * add back ignore * add println for logs
- Loading branch information
1 parent
87610cc
commit ea56dc2
Showing
12 changed files
with
165 additions
and
43 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
pub const START_INDEXER_QUEUE: &str = "indexer-service-start-indexer"; | ||
pub const FAILED_INDEXER_QUEUE: &str = "indexer-service-failed-indexer"; | ||
pub const STOP_INDEXER_QUEUE: &str = "indexer-service-stop-indexer"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
use serde::{Deserialize, Serialize}; | ||
use uuid::Uuid; | ||
|
||
use crate::domain::models::indexer::IndexerStatus; | ||
|
||
#[derive(Serialize, Deserialize, Debug)] | ||
pub struct StartIndexerRequest { | ||
pub id: Uuid, | ||
pub attempt_no: u32, | ||
} | ||
|
||
#[derive(Serialize, Deserialize, Debug)] | ||
pub struct StopIndexerRequest { | ||
pub id: Uuid, | ||
pub status: IndexerStatus, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ pub use custom_extractors::path_extractor::PathExtractor; | |
|
||
mod custom_extractors; | ||
pub mod env; | ||
pub mod serde; |
Oops, something went wrong.