We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4837339 commit 3225ff3Copy full SHA for 3225ff3
internal/file/file_manager_service.go
@@ -48,6 +48,8 @@ const (
48
executePerm = 0o111
49
)
50
51
+const fileDownloadTimeout = 60 * time.Second
52
+
53
type DownloadHeader struct {
54
ETag string
55
LastModified string
internal/model/config.go
@@ -52,10 +52,6 @@ type ManifestFileMeta struct {
Referenced bool `json:"referenced"`
// File is not managed by the agent
Unmanaged bool `json:"unmanaged"`
- // ETag of the 3rd Party external file
56
- ETag string `json:"etag"`
57
- // Last modified time of the 3rd Party external file
58
- LastModified string `json:"last_modified"`
59
}
60
type ConfigApplyMessage struct {
61
Error error
0 commit comments