eclipse-archived / ceylon-herd

The Ceylon repository web application
Apache License 2.0
21 stars 11 forks source link

1-2s lag between PUT requests #63

Closed FroMage closed 8 years ago

FroMage commented 12 years ago
for f in {1..10}; do echo $f; curl -X PUT --user foo:bar --data-binary @modules/com/acme/helloworld/1.0.0/com.acme.helloworld-1.0.0.car http://localhost:9000/uploads/174/repo//com/acme/helloworld/1.0.0/com.acme.helloworld-1.0.0.car; done

That shows we have 1-2s delay between each PUT requests. We don't have that for other sorts of requests such as HEAD for some reason. We need to check why we have precisely round delays.

FroMage commented 12 years ago

Closed by mistake

FroMage commented 9 years ago

Found it!!! It's a bug in Play, I have a fix and will report it.

FroMage commented 9 years ago

Here: http://play.lighthouseapp.com/projects/57987-play-framework/tickets/1882-not-sending-100-continue-on-put-when-chunked

quintesse commented 9 years ago

Wow, great detective work :)

FroMage commented 9 years ago

So apparently Play 1.3 is going to take a while so we should build our own cooked Play version based on the latest 1.x stable release and with this fix.

FroMage commented 8 years ago

Updated live.