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

Support rethinkdbdash's ssl option on each server. #38

Open
mishawakerman opened this issue Jun 24, 2020 · 0 comments
Open

Support rethinkdbdash's ssl option on each server. #38

mishawakerman opened this issue Jun 24, 2020 · 0 comments

Comments

@mishawakerman
Copy link

rethinkdbdash supports both of the following config schemas:

{
    db: "some_db",
    pool: true,
    servers: [{
        host: "localhost",
        port: 28015,
        ssl: {
            rejectUnauthorized: false,
        }
    }]
}

and

{
    db: "some_db",
    pool: true,
    servers: [{
        host: "localhost",
        port: 28015,
    }],
    ssl: {
        rejectUnauthorized: false,
    }
}

But only the later is supported by rethinkdb-migrate in its validation of the configuration. This is easy enough to workaround but looks like a small validation oversight in rethinkdb-migrate and ideally we'd pass the same config to rethinkdbdash and rethinkdb-migrate.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant