Skip to content

Commit 7d58d34

Browse files
authored
Merge pull request #96 from anlek/master
Ability to overwrite the `auth_method` in the ClientConfig
2 parents eb57a9b + f907f96 commit 7d58d34

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/influxdb-rails.rb

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def client
3636
database: cfg.database,
3737
username: cfg.username,
3838
password: cfg.password,
39+
auth_method: cfg.auth_method,
3940
hosts: cfg.hosts,
4041
port: cfg.port,
4142
async: cfg.async,

lib/influxdb/rails/configuration.rb

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class ClientConfig
3434
username: "root".freeze,
3535
password: "root".freeze,
3636
database: nil,
37+
auth_method: "params".freeze,
3738
async: true,
3839
use_ssl: false,
3940
retry: nil,

0 commit comments

Comments
 (0)