abdullah alamoudi has submitted this change and it was merged. Change subject: Map *.ico files to the image/x-icon media type ......................................................................
Map *.ico files to the image/x-icon media type Change-Id: Icc72b0df40b4cad2083d9832318bdaac85161250 Reviewed-on: https://asterix-gerrit.ics.uci.edu/1617 Sonar-Qube: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> BAD: Jenkins <[email protected]> Reviewed-by: abdullah alamoudi <[email protected]> Integration-Tests: Jenkins <[email protected]> --- M hyracks-fullstack/hyracks/hyracks-http/src/main/java/org/apache/hyracks/http/server/utils/HttpUtil.java 1 file changed, 2 insertions(+), 0 deletions(-) Approvals: abdullah alamoudi: Looks good to me, approved Jenkins: Verified; No violations found; No violations found; Verified diff --git a/hyracks-fullstack/hyracks/hyracks-http/src/main/java/org/apache/hyracks/http/server/utils/HttpUtil.java b/hyracks-fullstack/hyracks/hyracks-http/src/main/java/org/apache/hyracks/http/server/utils/HttpUtil.java index 9556d60..45763fa 100644 --- a/hyracks-fullstack/hyracks/hyracks-http/src/main/java/org/apache/hyracks/http/server/utils/HttpUtil.java +++ b/hyracks-fullstack/hyracks/hyracks-http/src/main/java/org/apache/hyracks/http/server/utils/HttpUtil.java @@ -107,6 +107,8 @@ return "text/css"; case ".txt": return "text/plain"; + case ".ico": + return "image/x-icon"; case ".js": return "application/javascript"; default: -- To view, visit https://asterix-gerrit.ics.uci.edu/1617 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: Icc72b0df40b4cad2083d9832318bdaac85161250 Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Till Westmann <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: abdullah alamoudi <[email protected]>
