lib/pmux-gw/pmux_handler.rb in pmux-gw-0.1.4 vs lib/pmux-gw/pmux_handler.rb in pmux-gw-0.1.5

- old
+ new

@@ -56,10 +56,10 @@ # エラー検出モードの場合はバッフしていた情報を返す # ただし、コンテントが規定値を超えていた場合はその旨を返し、 # pmux実行のステータスコードが0でない場合はその値とstderrを返す @cc.response.content_type("application/octet-stream") if @cc.content_too_big - @cc.response.status = 500 + @cc.response.status = 507 @cc.response.content = "#{retcode}\r\ntoo big response data size with detect error (#{@cc.stdout_data.length} byte)" elsif retcode == 0 @cc.response.status = 200 @cc.response.content = @cc.stdout_data else