Remove no-op InfluxDB URL param

precision=ns is the default.
This commit is contained in:
Alexander A. Klimov 2023-01-16 12:00:53 +01:00
parent eaa3cd83ad
commit 21f548d3c0
1 changed files with 0 additions and 1 deletions

View File

@ -554,7 +554,6 @@ Url::Ptr InfluxdbCommonWriter::AssembleBaseUrl()
url->SetScheme(GetSslEnable() ? "https" : "http");
url->SetHost(GetHost());
url->SetPort(GetPort());
url->AddQueryElement("precision", "ns");
return url;
}