files.com 1.1.135 → 1.1.137

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09c4cb3d58a17be7a9ab26258187f31ae2d1637846a28639226bfc74894b252e'
4
- data.tar.gz: 0372652b3e8759b015fcabe8142408940c8948295e65cd37d6e82757e0936d9c
3
+ metadata.gz: 54b5e14e6f983f9036559a16b1e85aa2e85ad1994f70f88873e696d5ecd94a96
4
+ data.tar.gz: b5fdff5574ffc20c8041e821fb030d68fe52f62172abed3fb509b3b8f88eb976
5
5
  SHA512:
6
- metadata.gz: 436944eb77c62f2b239a12ee4b4df981a929f96d44505e2b9720e12558f045754e45bf0978b9f856076ac92fae61639ffa11d4000c3109c40a3d66c0e46b06ef
7
- data.tar.gz: 232a5a10fc682b48fe5c9b62b4f93a4994e36c1ed6ed7269571b7770bebf261c0cc97feb6172810072b36338b75fd7b8c4774f6cc19b13ee202d205c13799ead
6
+ metadata.gz: 78d00dccff76b6c00dec32e19f98010e81efe15b46ba9bdcee2d28218fe40f6425bf85ffd4adfc66ec3d5753196801f108b991482c171d041d6325b01ad37c92
7
+ data.tar.gz: ab28bdd420680016732b5cb62892593956f5203af188776f8fd987d9035b362314a4d9f4062b4333e502ed73224e072cb7f50a978f2bc41af52da62b8da83a02
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.135
1
+ 1.1.137
@@ -18,7 +18,7 @@
18
18
  "log_level": "example",
19
19
  "log_rotate_num": 1,
20
20
  "log_rotate_size": 1,
21
- "max_concurrent_jobs": 1,
21
+ "override_max_concurrent_jobs": 1,
22
22
  "graceful_shutdown_timeout": 1,
23
23
  "transfer_rate_limit": "example",
24
24
  "api_token": "example",
@@ -37,16 +37,16 @@
37
37
  * `subdomain` (string): Files.com subdomain site name
38
38
  * `root` (string): The root directory for the agent
39
39
  * `follow_links` (boolean): Follow symlinks when traversing directories
40
- * `prefer_protocol` (string): Preferred network protocol ['udp', 'tcp']
41
- * `dns` (string): DNS lookup method ['auto','doh','system']
40
+ * `prefer_protocol` (string): Preferred network protocol ['udp', 'tcp'] (default udp)
41
+ * `dns` (string): DNS lookup method ['auto','doh','system'] (default auto)
42
42
  * `proxy_all_outbound` (boolean): Proxy all outbound traffic through files.com proxy server
43
43
  * `endpoint_override` (string): Custom site endpoint URL
44
44
  * `log_file` (string): Log file name and location
45
- * `log_level` (string): Log level for the agent logs ['debug', 'info', 'warn', 'error', 'fatal']
45
+ * `log_level` (string): Log level for the agent logs ['debug', 'info', 'warn', 'error', 'fatal'] (default info)
46
46
  * `log_rotate_num` (int64): Log route for agent logs. (default 5)
47
- * `log_rotate_size` (int64): Log route size in MB for agent logs. (default 20MB)
48
- * `max_concurrent_jobs` (int64): Maximum number of concurrent jobs (default CPU Count * 4)
49
- * `graceful_shutdown_timeout` (int64): Graceful shutdown timeout in seconds
47
+ * `log_rotate_size` (int64): Log route size in MB for agent logs. (default 20)
48
+ * `override_max_concurrent_jobs` (int64): Maximum number of concurrent jobs (default 500)
49
+ * `graceful_shutdown_timeout` (int64): Graceful shutdown timeout in seconds (default 15)
50
50
  * `transfer_rate_limit` (string): File transfer (upload/download) rate limit
51
51
  `<limit>-<period>`, with the given periods:
52
52
  * 'S': second
@@ -39,12 +39,12 @@ module Files
39
39
  @attributes[:follow_links]
40
40
  end
41
41
 
42
- # string - Preferred network protocol ['udp', 'tcp']
42
+ # string - Preferred network protocol ['udp', 'tcp'] (default udp)
43
43
  def prefer_protocol
44
44
  @attributes[:prefer_protocol]
45
45
  end
46
46
 
47
- # string - DNS lookup method ['auto','doh','system']
47
+ # string - DNS lookup method ['auto','doh','system'] (default auto)
48
48
  def dns
49
49
  @attributes[:dns]
50
50
  end
@@ -64,7 +64,7 @@ module Files
64
64
  @attributes[:log_file]
65
65
  end
66
66
 
67
- # string - Log level for the agent logs ['debug', 'info', 'warn', 'error', 'fatal']
67
+ # string - Log level for the agent logs ['debug', 'info', 'warn', 'error', 'fatal'] (default info)
68
68
  def log_level
69
69
  @attributes[:log_level]
70
70
  end
@@ -74,17 +74,17 @@ module Files
74
74
  @attributes[:log_rotate_num]
75
75
  end
76
76
 
77
- # int64 - Log route size in MB for agent logs. (default 20MB)
77
+ # int64 - Log route size in MB for agent logs. (default 20)
78
78
  def log_rotate_size
79
79
  @attributes[:log_rotate_size]
80
80
  end
81
81
 
82
- # int64 - Maximum number of concurrent jobs (default CPU Count * 4)
83
- def max_concurrent_jobs
84
- @attributes[:max_concurrent_jobs]
82
+ # int64 - Maximum number of concurrent jobs (default 500)
83
+ def override_max_concurrent_jobs
84
+ @attributes[:override_max_concurrent_jobs]
85
85
  end
86
86
 
87
- # int64 - Graceful shutdown timeout in seconds
87
+ # int64 - Graceful shutdown timeout in seconds (default 15)
88
88
  def graceful_shutdown_timeout
89
89
  @attributes[:graceful_shutdown_timeout]
90
90
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.135"
4
+ VERSION = "1.1.137"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.135
4
+ version: 1.1.137
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-20 00:00:00.000000000 Z
11
+ date: 2024-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable