Skip to content
Closed
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 @@ -4,6 +4,7 @@
import com.splunk.splunkjenkins.SplunkJenkinsInstallation;
import com.splunk.splunkjenkins.model.EventRecord;
import com.splunk.splunkjenkins.model.EventType;
import jenkins.util.SystemProperties;
import shaded.splk.org.apache.http.HttpResponse;
import shaded.splk.org.apache.http.client.HttpClient;
import shaded.splk.org.apache.http.client.config.CookieSpecs;
Expand Down Expand Up @@ -42,7 +43,7 @@

public class SplunkLogService {
public static final java.util.logging.Logger LOG = java.util.logging.Logger.getLogger(SplunkLogService.class.getName());
private static final boolean VERIFY_SSL = Boolean.getBoolean("splunkins.verifySSL");
private static final boolean VERIFY_SSL = SystemProperties.getBoolean("splunkins.verifySSL");
private final static int SOCKET_TIMEOUT = 3;
private final static int QUEUE_SIZE = Integer.getInteger(SplunkLogService.class.getName() + ".queueSize", 1 << 17);
private final static long KEEP_ALIVE_TIME_MINUTES = 2;
Expand Down