Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
* Deprecated and removed functionality of the `connectOnStartup` option in `gremlin-javascript` to resolve potential `unhandledRejection` and race conditions.
* Fixed potential `NullPointerException` in `gremlin-driver` where initialization of a `ConnectionPool` would fail but not throw an exception due to centralized error check being satisfied by a different process.
* Fixed a bug where the JavaScript client would hang indefinitely on traversals if the connection to the server was terminated.
* Fixed Traversal.graph is empty in StepStrategy.apply() with `count().is(0)`.

[[release-3-5-3]]
=== TinkerPop 3.5.3 (Release Date: April 4, 2022)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ public void apply(final Traversal.Admin<?, ?> traversal) {
} else {
inner = __.identity().asAdmin();
}
traversal.getGraph().ifPresent(graph -> inner.setGraph(graph));
if (prev != null)
TraversalHelper.replaceStep(prev, new NotStep<>(traversal, inner), traversal);
else
Expand Down