Add missing break statement in server heartbeat's event type switch

This commit is contained in:
Colin McDonald 2016-07-14 18:12:13 -04:00
parent c7a84e6e63
commit f49135a781

View File

@ -177,6 +177,8 @@ public final class POSTServersHeartbeat implements Handler<RoutingContext> {
} }
}); });
})); }));
break;
default: default:
log.warn("Recieved event with unknown type " + type + "."); log.warn("Recieved event with unknown type " + type + ".");
} }