[ https://issues.apache.org/jira/browse/TINKERPOP-1458?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15553648#comment-15553648 ]
ASF GitHub Bot commented on TINKERPOP-1458: ------------------------------------------- Github user davebshow commented on a diff in the pull request: https://github.com/apache/tinkerpop/pull/451#discussion_r82311244 --- Diff: gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/remote/DriverRemoteTraversalSideEffects.java --- @@ -39,12 +40,14 @@ public class DriverRemoteTraversalSideEffects extends AbstractRemoteTraversalSideEffects { private final Client client; - private Set<String> keys = null; + private Set<String> keys = Collections.emptySet(); private final UUID serverSideEffect; private final Host host; private final Map<String, Object> sideEffects = new HashMap<>(); + private boolean closed = false; --- End diff -- How would you remedy this? Is it worth using `AtomicBoolean`? > Gremlin Server doesn't return confirmation upon Traversal OpProcessor "close" > op > -------------------------------------------------------------------------------- > > Key: TINKERPOP-1458 > URL: https://issues.apache.org/jira/browse/TINKERPOP-1458 > Project: TinkerPop > Issue Type: Bug > Components: server > Affects Versions: 3.2.2 > Reporter: David M. Brown > Assignee: David M. Brown > Fix For: 3.2.3 > > > Gremlin Server should return some sort of success message to driver upon > invalidating the side effect cache for a traversal. -- This message was sent by Atlassian JIRA (v6.3.4#6332)