Skip to content
Snippets Groups Projects
Commit 259c50f7 authored by Riccardo Boero's avatar Riccardo Boero :innocent:
Browse files

Fix results connection

parent 9b281a06
No related branches found
No related tags found
No related merge requests found
name = "FACT_unified_data_IO" name = "FACT_unified_data_IO"
uuid = "ec8d5dc6-0dfe-41d7-8c2c-855ff50b7b42" uuid = "ec8d5dc6-0dfe-41d7-8c2c-855ff50b7b42"
authors = ["Riccardo Boero <ribo@nilu.no>"] authors = ["Riccardo Boero <ribo@nilu.no>"]
version = "0.0.4" version = "0.0.5"
[deps] [deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
......
...@@ -142,7 +142,7 @@ This function creates a `Service` object from the given `service_dict` and uses ...@@ -142,7 +142,7 @@ This function creates a `Service` object from the given `service_dict` and uses
# Behavior # Behavior
- Constructs a `Service` object using the provided host and port from `service_dict`. - 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 # Example
Define the service dictionary and establish a connection: Define the service dictionary and establish a connection:
...@@ -166,7 +166,7 @@ function get_results_connection(service_dict::Dict) ...@@ -166,7 +166,7 @@ function get_results_connection(service_dict::Dict)
service_dict["host"], service_dict["host"],
service_dict["port"] service_dict["port"]
) )
return get_connection(service) return get_results_connection(service)
end end
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment