Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move jobs to mw #197

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ require (
github.com/aws/aws-sdk-go-v2 v1.17.5
github.com/aws/aws-sdk-go-v2/config v1.18.15
github.com/aws/aws-sdk-go-v2/service/location v1.22.1
github.com/digitalocean/go-workers2 v0.10.3
github.com/flopp/go-staticmaps v0.0.0-20220221183018-c226716bec53
github.com/go-chi/chi v1.5.4
github.com/go-chi/chi/v5 v5.0.10
Expand All @@ -21,8 +20,8 @@ require (
github.com/graph-gophers/dataloader/v7 v7.1.0
github.com/hypirion/go-filecache v0.0.0-20160810125507-e3e6ef6981f0
github.com/interline-io/log v0.0.0-20231211003339-8bdc406adcd2
github.com/interline-io/transitland-lib v0.14.0-rc1.0.20231202005632-a9ea742322f7
github.com/interline-io/transitland-mw v0.0.0-20231211012518-4cd4a8535e63
github.com/interline-io/transitland-lib v0.14.0
github.com/interline-io/transitland-mw v0.0.0-20231220040358-e71272cbbbdb
github.com/jellydator/ttlcache/v2 v2.11.1
github.com/jmoiron/sqlx v1.3.5
github.com/lib/pq v1.10.7
Expand Down Expand Up @@ -69,6 +68,7 @@ require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/digitalocean/go-workers2 v0.10.4 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/flopp/go-coordsparser v0.0.0-20201115094714-8baaeb7062d5 // indirect
github.com/fogleman/gg v1.3.0 // indirect
Expand Down Expand Up @@ -125,3 +125,4 @@ require (
)

// replace github.com/interline-io/transitland-lib => /Users/irees/src/interline-io/transitland-lib
// replace github.com/interline-io/transitland-mw => /Users/irees/src/interline-io/transitland-mw
12 changes: 6 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cu
github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=
github.com/dgryski/trifles v0.0.0-20200323201526-dd97f9abfb48 h1:fRzb/w+pyskVMQ+UbP35JkH8yB7MYb4q/qhBarqZE6g=
github.com/dgryski/trifles v0.0.0-20200323201526-dd97f9abfb48/go.mod h1:if7Fbed8SFyPtHLHbg49SI7NAdJiC5WIA09pe59rfAA=
github.com/digitalocean/go-workers2 v0.10.3 h1:qs7MELMMQybjSxmvFqvedXJAqkF7f5vC+QnVa1dmUwA=
github.com/digitalocean/go-workers2 v0.10.3/go.mod h1:4F0tUdjgqV9ZOGCTmn5Cr58CVshMI5o0SmNx6e5T98o=
github.com/digitalocean/go-workers2 v0.10.4 h1:3GTz14m2gaPPzUEEXBLLK0Y/jyWTYi5QKcSbrCbyIJQ=
github.com/digitalocean/go-workers2 v0.10.4/go.mod h1:4F0tUdjgqV9ZOGCTmn5Cr58CVshMI5o0SmNx6e5T98o=
github.com/dimchansky/utfbom v1.1.1 h1:vV6w1AhK4VMnhBno/TPVCoK9U/LP0PkLCS9tbxHdi/U=
github.com/dimchansky/utfbom v1.1.1/go.mod h1:SxdoEBH5qIqFocHMyGOXVAybYJdr71b1Q/j0mACtrfE=
github.com/dnaeon/go-vcr v1.1.0 h1:ReYa/UBrRyQdant9B4fNHGoCNKw6qh6P0fsdGmZpR7c=
Expand Down Expand Up @@ -270,10 +270,10 @@ github.com/iancoleman/orderedmap v0.2.0/go.mod h1:N0Wam8K1arqPXNWjMo21EXnBPOPp36
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
github.com/interline-io/log v0.0.0-20231211003339-8bdc406adcd2 h1:ScRM8Kr6UwAvblyGMdupRwEy7eWCROPLWmGJf1J1aOk=
github.com/interline-io/log v0.0.0-20231211003339-8bdc406adcd2/go.mod h1:chJaM8SKcHI6ivoeFuZ8M8axTjSV4TPmuQ+sAyAHa34=
github.com/interline-io/transitland-lib v0.14.0-rc1.0.20231202005632-a9ea742322f7 h1:rwkKzYzl05Q4TM++L9RIJbXPjIvURoMN5vEr8dvUV/Q=
github.com/interline-io/transitland-lib v0.14.0-rc1.0.20231202005632-a9ea742322f7/go.mod h1:UcfuCX6DyKt/yn5GECFn3jQ6NcZEjt5XyPjf8a3tXZ4=
github.com/interline-io/transitland-mw v0.0.0-20231211012518-4cd4a8535e63 h1:ZaqjWLLHAUcg6giXwdnDvzqlQJxYavG5JRdfm+zvZ3c=
github.com/interline-io/transitland-mw v0.0.0-20231211012518-4cd4a8535e63/go.mod h1:4rAXsCPb7miaAmLOoKjWZSBVCUBiTU5KdisG8orDyYQ=
github.com/interline-io/transitland-lib v0.14.0 h1:kjUIk+2BtzBY2yafXoRQ4MMcatHydDg6HOtwbzF3mEA=
github.com/interline-io/transitland-lib v0.14.0/go.mod h1:TwGmZjX/iJRaYWKKosU/TIn8Dt4dywYCAXqmZwAA6qo=
github.com/interline-io/transitland-mw v0.0.0-20231220040358-e71272cbbbdb h1:gt3chseddTsXkMzJEQstFlIAwwxU7IpeKRm4mViN/5s=
github.com/interline-io/transitland-mw v0.0.0-20231220040358-e71272cbbbdb/go.mod h1:QyssKyKXwbTWhFT9O08nVj+gScPntMvLh1qMGNr1Ksw=
github.com/jarcoal/httpmock v1.3.1 h1:iUx3whfZWVf3jT01hQTO/Eo5sAYtB2/rqaUuOtpInww=
github.com/jarcoal/httpmock v1.3.1/go.mod h1:3yb8rc4BI7TCBhFY8ng0gjuLKJNquuDNiPaZjnENuYg=
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 h1:IPJ3dvxmJ4uczJe5YQdrYB16oTJlGSC/OyZDqUk9xX4=
Expand Down
59 changes: 0 additions & 59 deletions jobs/jobs.go

This file was deleted.

21 changes: 0 additions & 21 deletions jobs/jobs_test.go

This file was deleted.

147 changes: 0 additions & 147 deletions jobs/local_jobs.go

This file was deleted.

81 changes: 0 additions & 81 deletions jobs/local_test.go

This file was deleted.

Loading
Loading