From: Tassilo Horn Date: 2004-10-17T07:09:27+09:00 Subject: Re: Again some problem with my multithreaded teadrinker app Markus writes: > IIRC correctly, you normally would have gotten a similar message (or one > about nil not supporting the method) but it happened in a thread and you > had Thread.abort_on_exception set to false (the default), so it got > swallowed. Ah, thanks. After setting Thread.abort_on_exception = true I get ,---- | WAITER: Waiting for new appointments... | ./TeaRoom.rb:56: undefined local variable or method `dinker_cv' for | main:Object(NameError) `---- I should have known this before. These little typing errors made me debug my code for much too much time. Thank you, Tassilo