You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2020/07/08 14:08:13 UTC

[ignite] branch master updated (c7aca28 -> 1d7ad0d)

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

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


    from c7aca28  IGNITE-13185 CLI and JMX APIs and new event for Cluster ID and Tag feature - Fixes #7964.
     new b7d637b  IGNITE-13185 Fix compilation after IGNITE-13123 merge.
     new 1d7ad0d  IGNITE-13146 Fix OpenCensus example maven build - Fixes #7999.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 examples/pom-standalone-lgpl.xml                       | 18 ++++++++++++++++++
 examples/pom-standalone.xml                            | 18 ++++++++++++++++++
 .../internal/commandline/ClusterChangeTagCommand.java  |  2 +-
 3 files changed, 37 insertions(+), 1 deletion(-)
 rename modules/{core => control-utility}/src/main/java/org/apache/ignite/internal/commandline/ClusterChangeTagCommand.java (99%)


[ignite] 02/02: IGNITE-13146 Fix OpenCensus example maven build - Fixes #7999.

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 1d7ad0db88704941eb8ade3ef1e5f61cc6baaa2c
Author: Aleksey Plekhanov <pl...@gmail.com>
AuthorDate: Wed Jul 8 16:36:49 2020 +0300

    IGNITE-13146 Fix OpenCensus example maven build - Fixes #7999.
    
    Signed-off-by: Ilya Kasnacheev <il...@gmail.com>
---
 examples/pom-standalone-lgpl.xml | 18 ++++++++++++++++++
 examples/pom-standalone.xml      | 18 ++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/examples/pom-standalone-lgpl.xml b/examples/pom-standalone-lgpl.xml
index a2f56d6..b7e9ad7 100644
--- a/examples/pom-standalone-lgpl.xml
+++ b/examples/pom-standalone-lgpl.xml
@@ -88,6 +88,24 @@
 
         <dependency>
             <groupId>org.apache.ignite</groupId>
+            <artifactId>ignite-opencensus</artifactId>
+            <version>to_be_replaced_by_ignite_version</version>
+        </dependency>
+
+        <dependency>
+            <groupId>io.opencensus</groupId>
+            <artifactId>opencensus-exporter-stats-prometheus</artifactId>
+            <version>0.22.0</version>
+        </dependency>
+
+        <dependency>
+            <groupId>io.prometheus</groupId>
+            <artifactId>simpleclient_httpserver</artifactId>
+            <version>0.3.0</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.ignite</groupId>
             <artifactId>ignite-ml</artifactId>
             <version>to_be_replaced_by_ignite_version</version>
         </dependency>
diff --git a/examples/pom-standalone.xml b/examples/pom-standalone.xml
index 5c1a08d..59730b9 100644
--- a/examples/pom-standalone.xml
+++ b/examples/pom-standalone.xml
@@ -88,6 +88,24 @@
 
         <dependency>
             <groupId>org.apache.ignite</groupId>
+            <artifactId>ignite-opencensus</artifactId>
+            <version>to_be_replaced_by_ignite_version</version>
+        </dependency>
+
+        <dependency>
+            <groupId>io.opencensus</groupId>
+            <artifactId>opencensus-exporter-stats-prometheus</artifactId>
+            <version>0.22.0</version>
+        </dependency>
+
+        <dependency>
+            <groupId>io.prometheus</groupId>
+            <artifactId>simpleclient_httpserver</artifactId>
+            <version>0.3.0</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.ignite</groupId>
             <artifactId>ignite-ml</artifactId>
             <version>to_be_replaced_by_ignite_version</version>
         </dependency>


[ignite] 01/02: IGNITE-13185 Fix compilation after IGNITE-13123 merge.

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b7d637b3aa816a30f2f5cec84dbbcbd7bd48ccb4
Author: Ilya Kasnacheev <il...@gmail.com>
AuthorDate: Wed Jul 8 16:49:05 2020 +0300

    IGNITE-13185 Fix compilation after IGNITE-13123 merge.
---
 .../org/apache/ignite/internal/commandline/ClusterChangeTagCommand.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/src/main/java/org/apache/ignite/internal/commandline/ClusterChangeTagCommand.java b/modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/ClusterChangeTagCommand.java
similarity index 99%
rename from modules/core/src/main/java/org/apache/ignite/internal/commandline/ClusterChangeTagCommand.java
rename to modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/ClusterChangeTagCommand.java
index 3f9e944..58e5f05 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/commandline/ClusterChangeTagCommand.java
+++ b/modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/ClusterChangeTagCommand.java
@@ -66,7 +66,7 @@ public class ClusterChangeTagCommand implements Command<String> {
             else
                 logger.warning("Error has occurred during tag update: " + res.errorMessage());
         }
-        catch (Throwable e) {
+       catch (Throwable e) {
             logger.severe("Failed to execute Cluster ID and tag command: ");
             logger.severe(CommandLogger.errorMessage(e));