Skip to content

Commit

Permalink
fix(emm): ndjsonld.gz file suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
olovy committed Nov 28, 2024
1 parent acb4ac4 commit 310865f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emm/src/main/java/whelk/Dump.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public class Dump {
private static final String DUMP_END_MARKER = DUMP_END_MARKER_NO_NEWLINE + "\n"; // Must be 17 bytes
private static final String JSON_CONTENT_TYPE = "application/json";
private static final int GZIP_BUF_SIZE = 64 * 1024;
private static final String ND_JSON_LD_GZ_EXT = ".jsonld.gz";
private static final String ND_JSON_LD_GZ_EXT = ".ndjsonld.gz";

public static void sendDumpResponse(Whelk whelk, String apiBaseUrl, HttpServletRequest req, HttpServletResponse res) throws IOException, SQLException {
String selection = req.getParameter("selection");
Expand Down

0 comments on commit 310865f

Please sign in to comment.