files.com 1.1.135 → 1.1.136
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e859f7c41276594a9eb2212c1c76ba8704592000d82c9d39276d86f8ff8c7cf
|
4
|
+
data.tar.gz: 0cc4abaa60ae1a97cc03a23332fd9a8a3d499c4097d4e58d495d46af7de85171
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9dcdb120db0ebbef604268e33b104cdf7edf5000d0d98583e3f2d2ba5d7b6626c20a76312958bb745a73553361d294189e5b6ea02c8486aad11e3fb89b00947c
|
7
|
+
data.tar.gz: 450ac8eeabf09ba388aff5d662fbfb27d6cc9683b0969cb3b7b3e2a5f6df6dfb232db35882a933c0c6f4b8f9b423526a735fff64e15337b81a542713834b8a69
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.136
|
@@ -18,7 +18,7 @@
|
|
18
18
|
"log_level": "example",
|
19
19
|
"log_rotate_num": 1,
|
20
20
|
"log_rotate_size": 1,
|
21
|
-
"
|
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
|
48
|
-
* `
|
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 1024)
|
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
|
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
|
83
|
-
def
|
84
|
-
@attributes[:
|
82
|
+
# int64 - Maximum number of concurrent jobs (default 1024)
|
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
|
data/lib/files.com/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.136
|
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-
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|