29Jun99=======================================================================
1. fixed merge command that I broke.
+2. added some randomness in waittimes for aborted outgoing messages
+3. made the queueing of messages asymetrical. Both of these to try to
+minimise thrashing.
28Jun99=======================================================================
1. console.pl now works with history and editting.
2. added scrolling to stuff sent by the cluster.
$ref->stop_msg($node);
# delay any outgoing messages that fail
- $ref->{waitt} = $main::systime + $waittime if $node ne $main::mycall;
+ $ref->{waitt} = $main::systime + $waittime + rand(120) if $node ne $main::mycall;
}
}
} else {
$self->send(DXProt::pc42($f[2], $f[1], $f[3])); # unknown stream
}
- queue_msg(0);
+ # queue_msg(0);
last SWITCH;
}