-
Notifications
You must be signed in to change notification settings - Fork 36
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
Concurrent vs sequential DNS semantics #174
Comments
|
coot
added a commit
to IntersectMBO/ouroboros-network
that referenced
this issue
Nov 16, 2023
coot
added a commit
to IntersectMBO/ouroboros-network
that referenced
this issue
Nov 16, 2023
coot
added a commit
to IntersectMBO/ouroboros-network
that referenced
this issue
Nov 17, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We noticed the difference between concurrent & sequential semantics. When
resolvConcurrent
is not set,resolveSequential
will loop over errors and will try to return the first non error result, but ifresolveConcurrent
is setresolveConcurrent
will run all queries in parallel doingfirst-to-finish
synchronisation. The difference is that if the first value is an errorresolveConcurrent
will return the error unlikeresolveSequential
.The text was updated successfully, but these errors were encountered: