mirror of
https://github.com/gomods/athens
synced 2026-02-10 14:38:12 +00:00
* Adding context to storage.Saver parameters * +`buffalo.Context` as first param in storage.Saver Fixes #177 * Parallelizing Upload to Azure Blob Storage Fixes #175 * Fixing import clausing * go fmt ./... * Populating default context * CI: Echo files modified by gofmt check to stderr Doing so allows users to see which files still need to be formatted. * Upgrading Go, then go fmt ./... * Addressing Feedback * more responding to feedback * Adding worker save Default Context * Removing tracing, buffalo.Context usage in Storage interface github.com/bketelsen/buffet relies on using a `buffalo.Context` however, often a `storage.Saver` is invoked from a buffalo worker, which has no buffalo.Context associated with it. Therefore, we had two options: create a buffalo context for each worker's Job, or remove the buffalo.Context dependency in the Saver interface. * Fixing missed changes * Review feedback