mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
FIX: Virtual Prüfung
This commit is contained in:
committed by
rob bygrave
parent
33416bffd0
commit
0a6c26e5d3
@@ -92,7 +92,7 @@ public class UuidV1IdGenerator extends UuidV1RndIdGenerator {
|
||||
if (!network.isLoopback()) {
|
||||
byte[] addr = network.getHardwareAddress();
|
||||
if (validAddr(addr)) {
|
||||
if (network.isUp() && network.isVirtual()) {
|
||||
if (network.isUp() && !network.isVirtual()) {
|
||||
logger.debug("Using interface {}", network);
|
||||
return addr;
|
||||
} else if (fallbackAddr == null) {
|
||||
|
||||
Reference in New Issue
Block a user