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

Fix typo in rest endpoint path #7423 #7498

Merged
merged 2 commits into from
Mar 7, 2023
Merged
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
Next Next commit
Fix typo in rest endpoint path #7424
Signed-off-by: Ljupcho Palashevski <[email protected]>
  • Loading branch information
lpalashevski committed Mar 7, 2023
commit d740395d98d7a3f0cce331624fcf724af8e11d65
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 207,7 @@ public void deleteGovernanceZone(String userId,
final String methodName = "deleteGovernanceZone";

final String guidParameter = "zoneGUID";
final String urlTemplate = serverPlatformURLRoot "/servers/{0}/open-metadata/access-services/governance-program/users/{1}/governance-zones/{2}/delete}";
final String urlTemplate = serverPlatformURLRoot "/servers/{0}/open-metadata/access-services/governance-program/users/{1}/governance-zones/{2}/delete";

super.removeReferenceable(userId, zoneGUID, guidParameter, urlTemplate, methodName);
}
Expand Down