TINKERPOP-1028 Removed previously deprecated ConnectionPoolSettings session settings
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/90c9a582 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/90c9a582 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/90c9a582 Branch: refs/heads/TINKERPOP-1603 Commit: 90c9a582faa1806399865a476e8202492cff2a23 Parents: cd1b457 Author: Stephen Mallette <[email protected]> Authored: Mon Jun 26 15:57:12 2017 -0400 Committer: Stephen Mallette <[email protected]> Committed: Thu Jun 29 14:51:11 2017 -0400 ---------------------------------------------------------------------- CHANGELOG.asciidoc | 1 + .../apache/tinkerpop/gremlin/driver/Settings.java | 16 ---------------- 2 files changed, 1 insertion(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/90c9a582/CHANGELOG.asciidoc ---------------------------------------------------------------------- diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 24160b0..4179f10 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -26,6 +26,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima TinkerPop 3.3.0 (Release Date: NOT OFFICIALLY RELEASED YET) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +* Removed previously deprecated `ConnectionPoolSettings.sessionId` and `ConnectionPoolSettings.optionalSessionId()`. * Removed previously deprecated `reconnectInitialDelay` setting from the Java driver. * Removed support for passing a byte array on the `sasl` parameter. * Graphite and Ganglia are no longer packaged with the Gremlin Server distribution. http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/90c9a582/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Settings.java ---------------------------------------------------------------------- diff --git a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Settings.java b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Settings.java index 3da08b8..03374cc 100644 --- a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Settings.java +++ b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Settings.java @@ -317,22 +317,6 @@ final class Settings { * {@link org.apache.tinkerpop.gremlin.driver.Channelizer.WebSocketChannelizer}. */ public String channelizer = Channelizer.WebSocketChannelizer.class.getName(); - - /** - * @deprecated as of 3.1.1-incubating, and not replaced as this property was never implemented internally - * as the way to establish sessions - */ - @Deprecated - public String sessionId = null; - - /** - * @deprecated as of 3.1.1-incubating, and not replaced as this property was never implemented internally - * as the way to establish sessions - */ - @Deprecated - public Optional<String> optionalSessionId() { - return Optional.ofNullable(sessionId); - } } public static class SerializerSettings {
