-
Notifications
You must be signed in to change notification settings - Fork 175
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] Explain block_on function in common-runtime #3442
Conversation
@andrewgazelka Lmk if it makes sense |
it makes sense. so this function is kinda jank then? cause the sync function should probably be |
CodSpeed Performance ReportMerging #3442 will degrade performances by 29.99%Comparing Summary
Benchmarks breakdown
|
Just for more context, the main issue is calling expression evaluation trait methods which are sync.
The url-download expression implements So we need a way run the async url download code, thus we came up with the Of course, ideally we just want to somehow do a |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3442 +/- ##
=======================================
Coverage 77.35% 77.35%
=======================================
Files 684 684
Lines 83637 83639 +2
=======================================
+ Hits 64695 64698 +3
+ Misses 18942 18941 -1
|
Addresses: #3435