Files
athens/pkg/eventlog/errors.go
Michal Pristas 6c4a0641df Background job for pulling modules from olympus (#132)
* basic structure

* added olympus endpoint for fetching log

* broken test

* added backing buffalo job

* slightly reshuffled, todo more shuffling

* reshuffle more

* breaking things up

* more breaking up

* hook to 101

* added redis to docker compose file

* working!

* a

* build fix

* first batch of changes towards new arch"

* first batch of comments resolved

* override for olympus endpoint

* styling

* osFs fix

* fixed in memory storage

* in-mem storage and test (#166)
2018-06-11 18:12:10 +02:00

11 lines
226 B
Go

package eventlog
// ErrUseNewOlympus is error raise on redirect from global dns entry to specific deployment
type ErrUseNewOlympus struct {
Endpoint string
}
func (e *ErrUseNewOlympus) Error() string {
return e.Endpoint
}