-
Notifications
You must be signed in to change notification settings - Fork 184
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
Panics when using enter_region instead of enter #304
Comments
Thanks for the report! |
I didn't find anything wrong with |
It has landed in main, so testing it should be even easier now! |
It looks like it's working, thanks! |
I've tried to make a minimal reproduction of this, but I can't seem to. It's happened multiple times at multiple places throughout this particular project too, so it's not an isolated thing for me at least.
When entering a named region, if I use
.enter_region()
instead of.enter()
here a panic within ddflow's arrangement code occursPanic Backtrace
Changing the
.enter_region()
back to an.enter()
fixes the problem immediately, so I'm not sure why it happens..cleanup()
is called here and to reproduce the panic all you need to do is change the.enter()
to an.enter_region()
and runcargo test
.Currently I'm using timely@1cbfc9 and differential-dataflow@2b12f2 on Windows 10 v2004 using rustc version
1.51.0-nightly (a2f8f6281 2021-01-27)
The text was updated successfully, but these errors were encountered: