You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Magnus Naeslund (JIRA)" <ji...@apache.org> on 2005/07/19 13:21:48 UTC

[jira] Updated: (DIRMINA-73) The new close(boolean wait) logic seems flawed, never waiting for flush

     [ http://issues.apache.org/jira/browse/DIRMINA-73?page=all ]

Magnus Naeslund updated DIRMINA-73:
-----------------------------------

    Attachment: mina-SocketSession-close-fix1.diff

I found out i can attach a file instead :)

> The new close(boolean wait) logic seems flawed, never waiting for flush
> -----------------------------------------------------------------------
>
>          Key: DIRMINA-73
>          URL: http://issues.apache.org/jira/browse/DIRMINA-73
>      Project: Directory MINA
>         Type: Bug
>     Versions: 0.7.3
>  Environment: N/A
>     Reporter: Magnus Naeslund
>     Assignee: Trustin Lee
>     Priority: Critical
>  Attachments: mina-SocketSession-close-fix1.diff
>
> It seems the while (disposed) test should be inverted.
> Patch:
> --- org/apache/mina/io/socket/SocketSession.java        (revision 219643)
> +++ org/apache/mina/io/socket/SocketSession.java        (working copy)
> @@ -130,7 +130,7 @@
>          SocketIoProcessor.getInstance().removeSession( this );
>          if( wait )
>          {
> -            while( disposed )
> +            while( !disposed )
>              {
>                  try
>                  {

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira