We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ddd1f3 commit 3418df7Copy full SHA for 3418df7
src/main/java/net/schmizz/sshj/connection/channel/direct/SessionChannel.java
@@ -58,13 +58,13 @@ public class SessionChannel
58
59
private final ChannelInputStream err = new ChannelInputStream(this, trans, lwin);
60
61
- private Integer exitStatus;
+ private volatile Integer exitStatus;
62
63
- private Signal exitSignal;
64
- private Boolean wasCoreDumped;
65
- private String exitErrMsg;
+ private volatile Signal exitSignal;
+ private volatile Boolean wasCoreDumped;
+ private volatile String exitErrMsg;
66
67
- private Boolean canDoFlowControl;
+ private volatile Boolean canDoFlowControl;
68
69
private boolean usedUp;
70
0 commit comments