Skip to content

Commit eefddfe

Browse files
authored
Merge pull request #2725 from jacomago/connection_validated_null_exception
Sets false as the default rather than null.
2 parents b223bf2 + f39cc0e commit eefddfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/pva/src/main/java/org/epics/pva/client/ClientTCPHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class ClientTCPHandler extends TCPHandler
9898
* Client must not send get/put/.. messages until
9999
* this flag is set.
100100
*/
101-
private final AtomicBoolean connection_validated = new AtomicBoolean();
101+
private final AtomicBoolean connection_validated = new AtomicBoolean(false);
102102

103103
public ClientTCPHandler(final PVAClient client, final InetSocketAddress address, final Guid guid) throws Exception
104104
{

0 commit comments

Comments
 (0)