Changeset 3869
- Timestamp:
- 08/19/10 12:14:20 (1 year ago)
- Files:
-
- trunk/node/lib/Munin/Node/Server.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/node/lib/Munin/Node/Server.pm
r3864 r3869 147 147 # catch and report any system errors in a clean way. 148 148 eval { 149 # BUG: It appears that the plugin timeout is still in place150 # when _net_read is executing. Meaning that if the previous151 # plugin takes close to $timeout time then there is very very152 # short time for munin-update to issue a new command.153 #154 155 149 $timed_out = !do_with_timeout($services->{timeout}, sub { 156 150 while (defined ($line = _net_read($session))) { … … 160 154 last; 161 155 } 156 # Reset timeout to wait a reasonable time for input 157 # from the master. 158 # Misfeature: Plugin timeout and input timeout are identical 159 reset_timeout(); 162 160 $line = "<waiting for input from master, previous was '$line'>"; 163 161 }
