Skip to content

Commit

Permalink
Merge branch 'master' into feat/VER-725
Browse files Browse the repository at this point in the history
  • Loading branch information
JF-Cozy authored Jul 11, 2024
2 parents 44475e0 + dfc601d commit 60b50bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion assets/mails/new_connection.text
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
{{t "Mail New Connection Place"}} {{.Country}}
{{t "Mail New Connection Time"}} {{.Time}}
{{t "Mail New Connection Browser"}} {{.Browser}}
{{t "Mail New Connection OS"}} {{.OS}}
{{t "Mail New Connection IP"}} {{.IP}}

{{t "Mail New Connection Change Passphrase instruction"}}
Expand Down
10 changes: 5 additions & 5 deletions web/statik/statik.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions worker/archive/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ func init() {
WorkerType: "zip",
Concurrency: runtime.NumCPU(),
MaxExecCount: 2,
Timeout: 30 * time.Second,
Timeout: 600 * time.Second,
WorkerFunc: WorkerZip,
})

job.AddWorker(&job.WorkerConfig{
WorkerType: "unzip",
Concurrency: runtime.NumCPU(),
MaxExecCount: 2,
Timeout: 30 * time.Second,
Timeout: 600 * time.Second,
WorkerFunc: WorkerUnzip,
})
}

0 comments on commit 60b50bc

Please sign in to comment.