Hi all! I have an issue with credentials not being...
# questions
p
Hi all! I have an issue with credentials not being inserted into the dataset configuration: credentials.yml my_connection_string: "connection string" catalog.yml table1: type: pandas.CSVDataSet filepath: abfs://my_container/table1.csv credentials: connection_string: my_connection_string I get "unable to connect to account for Connection string is either blank or malformed.." errors. I guess "my_connection_string" is used as the connection string not "connection string".
n
can you change it to
credentials: my_conneciton_string
instead?
if i understand correctly, this is what you need:
Copy code
# credentials:

my_connection_string:
  connection_string: <actual_connection_string> # Assuming connection string is the actual name of the argument
Copy code
# catalog.yml

<some_data>:
  ...
  credentials: my_connection_string
p
Thanks so much. I did not realize that the replacement only works for top level keys.