You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ja...@apache.org on 2023/07/25 19:03:12 UTC

[pinot] branch master updated: deprecated(since) is not supported in jdk 8 (#11172)

This is an automated email from the ASF dual-hosted git repository.

jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new d5e6a56a6a deprecated(since) is not supported in jdk 8 (#11172)
d5e6a56a6a is described below

commit d5e6a56a6a48e58c99619ad367453ce6101022ee
Author: Prachi Khobragade <pk...@linkedin.com>
AuthorDate: Tue Jul 25 12:03:07 2023 -0700

    deprecated(since) is not supported in jdk 8 (#11172)
---
 .../main/java/org/apache/pinot/plugin/stream/pulsar/PulsarConfig.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pinot-plugins/pinot-stream-ingestion/pinot-pulsar/src/main/java/org/apache/pinot/plugin/stream/pulsar/PulsarConfig.java b/pinot-plugins/pinot-stream-ingestion/pinot-pulsar/src/main/java/org/apache/pinot/plugin/stream/pulsar/PulsarConfig.java
index 4094a93f06..8abd7ce0d3 100644
--- a/pinot-plugins/pinot-stream-ingestion/pinot-pulsar/src/main/java/org/apache/pinot/plugin/stream/pulsar/PulsarConfig.java
+++ b/pinot-plugins/pinot-stream-ingestion/pinot-pulsar/src/main/java/org/apache/pinot/plugin/stream/pulsar/PulsarConfig.java
@@ -52,7 +52,8 @@ public class PulsarConfig {
   private final SubscriptionInitialPosition _subscriptionInitialPosition;
   private final String _authenticationToken;
   private final String _tlsTrustCertsFilePath;
-  @Deprecated(since = "v0.13.* since pulsar supports record key extraction")
+  // Deprecated since pulsar supports record key extraction
+  @Deprecated
   private final boolean _enableKeyValueStitch;
   private final boolean _populateMetadata;
   private final Set<PulsarStreamMessageMetadata.PulsarMessageMetadataValue> _metadataFields;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org