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 61569f5 commit d900fe5Copy full SHA for d900fe5
godev/cmd/worker/main.go
@@ -133,7 +133,7 @@ func handleTasks(cfg *config.Config) content.HandlerFunc {
133
134
// Copy the past 20 days uploaded reports from prod to dev gcs bucket.
135
if cfg.Env != "prod" {
136
- url := cfg.WorkerURL + "/copy/?start=" + now.Format(time.DateOnly) + "&end=" + now.AddDate(0, 0, -1*20).Format(time.DateOnly)
+ url := cfg.WorkerURL + "/copy/?start=" + now.AddDate(0, 0, -1*20).Format(time.DateOnly) + "&end=" + now.Format(time.DateOnly)
137
if _, err := createHTTPTask(cfg, url); err != nil {
138
return err
139
}
0 commit comments