We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TaskAgent
FlowAgent
async fn take_task(&self) -> Result<Task, InternalError> { loop { ... tokio::time::sleep(std::time::Duration::from_secs(1)).await; } }
Defined and inject a configuration object, which is populated from CLI configuration file.
FlowAgentConfig
app.rs
b.add_value(kamu_flow_system_inmem::domain::FlowAgentConfig::new( Duration::seconds(1), Duration::minutes(1), ));
The text was updated successfully, but these errors were encountered:
FllowAgent
No branches or pull requests
TaskAgent
needs to have configurable waiting interval. Right now it is hardcoded:Defined and inject a configuration object, which is populated from CLI configuration file.
FlowAgent
has a configuration objectFlowAgentConfig
, but it is not connected to CLI configuration file.Currently the values are harcoded in
app.rs
:The text was updated successfully, but these errors were encountered: