users@grizzly.java.net

[bug] No controller assigned to the connectorHandler

From: Simon Trudeau <strudeau_at_bluetreewireless.com>
Date: Thu, 6 Mar 2008 09:41:44 -0500

When we obtain a connector from a selectorHandler, no controller is
assigned to the connector.

connectorHandler = selectorHandler.acquireConnectorHandler();

connectorHandler.getController() will return null.




I think this is bug (a small one) and
selectorHandler.acquireConnectorHandler() should also set the
connectorHandler's controller.

As a work around one needs to do:

connectorHandler = selectorHandler.acquireConnectorHandler();
connectorHandler.setController(myController);

 

 

By the way, what is the right channel for users to report bugs?

 

Simon