private long getMaxWaitForCapabilitiesMillis(PropertiesProviderBaseImpl propertiesProvider) {
   String timeoutProperty =
       propertiesProvider.getProperty(MAX_WAIT_FOR_CAPABILITIES_MILLIS_PROPERTY);
   return timeoutProperty == null
       ? MAX_WAIT_FOR_CAPABILITIES_MILLIS_DEFAULT
       : Long.valueOf(timeoutProperty);
 }
 private long getConflictingVersionTimeoutMillis(PropertiesProviderBaseImpl propertiesProvider) {
   String timeoutProperty =
       propertiesProvider.getProperty(CONFLICTING_VERSION_TIMEOUT_MILLIS_PROPERTY);
   return timeoutProperty == null
       ? CONFLICTING_VERSION_TIMEOUT_MILLIS_DEFAULT
       : Long.valueOf(timeoutProperty);
 }