Losing Variables under Apache2 Reload

2007-11-18 Thread Jonathan Vanasco
I'm losing variables under apache2:: reload below is a summation of my problem. when a2::reload recompiles off of a changed sub, i lose the entire WATCH_ME var. i think this might happen because of the begin blocks. and the way plugins register. i thought it wise to bring this up

Re: Losing Variables under Apache2 Reload

2007-11-18 Thread Perrin Harkins
On Nov 18, 2007 7:30 PM, Jonathan Vanasco [EMAIL PROTECTED] wrote: below is a summation of my problem. when a2::reload recompiles off of a changed sub, i lose the entire WATCH_ME var. What would this code do if it was working? %WATCH_ME doesn't look like anything ever gets put into it. Does

Re: Losing Variables under Apache2 Reload

2007-11-18 Thread Jonathan Vanasco
WATCH_ME is populated by subclasses that register on load. on my dev server, the real WATCH_ME var has about 96 registered modules in it. everything works perfect until i reload. package myapp::tester::plugin; our $var= 'hello';