Skip to content

Commit 7229f00

Browse files
Add missing setters
1 parent 112b08e commit 7229f00

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/main/java/com/cloudbees/syslog/sender/TcpSyslogMessageSender.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,14 @@ public int getTrySendErrorCounter() {
230230
return trySendErrorCounter.get();
231231
}
232232

233+
public void setSocketConnectTimeoutInMillis(int socketConnectTimeoutInMillis) {
234+
this.socketConnectTimeoutInMillis = socketConnectTimeoutInMillis;
235+
}
236+
237+
public void setMaxRetryCount(int maxRetryCount) {
238+
this.maxRetryCount = maxRetryCount;
239+
}
240+
233241
@Override
234242
public String toString() {
235243
return "TcpSyslogMessageSender{" +

0 commit comments

Comments
 (0)