Add buffering to output received from runner

This commit is contained in:
Sebastian Serth
2021-10-11 09:47:17 +02:00
parent 3240ea7076
commit a074a5cb0d
4 changed files with 126 additions and 16 deletions

View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
class Runner::Connection::Buffer
class Error < ApplicationError
class NotEmpty < Error; end
end
end