Merge pull request #15266 from mikemccand/no_mac_address

If we can't get a MAC address for the node, use a dummy one
This commit is contained in:
Michael McCandless 2015-12-06 08:19:53 -05:00
commit 6152d352aa
1 changed files with 2 additions and 2 deletions

View File

@ -65,8 +65,8 @@ public class MacAddressProvider {
byte[] address = null;
try {
address = getMacAddress();
} catch( SocketException se ) {
logger.warn("Unable to get mac address, will use a dummy address", se);
} catch (Throwable t) {
logger.warn("Unable to get mac address, will use a dummy address", t);
// address will be set below
}