Issue #280 has been updated by Stefano Lenzi.

Category set to zigbee.CC2530.driver
Status changed from New to In Progress
Assignee set to Stefano Lenzi
Priority changed from Normal to Low
Target version set to org.aaloa.zb4osgi.zigbee.CC2530.driver-1.X

Working on it
----------------------------------------
Bug #280: RESEND_ONLY_EXCEPTION is not correctly taken into account
http://zb4o.aaloa.org/redmine/issues/280#change-729

Author: Philipp  Buluschek
Status: In Progress
Priority: Low
Assignee: Stefano Lenzi
Category: zigbee.CC2530.driver
Target version: org.aaloa.zb4osgi.zigbee.CC2530.driver-1.X
Has a patch: No
Has license agreement signed: No


In @DriverCC2530@
<pre>
boolean b = RESEND_ONLY_EXCEPTION_DEFAULT;
try {
  aux = Integer.parseInt(System.getProperty(RESEND_ONLY_EXCEPTION_KEY));
  logger.debug("Using RESEND_MAX_RETRY set from enviroment {}", aux);
} catch (NumberFormatException ex) {
  logger.debug("Using RESEND_MAX_RETRY set as DEFAULT {}", aux);
}
RESEND_ONLY_EXCEPTION = b;
</pre>

should probably be
<pre>
boolean b = RESEND_ONLY_EXCEPTION_DEFAULT;
try {
        b = Boolean.getBoolean(RESEND_ONLY_EXCEPTION_KEY);
        logger.debug("Using RESEND_ONLY_EXCEPTION set from enviroment {}", b);
} catch (NumberFormatException ex) {
        logger.debug("Using RESEND_ONLY_EXCEPTION set as DEFAULT {}", b);
}
RESEND_ONLY_EXCEPTION = b;
</pre>


-- 
DO NOT ANSWER TO THIS E-MAIL ADDRESS, NO ONE WILL READ IT. PLEASE WRITE TO 
[email protected]
ZigBee 4 OSGi - Redmine E-Mail Notificatioon
You have received this notification because you have either subscribed to it, 
or are involved in it.
To change your notification preferences, please click here: 
http://zb4o.aaloa.org/redmine
_______________________________________________
Dev mailing list
[email protected]
http://zb4osgi.aaloa.org/mailman/listinfo/dev

Reply via email to