Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
fix: metadata filtering by sdb name (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
melanahammel authored Feb 20, 2020
1 parent ff217b9 commit 4cd9cff
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 @@ -54,9 +54,9 @@ public SdbMetadataController(
public SDBMetadataResult getMetadata(
@RequestParam(value = "limit", required = false, defaultValue = "100") int limit,
@RequestParam(value = "offset", required = false, defaultValue = "0") int offset,
@RequestParam(value = "sdbNameFilter", required = false) String sdbNameFilter) {
@RequestParam(value = "sdbName", required = false) String sdbName) {

return metadataService.getSDBMetadata(limit, offset, sdbNameFilter);
return metadataService.getSDBMetadata(limit, offset, sdbName);
}

@RequestMapping(method = PUT)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# limitations under the License.
#

version=4.0.0
version=4.0.1
group=com.nike.cerberus
springBootVersion=2.2.4.RELEASE

0 comments on commit 4cd9cff

Please sign in to comment.