Skip to content

Commit

Permalink
changing the db metadata info response
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed Sep 27, 2024
1 parent 3c07cf2 commit 73ecaae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/valis/routes/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def convert_metadata(data) -> dict:
"""
mm = defaultdict(dict)
for i in itertools.chain(data, gen_misc_models()):
mm[i['schema']].update({i['column_name']: i})
mm[i['schema']].update({f"{i['table_name']}.{i['column_name']}": i})
return mm


Expand Down

0 comments on commit 73ecaae

Please sign in to comment.