Compare commits

..

No commits in common. "93c458d85698aafb0eb1befa8c34920f93462adb" and "2d77358d50e085e285550ef93e378948e57d0375" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -41,8 +41,7 @@ public class CreateBitDepthHandler implements ActionHandler {
.setPayload(ByteString.copyFromUtf8("Validation error: " + e.getMessage())); .setPayload(ByteString.copyFromUtf8("Validation error: " + e.getMessage()));
} catch (Exception e) { } catch (Exception e) {
logger.error("Error creating bit-depth", e); logger.error("Error creating artist", e);
return TransportProtocol.Response.newBuilder()
return TransportProtocol.Response.newBuilder() return TransportProtocol.Response.newBuilder()
.setStatusCode(500) .setStatusCode(500)
.setPayload(ByteString.copyFromUtf8("Error: " + e.getMessage())); .setPayload(ByteString.copyFromUtf8("Error: " + e.getMessage()));

View File

@ -38,7 +38,7 @@ public class UpdateBitDepthHandler implements ActionHandler {
logger.warn("BitDepth not found with ID: {}", id); logger.warn("BitDepth not found with ID: {}", id);
return TransportProtocol.Response.newBuilder() return TransportProtocol.Response.newBuilder()
.setStatusCode(404) .setStatusCode(404)
.setPayload(ByteString.copyFromUtf8("BitDepth not found")); .setPayload(ByteString.copyFromUtf8("Artist not found"));
} }
BitDepthMessages.BitDepth bitDepthProto = BitDepthMapper.toProtobuf(bitDepthOpt.get()); BitDepthMessages.BitDepth bitDepthProto = BitDepthMapper.toProtobuf(bitDepthOpt.get());