Increasing file size limit to 2G for RDFUploadController. NIHVIVO-245
This commit is contained in:
parent
6ca8826f85
commit
f90d5470fa
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ import edu.cornell.mannlib.vitro.webapp.dao.jena.event.EditEvent;
|
|||
|
||||
public class RDFUploadController extends BaseEditController {
|
||||
|
||||
private static int maxFileSizeInBytes = 1024 * 1024 * 100; //100mb
|
||||
private static int maxFileSizeInBytes = 1024 * 1024 * 2000; //2000mb
|
||||
|
||||
public void doPost(HttpServletRequest req, HttpServletResponse response) throws ServletException {
|
||||
boolean isMultipart = ServletFileUpload.isMultipartContent(req);
|
||||
|
|
Loading…
Add table
Reference in a new issue