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 4da0ac9 commit 230bca5Copy full SHA for 230bca5
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/session/IClientSession.java
@@ -38,19 +38,19 @@
38
39
public abstract class IClientSession {
40
41
- private long id;
+ private volatile long id;
42
43
private ClientVersion clientVersion;
44
45
private ZoneId zoneId;
46
47
private TimeZone timeZone;
48
49
- private long userId;
+ private volatile long userId;
50
51
- private String username;
+ private volatile String username;
52
53
- private boolean login = false;
+ private volatile boolean login = false;
54
55
private long logInTime;
56
0 commit comments