Skip to content

Commit 9dcfd4b

Browse files
committed
Fix thread-safety of field HangingServiceRequestBase.logAllWireBytes
1 parent a2cbefd commit 9dcfd4b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/microsoft/exchange/webservices/data/core/request/HangingServiceRequestBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public interface IHandleResponseObject {
8080
* Test switch to log all bytes that come across the wire.
8181
* Helpful when parsing fails before certain bytes hit the trace logs.
8282
*/
83-
private static boolean logAllWireBytes = false;
83+
private static volatile boolean logAllWireBytes = false;
8484

8585
/**
8686
* Callback delegate to handle response objects

0 commit comments

Comments
 (0)