-
Notifications
You must be signed in to change notification settings - Fork 508
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
[WIP]Remove rdbms storage from pkg/storage #502
Conversation
Codecov Report
@@ Coverage Diff @@
## master #502 +/- ##
==========================================
+ Coverage 41.64% 42.59% +0.94%
==========================================
Files 98 92 -6
Lines 2802 2709 -93
==========================================
- Hits 1167 1154 -13
+ Misses 1527 1447 -80
Partials 108 108
Continue to review full report at Codecov.
|
can you fill in description with: Why, how... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After @michalpristas comment re: docker
- Not sourcing from cmd/proxy/.env, because that doesn't export any variables - Removing mysql support (I feel like 1 database is enough) - Pruning networks on teardown I'm happy to split these changes up into separate PRs - it's the end of the day for me so I wanted to get everything in 😄
Removing docker required a whole lot of changes. Addressed at #511 |
@@ -34,12 +33,6 @@ func GetStorage() (storage.Backend, error) { | |||
return nil, err | |||
} | |||
return mongo.NewStorage(mongoURI) | |||
case "postgres", "sqlite", "cockroach", "mysql": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we are removing postgres support but starting postrgres image. why is that?
Yep! sorry about that! the builds and tests succeeded only at #511 |
Fixes #494