Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up--devtools panics if there is no console actor #6058
Closed
Labels
Comments
|
Go for it! |
|
Sorry about the delay (vacation and moving); I was about to submit my pull request, but it looks like 6189 will fix this, so I am happy to defer to that. |
|
No worries; sorry about the duplication of effort! |
|
Shouldn't this be closed? |
|
Not yet; #6189 wasn't merged and there's a new PR open to fix this. |
|
Oh ok |
|
I think we can safely close this :) |
|
Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This was mentioned in a comment here #5971 (comment). Basically, running servo with the --devtools flag leads to a crash.
When I run
./mach run http://google.com --devtoolsI get:So the problem is that HashMap[“any_value”] will panic! if the lookup fails. The bigger problem seems to be that when
find_console_actoris initially called,actor_pipelinesis empty, so any lookup will fail.@jdm noted that this is likely a regression from #5947
Given that this is related to the issue I am working on, I would be happy to take a crack at fixing this if it is fairly easy.