Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0-beta6
-
None
Description
In the FlumeAvroManager in the send method, the code looks like this:
@Override
public synchronized void send(final Event event) {
if (rpcClient == null)
if (rpcClient != null) {
try
catch (final Exception ex) {.........
if the rpcClient is null and the connect fails the rpcClient is still null and the method returns losing the event. I think this is a bug.
Thanks