sliftutils 1.8.1 → 1.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34,8 +34,8 @@ const COVERING_RETRY_DELAY = 5 * 1000;
34
34
  // Smart timeouts: an attempt gets this long to produce anything before we probe getInfo for the file's size (and the probe itself gets the same window)
35
35
  const SMART_TIMEOUT_PROBE = 60 * 1000;
36
36
  // Very generous assumed transfer rates - the resulting deadline exists to catch stuck sources, not slow ones
37
- const SMART_TIMEOUT_DOWNLOAD_BYTES_PER_SECOND = 1024 * 1024;
38
- const SMART_TIMEOUT_UPLOAD_BYTES_PER_SECOND = 512 * 1024;
37
+ const SMART_TIMEOUT_DOWNLOAD_BYTES_PER_SECOND = 512 * 1024;
38
+ const SMART_TIMEOUT_UPLOAD_BYTES_PER_SECOND = 256 * 1024;
39
39
  // Marker in smart-timeout errors, so the read loop can log them and continue with the other sources (a connected source's other errors still throw)
40
40
  const SMART_TIMEOUT_MARKER = "ARCHIVES_SMART_TIMEOUT_c41a9d";
41
41