Project

General

Profile

Actions

Bug #5336

closed

[PATCH] test_ssl_session: wait for callbacks to run in server thread

Added by normalperson (Eric Wong) over 12 years ago. Updated over 12 years ago.

Status:
Closed
Target version:
ruby -v:
ruby 1.9.3dev (2011-09-17 revision 33263) [x86_64-linux]
Backport:
[ruby-core:39619]

Description

test/openssl/test_ssl_session.rb: wait for callbacks to run in server thread

Closing the SSL connection on the client side does not ensure the
server side has closed and called all the needed callbacks in
the server thread. Using Thread.pass here should force the
server thread to run and call the needed callbacks.

I needed to reproduce the case like this after a few loops:

while ./ruby -I .ext/x86_64-linux/ \
	test/openssl/test_ssl_session.rb -v \
	-n test_ctx_server_session_cb
do
	:
done

The above loop appears to run indefinitely with this patch
applied.


Files

Actions #1

Updated by Anonymous over 12 years ago

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

This issue was solved with changeset r33311.
Eric, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.


  • test/openssl/test_ssl_session.rb: ensure server calls callbacks in
    test_ctx_server_session_cb. Thanks to Eric Wong for the patch.
    [Bug #5336] [ruby-core:39619]

Updated by MartinBosslet (Martin Bosslet) over 12 years ago

  • Target version changed from 2.0.0 to 1.9.3

When looping I encountered the same behaviour as Eric.
With his patch the problem is now gone.

Actions

Also available in: Atom PDF

Like0
Like0Like0