Skip to content

Consider adding option to force close - killing all in-flight connections. #168

Open
@ioquatix

Description

@ioquatix

def close
while @pool.busy?
Console.logger.warn(self) {"Waiting for #{@protocol} pool to drain: #{@pool}"}
@pool.wait
end
@pool.close
end

The after hook can hang if a test fails without closing all responses:

				def after
					@client&.close
					@server_task&.stop
					@bound_endpoint&.close
					
					super
				end

Maybe introduce @client&.close(force = true) OR @client&.stop (force close). I'm a little worried about side effects since the connection pool may not contain all active connections.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions