
nick-list at dytara
Oct 14, 2008, 8:45 AM
Post #1 of 2
(1165 views)
Permalink
|
|
Patch for 5.8, C::E::HTTP::Restarter::Watcher
|
|
Hi, I've been evaluating the new dev release of Catalyst::Runtime/ Catamoose. CPAN release didn't work last night due to missing Catalyst::ClassData, so I grabbed it from svn and went from there. There's a small misspell in Watcher.pm that causes _server to whine with -r. r8320 was the last update of Watcher.pm. Let me know if I'm terribly wrong here. ;) As an aside, my older project had to update to the latest auth framework, it was still using the older, deprecated authentication plugin. This no longer works with 5.8, seems to fail in the C::A compatibility. I had to do it at some point, so this was a good kick in the rear, but it may be worth mentioning. --- Watcher.r8320.pm 2008-10-14 10:18:32.000000000 -0500 +++ Watcher.pm 2008-10-14 10:18:33.000000000 -0500 @@ -11,7 +11,7 @@ has modified => (is => 'rw'); has directory => (is => 'rw'); has watch_list => (is => 'rw'); -has follow_simlinks => (is => 'rw'); +has follow_symlinks => (is => 'rw'); Thanks! - Nick _______________________________________________ Catalyst-dev mailing list Catalyst-dev [at] lists http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst-dev
|