Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public Session create(SessionID sessionID, SessionSettings settings) throws Conf
if (connectionType.equals(SessionFactory.INITIATOR_CONNECTION_TYPE)) {
heartbeatInterval = (int) settings.getLong(sessionID, Session.SETTING_HEARTBTINT);
if (heartbeatInterval <= 0) {
throw new ConfigError("Heartbeat must be greater than zero");
throw new ConfigError("Heartbeat interval must be greater than zero");
}
}

Expand Down