Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git7140 match client to server endpoints #7141

Merged
merged 2 commits into from
Nov 29, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ public void updateSchemaAttribute(String userId,
methodName));
requestBody.setEffectiveTime(effectiveTime);

final String urlTemplate = serverPlatformURLRoot + urlTemplatePrefix + "/schema-attribute/{2}?isMergeUpdate={3}&forLineage={4}&forDuplicateProcessing={5}";
final String urlTemplate = serverPlatformURLRoot + urlTemplatePrefix + "/schema-attributes/{2}?isMergeUpdate={3}&forLineage={4}&forDuplicateProcessing={5}";

restClient.callVoidPostRESTCall(methodName,
urlTemplate,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ public ElementHeaderResponse getSchemaTypeParent(@PathVariable String
* UserNotAuthorizedException the user is not authorized to issue this request
* PropertyServerException there is a problem reported in the open metadata server(s)
*/
@PostMapping(path = "/schema-elements/{schemaElementGUID}/schema-attribute")
@PostMapping(path = "/schema-elements/{schemaElementGUID}/schema-attributes")

public GUIDResponse createSchemaAttribute(@PathVariable String serverName,
@PathVariable String userId,
Expand Down