Skip to content

Commit

Permalink
Merge pull request #8298 from mandy-chessell/oak2024
Browse files Browse the repository at this point in the history
Use correct placeholder name in UC functions
  • Loading branch information
mandy-chessell authored Jul 23, 2024
2 parents c67e26e + 916f0ca commit 2549392
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Content-Type: application/json

###

@server1GUID=d3a6b3e1-8371-4a2c-bf2f-4a531ac03e65
@server1GUID=add guid here


###
Expand Down Expand Up @@ -333,7 +333,7 @@ Content-Type: application/json

###

@server2GUID=96180c82-70bd-4bea-9b25-fda179c03fea
@server2GUID=add guid here

###
# @name=getAssetGraph (UC Server 2)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ private Map<String, String> getPlaceholderProperties(FunctionInfo functionInfo)
placeholderProperties.put(PlaceholderProperty.SERVER_NETWORK_ADDRESS.getName(), ucServerEndpoint);
placeholderProperties.put(UnityCatalogPlaceholderProperty.CATALOG_NAME.getName(), functionInfo.getCatalog_name());
placeholderProperties.put(UnityCatalogPlaceholderProperty.SCHEMA_NAME.getName(), functionInfo.getSchema_name());
placeholderProperties.put(UnityCatalogPlaceholderProperty.FUNCTION_NAME.getName(), functionInfo.getFull_name());
placeholderProperties.put(UnityCatalogPlaceholderProperty.FUNCTION_NAME.getName(), functionInfo.getName());
placeholderProperties.put(PlaceholderProperty.DESCRIPTION.getName(), functionInfo.getComment());
placeholderProperties.put(PlaceholderProperty.VERSION_IDENTIFIER.getName(), null);

Expand Down

0 comments on commit 2549392

Please sign in to comment.