diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2019-07-09 00:17:39 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2019-08-01 17:46:22 +0200 |
commit | 903b0e9a002e0839943c5d734f3728114272ebc1 (patch) | |
tree | 428ed08e21cf0469bccc36c7b98204112b2c0124 /src/plugins/influxdb-writer.c | |
parent | 6c36102bf3964808f6f2db4161f79cf458880a5a (diff) |
Rework how to build dest DB URL
Change-Id: I5a351d6e2f5750dcb39bd9feff71abe930c052bb
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'src/plugins/influxdb-writer.c')
-rw-r--r-- | src/plugins/influxdb-writer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/influxdb-writer.c b/src/plugins/influxdb-writer.c index ddf8fc6..c114ab5 100644 --- a/src/plugins/influxdb-writer.c +++ b/src/plugins/influxdb-writer.c @@ -152,7 +152,7 @@ CURL* make_curl_write_post(afb_api_t apiHandle, const char* url, json_object* me CURL* influxdb_write(afb_api_t apiHandle, const char* host, const char* port, json_object* metricJ) { char url[URL_MAXIMUM_LENGTH]; /* Safe limit for most popular web browser */ - make_url(url, sizeof(url), host, port, "write"); + make_url_db(url, sizeof(url), host, port, "write", DEFAULT_DB); return make_curl_write_post(apiHandle, url, metricJ); } |