summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2021-01-27 08:53:21 +0100
committerGitHub <noreply@github.com>2021-01-27 08:53:21 +0100
commitd7359f7c72ff06889af594431baf4075e2b4da78 (patch)
treee915ef0fab20774984afbf355158016bcdcb3004 /vespaclient-container-plugin
parentfb99ec84858f2c68fcc0d22bc182c0aad3c0cb83 (diff)
Revert "Jonmv/document protocol super config"
Diffstat (limited to 'vespaclient-container-plugin')
-rw-r--r--vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/FeedErrorMessage.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/FeedErrorMessage.java b/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/FeedErrorMessage.java
new file mode 100644
index 00000000000..1d7e8535909
--- /dev/null
+++ b/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/FeedErrorMessage.java
@@ -0,0 +1,43 @@
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.vespa.http.server;
+
+import com.yahoo.document.DocumentId;
+import com.yahoo.messagebus.Message;
+import com.yahoo.text.Utf8String;
+
+import java.util.Arrays;
+
+public class FeedErrorMessage extends Message {
+
+ private long sequenceId;
+
+ public FeedErrorMessage(String operationId) {
+ try {
+ DocumentId id = new DocumentId(operationId);
+ sequenceId = Arrays.hashCode(id.getGlobalId());
+ } catch (Exception e) {
+ sequenceId = 0;
+ }
+ }
+
+ @Override
+ public Utf8String getProtocol() {
+ return new Utf8String("vespa-feed-handler-internal-bogus-protocol");
+ }
+
+ @Override
+ public int getType() {
+ return 1234;
+ }
+
+ @Override
+ public boolean hasSequenceId() {
+ return true;
+ }
+
+ @Override
+ public long getSequenceId() {
+ return sequenceId;
+ }
+
+}