-
Notifications
You must be signed in to change notification settings - Fork 3
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
Bug: Sync subclass: ancestor inconsistencies #406
Comments
@matentzn Frustratingly, I can't replicate your issue. I probably screwed up somewhere along the way. Maybe you can figure it out? Here's what I tried. Details
What I didSetup 1: My current
|
I will rerun it again now and see if it was a de-synchronised issue on my end.. I noticed another issue which I caused (missing pip install). So if all goes well, we can just merge this and we are good again! |
@matentzn Assigned this one to you now! If you re run and there's no issue feel free to close. |
Yes this was fixed a few PRs ago! Thanks for ping, closing. |
Overview
Nico was trying to fix some bugs in the pipeline (#403) when he noticed an issue regarding ancestor inconsistencies. Basically, we expect that
ancestor()
edges should give the same results as the indirect edges + direct edges. But we're getting an error where that is not the case.Sub-tasks
logging.error()
->raise ValueError()
3. Change logger to print info?
Details
This is unrelated to this issue, but basically I was expecting
logging.info()
to print, but it is not. It would help me to debug if this would print. Should we print these? Should we change these tologging.debug()
and maybe I change my code so that if I'm running what I typically run in the debugger,run_defaults()
, it sets the logging to debug mode?Shamefully I don't have enough experience with logging. I tried to fix with some suggestions here, but most of what I tried didn't work (nor did ChatGPT work). One suggestion did work, but it ended up printing everything twice.
The text was updated successfully, but these errors were encountered: