From 7ecbdeef3fe859b891bf4a4e10a8425397bb9271 Mon Sep 17 00:00:00 2001 From: markusbloch <> Date: Sat, 9 Apr 2016 16:17:29 +0000 Subject: [PATCH] PRESENCE/collectord: minor changes git-svn-id: https://svn.fhem.de/fhem/trunk@11212 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/contrib/PRESENCE/collectord | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/fhem/contrib/PRESENCE/collectord b/fhem/contrib/PRESENCE/collectord index 6192d5ba4..35ac7f47f 100755 --- a/fhem/contrib/PRESENCE/collectord +++ b/fhem/contrib/PRESENCE/collectord @@ -333,7 +333,7 @@ while(1) { Log 2, "sending thread ".$handle{$uuid}{threads}{$room}->tid()." new address $address for room $room"; $queues{$handle{$uuid}{threads}{$room}->tid()}->enqueue("new|$address"); - $state{$uuid}{rooms}{$room} = "" + $state{$uuid}{rooms}{$room} = "" if(exists($state{$uuid}{rooms}{$room})); } $handle{$uuid}{timeout} = $timeout; @@ -359,12 +359,11 @@ while(1) # create a new reqester thread for each configured room to perform the query while (($room, $value) = each %config) - { - + { $thread_counter++; $queues{$thread_counter} = Thread::Queue->new(); my $new_thread = threads->new(\&doQuery, ($value, $room, $address, $uuid)); - Log 1, "created thread ".$new_thread->tid()." for processing device $address in room $room for peer ".$client->peerhost()." (UUID: $uuid)"; + Log 1, "created thread ".$new_thread->tid()." for processing device $address in room $room for peer ".$client->peerhost()." (UUID: $uuid)"; # detach from the thread, so the thread starts processing independantly $new_thread->detach();