You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dp...@apache.org on 2022/01/24 12:39:31 UTC

[ignite] branch master updated: IGNITE-16352 Update Ignite dependency Mesos (#9756)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 84f3ed0  IGNITE-16352 Update Ignite dependency Mesos (#9756)
84f3ed0 is described below

commit 84f3ed079b48609fe79ce0cbad84d5e9deae6fe0
Author: nao <56...@users.noreply.github.com>
AuthorDate: Mon Jan 24 15:39:07 2022 +0300

    IGNITE-16352 Update Ignite dependency Mesos (#9756)
---
 modules/mesos/pom.xml                                    |  2 +-
 .../org/apache/ignite/mesos/IgniteSchedulerSelfTest.java | 16 ++++++++++++++++
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/modules/mesos/pom.xml b/modules/mesos/pom.xml
index 2bdd0d5..ae11ef3 100644
--- a/modules/mesos/pom.xml
+++ b/modules/mesos/pom.xml
@@ -35,7 +35,7 @@
     <url>http://ignite.apache.org</url>
 
     <properties>
-        <mesos.version>1.5.0</mesos.version>
+        <mesos.version>1.11.0</mesos.version>
     </properties>
 
     <dependencies>
diff --git a/modules/mesos/src/test/java/org/apache/ignite/mesos/IgniteSchedulerSelfTest.java b/modules/mesos/src/test/java/org/apache/ignite/mesos/IgniteSchedulerSelfTest.java
index 8fc4da2..652c267 100644
--- a/modules/mesos/src/test/java/org/apache/ignite/mesos/IgniteSchedulerSelfTest.java
+++ b/modules/mesos/src/test/java/org/apache/ignite/mesos/IgniteSchedulerSelfTest.java
@@ -25,6 +25,7 @@ import java.util.regex.Pattern;
 import org.apache.ignite.mesos.resource.ResourceProvider;
 import org.apache.mesos.Protos;
 import org.apache.mesos.SchedulerDriver;
+import org.apache.mesos.scheduler.Protos.OfferConstraints;
 import org.junit.Before;
 import org.junit.Test;
 
@@ -506,11 +507,17 @@ public class IgniteSchedulerSelfTest {
         }
 
         /** {@inheritDoc} */
+        @Override public Protos.Status reviveOffers(Collection<String> collection) { return null; }
+
+        /** {@inheritDoc} */
         @Override public Protos.Status suppressOffers() {
             return null;
         }
 
         /** {@inheritDoc} */
+        @Override public Protos.Status suppressOffers(Collection<String> collection) { return null; }
+
+        /** {@inheritDoc} */
         @Override public Protos.Status acknowledgeStatusUpdate(Protos.TaskStatus status) {
             return null;
         }
@@ -525,5 +532,14 @@ public class IgniteSchedulerSelfTest {
         @Override public Protos.Status reconcileTasks(Collection<Protos.TaskStatus> statuses) {
             return null;
         }
+
+        /** {@inheritDoc} */
+        @Override public Protos.Status updateFramework(Protos.FrameworkInfo frameworkInfo, Collection<String> collection,
+                                                       OfferConstraints offerConstraints) {
+            return null;
+        }
+
+        /** {@inheritDoc} */
+        @Override public Protos.Status updateFramework(Protos.FrameworkInfo frameworkInfo, Collection<String> collection) { return null; }
     }
 }