Skip to content

Commit

Permalink
AutoClose should default to false when attaching a session.
Browse files Browse the repository at this point in the history
  • Loading branch information
MicrosoftHPC committed Jul 21, 2011
1 parent 70699c7 commit daac40b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/microsoft/hpc/scheduler/session/SessionBase.java
Expand Up @@ -501,7 +501,7 @@ static <T extends SessionBase> SessionBase attachInternal(

SessionBase session;
if (!info.isDurable()) {
session = new Session(info, attachInfo.getHeadnode(), false);
session = new Session(info, attachInfo.getHeadnode(), true);
} else {
session = new DurableSession(info, attachInfo.getHeadnode());
}
Expand Down

0 comments on commit daac40b

Please sign in to comment.