From 3d3c903eff4f4c90ff3ca90d1d84435fed188f72 Mon Sep 17 00:00:00 2001 From: "Tschaen, Brendan" Date: Wed, 20 Feb 2019 14:35:04 -0500 Subject: Update MUSIC test cases. Fix some old test cases that were expecting incorrect output Refactor to REST API suite to re-use cassandra instance Change-Id: I9400b3e1e3ce35114e587336f0841207493c9680 Issue-ID: MUSIC-341 Signed-off-by: Tschaen, Brendan --- src/main/java/org/onap/music/rest/RestMusicAdminAPI.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main/java/org/onap/music/rest/RestMusicAdminAPI.java') diff --git a/src/main/java/org/onap/music/rest/RestMusicAdminAPI.java b/src/main/java/org/onap/music/rest/RestMusicAdminAPI.java index 289cab06..6ad6c03b 100755 --- a/src/main/java/org/onap/music/rest/RestMusicAdminAPI.java +++ b/src/main/java/org/onap/music/rest/RestMusicAdminAPI.java @@ -112,6 +112,8 @@ public class RestMusicAdminAPI { .build(); } } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "Unable to authenticate", e); + response.status(Status.UNAUTHORIZED); return response.entity(new JsonResponse(ResultType.FAILURE).setError(e.getMessage()).toMap()).build(); } if (appName == null || userId == null || isAAF == null || password == null) { -- cgit 1.2.3-korg