Revert "Remove no-op InfluxDB URL param"

This reverts commit 21f548d3c07189c6a413cf88c2b60cc9ada73497.

(cherry picked from commit fc5b1178c643d37dfa1ce8512966b95961bac18f)
This commit is contained in:
Alexander A. Klimov 2024-01-16 12:19:47 +01:00
parent f2c83fbbf2
commit 1b5bc20e50

View File

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