My application is running the free hobby-dev program and free hobby-dev database (https://orandno.herokuapp.com/Files).
If I send a small file in POST body all fine, but if the file is big I recieve error H18 - Server Request Interrupted.
My code in golang on sever side now do almost nothing:
func DBUploadFile(c *gin.Context) { c.JSON(200, gin.H{"Uploaded": "OK"}) return }
Heroku staff wrote me "There is not a limit on filesize for uploads"... But why error H18 arise?