diff --git a/Project.toml b/Project.toml index 518df80fa53dd4647b3b79aa8ecb767743fe444a..7f273cf0d4dc29e84cb299dae26953d39a850b0d 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "FACT_unified_data_IO" uuid = "ec8d5dc6-0dfe-41d7-8c2c-855ff50b7b42" authors = ["Riccardo Boero <ribo@nilu.no>"] -version = "0.0.4" +version = "0.0.5" [deps] DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" diff --git a/src/utils/db.jl b/src/utils/db.jl index 18d913f15384526668d5e3a8731dc6addceb02d1..03b1c347ac2cccc62f33fdf9c6df0b6e2d4afa16 100644 --- a/src/utils/db.jl +++ b/src/utils/db.jl @@ -142,7 +142,7 @@ This function creates a `Service` object from the given `service_dict` and uses # Behavior - Constructs a `Service` object using the provided host and port from `service_dict`. -- Calls `get_connection` with the constructed `Service` object to establish the database connection. +- Calls `get_results_connection` with the constructed `Service` object to establish the database connection. # Example Define the service dictionary and establish a connection: @@ -166,7 +166,7 @@ function get_results_connection(service_dict::Dict) service_dict["host"], service_dict["port"] ) - return get_connection(service) + return get_results_connection(service) end """