> it works for me. thx :) > I still want to know what's wrong with my demo code, it seems like > mojo::ioloop's counter went some wrong, but I can't find it.
Since you're not stopping the event loop manually it keeps running until there are no events to watch anymore. Mojo::UserAgent has a pool of keep-alive connections that remain in the event loop, leaving it file descriptors to watch, so it has no reason to stop by itself. -- Sebastian Riedel http://mojolicio.us http://github.com/kraih http://twitter.com/kraih -- You received this message because you are subscribed to the Google Groups "Mojolicious" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/mojolicious. For more options, visit https://groups.google.com/d/optout.
