Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IGNITE-18301 Removal of visor console #10411

Merged
merged 23 commits into from
Dec 2, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4d36706
IGNITE-18301 Removal of visor console
nizhikov Dec 1, 2022
5beac37
IGNITE-18301 Removal of visor console
nizhikov Dec 1, 2022
f46d557
IGNITE-18301 Removal of visor console
nizhikov Dec 1, 2022
f9c922d
IGNITE-18301 Removal of visor console
nizhikov Dec 1, 2022
a4d5358
IGNITE-18301 Removal of visor console
nizhikov Dec 1, 2022
8701a4b
IGNITE-18301 Removal of visor console
nizhikov Dec 1, 2022
f62f72c
IGNITE-18301 Removal of visor console
nizhikov Dec 1, 2022
bfa78a6
IGNITE-18301 Removal of visor console
nizhikov Dec 1, 2022
90cd834
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
3ee44ab
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
8d662d3
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
7b53a91
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
12148c4
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
d261b7a
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
6cbee40
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
72ecd07
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
a01e661
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
3b32fba
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
b7e3709
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
cda8a92
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
6fa3017
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
7af4a8b
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
5deb79c
IGNITE-18301 Removal of visor console
nizhikov Dec 2, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
IGNITE-18301 Removal of visor console
  • Loading branch information
nizhikov committed Dec 1, 2022
commit f62f72c415c791a9bf04aefe9019b818a5bf77d9
19 changes: 0 additions & 19 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,25 +211,6 @@
</properties>

<profiles>
<profile>
<id>scala</id>

<dependencies>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.11</artifactId>
<version>${scala.test.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</profile>

<profile>
<id>lgpl</id>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import org.apache.ignite.internal.client.GridClientFactory;
import org.apache.ignite.internal.client.GridClientProtocol;
import org.apache.ignite.internal.client.balancer.GridClientRoundRobinBalancer;
import org.apache.ignite.internal.visor.VisorTaskArgument;
import org.apache.ignite.internal.visor.systemview.VisorSystemViewTask;
import org.apache.ignite.internal.visor.systemview.VisorSystemViewTaskArg;
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
Expand Down Expand Up @@ -105,7 +106,7 @@ public void testThinClientConnected() throws Exception {

// Execute some task.
client.compute().execute(VisorSystemViewTask.class.getName(),
new VisorSystemViewTaskArg(CACHES_VIEW));
new VisorTaskArgument<>(nid, new VisorSystemViewTaskArg(CACHES_VIEW), false));

GridClientFactory.stop(client.id(), false);
}
Expand Down