diff options
| author | fukachan <fukachan> | 2002-06-27 08:25:49 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-06-27 08:25:49 +0000 |
| commit | d52de31d2d90bfe70329636021be085b46f34d1a (patch) | |
| tree | aab56f274a82184749c87b40fe6657763da9b82f /fml/lib/FML/Process/ThreadTrack.pm | |
| parent | 3341c7ba22542b5ecd716bba5812c327e8c92987 (diff) | |
| download | fml8-d52de31d2d90bfe70329636021be085b46f34d1a.tar.gz fml8-d52de31d2d90bfe70329636021be085b46f34d1a.tar.bz2 fml8-d52de31d2d90bfe70329636021be085b46f34d1a.zip | |
major overhaul: delayed loading of *.cf files. The loading is done
within prepare() method now to handle virtual domains properly.
Diffstat (limited to 'fml/lib/FML/Process/ThreadTrack.pm')
| -rw-r--r-- | fml/lib/FML/Process/ThreadTrack.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fml/lib/FML/Process/ThreadTrack.pm b/fml/lib/FML/Process/ThreadTrack.pm index 82b07b6a..d5d37f0b 100644 --- a/fml/lib/FML/Process/ThreadTrack.pm +++ b/fml/lib/FML/Process/ThreadTrack.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002 Ken'ichi Fukamachi # All rights reserved. # -# $FML: ThreadTrack.pm,v 1.27 2002/04/10 09:57:24 fukachan Exp $ +# $FML: ThreadTrack.pm,v 1.28 2002/06/01 05:02:33 fukachan Exp $ # package FML::Process::ThreadTrack; @@ -68,6 +68,9 @@ sub prepare my $eval = $config->get_hook( 'fmlthread_prepare_start_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } + $curproc->resolve_ml_specific_variables( $args ); + $curproc->load_config_files( $args->{ cf_list } ); + $eval = $config->get_hook( 'fmlthread_prepare_end_hook' ); if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; } } |
