Everytime getBoksMacs.sh run I got this message:
Subject: Cron navcron@localhost $BINDIR/getBoksMacs.sh $NUM_THREADS java.lang.NullPointerException at QueryBoks.processMacEntry(QueryBoks.java:917) at QueryBoks.run(QueryBoks.java:264)
How could I debug this?
regards,
java.lang.NullPointerException at QueryBoks.processMacEntry(QueryBoks.java:917) How could I debug this?
The fix is to change line 917 in that file from:
if (macVlan.size() == 0) continue;
To:
if (macVlan == null || macVlan.size() == 0) continue;
I can check this into svn later.
-- Kristian