2

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?

Ivan Delov
  • 21
  • 1
  • 3

1 Answers1

0

Heroku gave more reason why you might end up with that error, which I will advice you read for more clarification H18 - Server Request Interrupted, but this answer should also solve your issue.

antzshrek
  • 9,276
  • 5
  • 26
  • 43