-
Notifications
You must be signed in to change notification settings - Fork 2
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
Minor issues to be fixed #48
Comments
Not sure about that... Let's think this scenarioA user has 2 databases in his config file, a postgres and a Mongo (assuming we support it) and first in operation is Postgres, which fails for whatever reason, does he want to continue with Mongo replication?
I'll investigate and return to this later. |
Yes i believe he should continue with Mongo replication. If a user tries to replicate a lot of databases |
I agree but I also believe that users should be able to disable this. Let's leave it as is for now (since we support only one database) and we change it to not return later, plus a |
This issue keeps track of all the general issues that need attention in our codebase:
db.c:36
: we should not return if the connection fails in one of the databases.postgres.c
: there aremalloc
'd values that are not freed, should the connection with postgres fails.(This might lead to a bigger issue of keeping track of all the pointers that need to be freed in the various stages of the replication progress.)
The text was updated successfully, but these errors were encountered: