gsandf / rethinkdb-elasticsearch-stream

🔄 sync RethinkDB tables to Elasticsearch using changefeeds
9 stars 4 forks source link

Allow specifying RethinkDB & Elasticsearch connection info using a string #17

Open blakek opened 7 years ago

blakek commented 7 years ago

Right now, each accepts an object:

{
  host: String,
  port: Number | String,
  protocol: String
}

All this can be represented using a string:

`${protocol}://${host}:${port}`