-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
chore: Create unit tests for dragon ingester #47
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a nice improvement!
value.connection_timeout_secs.unwrap_or(10) as u64, | ||
)) | ||
.timeout(Duration::from_secs(value.timeout_secs.unwrap_or(10) as u64))) | ||
} | ||
} | ||
|
||
impl Ingester for GrpcIngester { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a nice improvement to this function! 🔥🚀
} | ||
} | ||
|
||
/// Conversion trait for Inner and Outer instructions to become Bonsol instructions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good - thanks for the comments!
Closes #21
Abstracts the logic of the dragon ingester module into more digestible chunks, and adds unit tests to prevent regressions.