now do an explicit kill me on the session after the host config is retrieved
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 2 Mar 2005 22:42:03 +0000 (22:42 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 2 Mar 2005 22:42:03 +0000 (22:42 +0000)
so that the session is not forked and propagated

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@156 9efc2488-bf62-4759-914b-345cdb29e865

src/perlmods/OpenSRF/Utils/SettingsClient.pm

index c8bab67..6846b70 100755 (executable)
@@ -20,7 +20,6 @@ sub set_cache {
 }
 
 
-
 # ------------------------------------
 # utility method for grabbing config info
 sub config_value {
@@ -95,8 +94,9 @@ sub grab_host_config {
 
        $host_config = $resp->content();
        $req->finish();
-       $session->finish;
        $session->disconnect();
+       $session->finish;
+       $session->kill_me();
 }