-
Notifications
You must be signed in to change notification settings - Fork 520
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
fix: Added priority queue sink and source extending queue #3930
fix: Added priority queue sink and source extending queue #3930
Conversation
84c601b
to
5b7f468
Compare
It seems to me, that |
actually, come to think of it. they are actually identical in almost everyway. a simple extends without should just do., pushed |
insteresting seeing the error in Mima check, maybe that is need of override? |
yes, I think you can add an override call that delegates to the super so you do not need to repeat the implementation. |
looks like Mima hates either way....(override with super call triggered the ReversedMissingMethodProblem) |
why DispatcherSpec failed is a bit beyound me... |
452289a
to
fb356b7
Compare
I guess the attempts were telling us MiMa doesn't agree... |
hmm. can you share the full MiMa error message? I don't understand why it's not happy. |
ah. in order to fix the build, I have force pushed and squashed that commit (not sure how to find the actual error log in that case). but bascially MiMa is reported the "ReversedMissingMethodProblem" along with the message "super.tryOfferN is present only in the current version" if I have only
|
or, I could break the build again to generate the error. |
here they are
|
fb356b7 with the implementaion on the overrided method was ok with MiMa (and other build checks). let me know if I should go back to that for succcess build of the PR. oh. and since I don't have the write access, I wouldn't be able to merge anything even if the build is/was ok. |
We should avoid duplicating the implementation. Since the |
some how the DispatcherSpec comes back
|
@neomaclin that's unrelated to your PR, don't worry :) It's a known flake: #3776 |
if this is good to go in, please go ahead, ( I can't do it myself..) |
Thank you for taking this on! |
trying to continue the work #3733 by @lukecollier
@armanbilge