<rant>I can't tell you how many times I've worked on applications where I try to run Perl's debugger and the debugger just freezes. I've never used a debugger in any other language which is so fragile</rant> :(
Re:huh
Ovid on 2006-02-25T01:40:31
I've wondered if it's just taking longer, but no, it's really hanging. And this is a huge system and figuring out what part it's hanging on is a chore in and of itself.
Re:huh
bpphillips on 2006-02-25T05:04:08
Does anything happen when you hit CTRL-C? Typically if something is taking forever when I'm debugging, I can hit CTRL-C and the debugger will stop at whatever point it's at. If it's indeed hanging and not just running really slow this might not do any good I guess...Re:huh
Ovid on 2006-02-25T07:55:14
No, it doesn't stop when I hit CTRL-C. I have to do a ps to get the process id and then kill it.
What's worse is that I'm the only person who has ever noticed...
-Dom
Re:I sympathise
kane on 2006-02-25T11:40:41
Interesting coincidence -- had the same thing happen when trying to run a self-written Catalyst plugin through the debugger. It also gave errors in URI::_generic..