[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2019-02-12 Thread Oleg Ignatenko (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Oleg Ignatenko updated IGNITE-8558:
---
Labels: MakeTeamcityGreenAgain  (was: )

> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Affects Versions: 2.6
>Reporter: Maxim Muzafarov
>Assignee: Rodion
>Priority: Minor
>  Labels: MakeTeamcityGreenAgain
> Fix For: 2.8
>
>
> The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
> instances by default after execution of tests. Ignite instances are stopped 
> by calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You 
> can refer to these lines of code for the details of how the node stopped:
> {code:java|title=GridAbstractTest.java:1789}
>  if (isSafeTopology()) {
>  stopAllGrids(false);
>  if (stopGridErr) {
>  err = new RuntimeException("Not all Ignite instances has been 
> stopped. " +
>  "Please, see log for details.", err);
>  }
>  }
> {code}
> As part of IGNITE-8266 a lot of boilerplate code have been successfully 
> removed. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> super.afterTestsStopped();
> stopAllGrids();
> }
> {code}
> We need to,
>  * Provide the ability to override the behaviour of gracefully instance 
> shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a 
> new method would be introduced like {{GridAbstractTest#isSafeTopology}}, so 
> the behaviour can be overridden in subclasses.
>  * Remove the other boilerplate parts of the code. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> stopAllGrids(true);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-11-22 Thread Maxim Muzafarov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Muzafarov updated IGNITE-8558:

Description: 
The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
instances by default after execution of tests. Ignite instances are stopped by 
calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You can 
refer to these lines of code for the details of how the node stopped:
{code:java|title=GridAbstractTest.java:1789}
 if (isSafeTopology()) {
 stopAllGrids(false);

 if (stopGridErr) {
 err = new RuntimeException("Not all Ignite instances has been stopped. 
" +
 "Please, see log for details.", err);
 }
 }
{code}
As part of -IGNITE-6842- a lot of boilerplate code have been successfully 
removed. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
super.afterTestsStopped();

stopAllGrids();
}
{code}
We need to,
 * Provide the ability to override the behaviour of gracefully instance 
shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a new 
method would be introduced like {{GridAbstractTest#isSafeTopology}}, so the 
behaviour can be overridden in subclasses.
 * Remove the other boilerplate parts of the code. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
stopAllGrids(true);
}
{code}

  was:
The -IGNITE-6842- issue provides an ability to guarantee us stopping all Ignite 
instances after test completion by default and stopping it without cancelling 
tasks.

User should have ability to override this behavior and use stopAllGirds(true) 
after all tests execution.


> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Assignee: Rodion
>Priority: Minor
>  Labels: newbie
>
> The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
> instances by default after execution of tests. Ignite instances are stopped 
> by calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You 
> can refer to these lines of code for the details of how the node stopped:
> {code:java|title=GridAbstractTest.java:1789}
>  if (isSafeTopology()) {
>  stopAllGrids(false);
>  if (stopGridErr) {
>  err = new RuntimeException("Not all Ignite instances has been 
> stopped. " +
>  "Please, see log for details.", err);
>  }
>  }
> {code}
> As part of -IGNITE-6842- a lot of boilerplate code have been successfully 
> removed. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> super.afterTestsStopped();
> stopAllGrids();
> }
> {code}
> We need to,
>  * Provide the ability to override the behaviour of gracefully instance 
> shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a 
> new method would be introduced like {{GridAbstractTest#isSafeTopology}}, so 
> the behaviour can be overridden in subclasses.
>  * Remove the other boilerplate parts of the code. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> stopAllGrids(true);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-11-22 Thread Maxim Muzafarov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Muzafarov updated IGNITE-8558:

Affects Version/s: 2.6

> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Affects Versions: 2.6
>Reporter: Maxim Muzafarov
>Assignee: Rodion
>Priority: Minor
> Fix For: 2.8
>
>
> The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
> instances by default after execution of tests. Ignite instances are stopped 
> by calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You 
> can refer to these lines of code for the details of how the node stopped:
> {code:java|title=GridAbstractTest.java:1789}
>  if (isSafeTopology()) {
>  stopAllGrids(false);
>  if (stopGridErr) {
>  err = new RuntimeException("Not all Ignite instances has been 
> stopped. " +
>  "Please, see log for details.", err);
>  }
>  }
> {code}
> As part of IGNITE-8266 a lot of boilerplate code have been successfully 
> removed. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> super.afterTestsStopped();
> stopAllGrids();
> }
> {code}
> We need to,
>  * Provide the ability to override the behaviour of gracefully instance 
> shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a 
> new method would be introduced like {{GridAbstractTest#isSafeTopology}}, so 
> the behaviour can be overridden in subclasses.
>  * Remove the other boilerplate parts of the code. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> stopAllGrids(true);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-11-22 Thread Maxim Muzafarov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Muzafarov updated IGNITE-8558:

Description: 
The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
instances by default after execution of tests. Ignite instances are stopped by 
calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You can 
refer to these lines of code for the details of how the node stopped:
{code:java|title=GridAbstractTest.java:1789}
 if (isSafeTopology()) {
 stopAllGrids(false);

 if (stopGridErr) {
 err = new RuntimeException("Not all Ignite instances has been stopped. 
" +
 "Please, see log for details.", err);
 }
 }
{code}
As part of IGNITE-8266 a lot of boilerplate code have been successfully 
removed. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
super.afterTestsStopped();

stopAllGrids();
}
{code}
We need to,
 * Provide the ability to override the behaviour of gracefully instance 
shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a new 
method would be introduced like {{GridAbstractTest#isSafeTopology}}, so the 
behaviour can be overridden in subclasses.
 * Remove the other boilerplate parts of the code. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
stopAllGrids(true);
}
{code}

  was:
The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
instances by default after execution of tests. Ignite instances are stopped by 
calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You can 
refer to these lines of code for the details of how the node stopped:
{code:java|title=GridAbstractTest.java:1789}
 if (isSafeTopology()) {
 stopAllGrids(false);

 if (stopGridErr) {
 err = new RuntimeException("Not all Ignite instances has been stopped. 
" +
 "Please, see log for details.", err);
 }
 }
{code}
As part of IGNITE-8157 a lot of boilerplate code have been successfully 
removed. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
super.afterTestsStopped();

stopAllGrids();
}
{code}
We need to,
 * Provide the ability to override the behaviour of gracefully instance 
shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a new 
method would be introduced like {{GridAbstractTest#isSafeTopology}}, so the 
behaviour can be overridden in subclasses.
 * Remove the other boilerplate parts of the code. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
stopAllGrids(true);
}
{code}


> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Assignee: Rodion
>Priority: Minor
>  Labels: newbie
>
> The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
> instances by default after execution of tests. Ignite instances are stopped 
> by calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You 
> can refer to these lines of code for the details of how the node stopped:
> {code:java|title=GridAbstractTest.java:1789}
>  if (isSafeTopology()) {
>  stopAllGrids(false);
>  if (stopGridErr) {
>  err = new RuntimeException("Not all Ignite instances has been 
> stopped. " +
>  "Please, see log for details.", err);
>  }
>  }
> {code}
> As part of IGNITE-8266 a lot of boilerplate code have been successfully 
> removed. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> super.afterTestsStopped();
> stopAllGrids();
> }
> {code}
> We need to,
>  * Provide the ability to override the behaviour of gracefully instance 
> shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a 
> new method would be introduced like {{GridAbstractTest#isSafeTopology}}, so 
> the behaviour can be overridden in subclasses.
>  * Remove the other boilerplate parts of the code. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> stopAllGrids(true);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-11-22 Thread Maxim Muzafarov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Muzafarov updated IGNITE-8558:

Fix Version/s: 2.8

> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Assignee: Rodion
>Priority: Minor
> Fix For: 2.8
>
>
> The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
> instances by default after execution of tests. Ignite instances are stopped 
> by calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You 
> can refer to these lines of code for the details of how the node stopped:
> {code:java|title=GridAbstractTest.java:1789}
>  if (isSafeTopology()) {
>  stopAllGrids(false);
>  if (stopGridErr) {
>  err = new RuntimeException("Not all Ignite instances has been 
> stopped. " +
>  "Please, see log for details.", err);
>  }
>  }
> {code}
> As part of IGNITE-8266 a lot of boilerplate code have been successfully 
> removed. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> super.afterTestsStopped();
> stopAllGrids();
> }
> {code}
> We need to,
>  * Provide the ability to override the behaviour of gracefully instance 
> shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a 
> new method would be introduced like {{GridAbstractTest#isSafeTopology}}, so 
> the behaviour can be overridden in subclasses.
>  * Remove the other boilerplate parts of the code. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> stopAllGrids(true);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-11-22 Thread Maxim Muzafarov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Muzafarov updated IGNITE-8558:

Labels:   (was: newbie)

> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Assignee: Rodion
>Priority: Minor
>
> The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
> instances by default after execution of tests. Ignite instances are stopped 
> by calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You 
> can refer to these lines of code for the details of how the node stopped:
> {code:java|title=GridAbstractTest.java:1789}
>  if (isSafeTopology()) {
>  stopAllGrids(false);
>  if (stopGridErr) {
>  err = new RuntimeException("Not all Ignite instances has been 
> stopped. " +
>  "Please, see log for details.", err);
>  }
>  }
> {code}
> As part of IGNITE-8266 a lot of boilerplate code have been successfully 
> removed. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> super.afterTestsStopped();
> stopAllGrids();
> }
> {code}
> We need to,
>  * Provide the ability to override the behaviour of gracefully instance 
> shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a 
> new method would be introduced like {{GridAbstractTest#isSafeTopology}}, so 
> the behaviour can be overridden in subclasses.
>  * Remove the other boilerplate parts of the code. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> stopAllGrids(true);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-11-22 Thread Maxim Muzafarov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Muzafarov updated IGNITE-8558:

Description: 
The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
instances by default after execution of tests. Ignite instances are stopped by 
calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You can 
refer to these lines of code for the details of how the node stopped:
{code:java|title=GridAbstractTest.java:1789}
 if (isSafeTopology()) {
 stopAllGrids(false);

 if (stopGridErr) {
 err = new RuntimeException("Not all Ignite instances has been stopped. 
" +
 "Please, see log for details.", err);
 }
 }
{code}
As part of IGNITE-8157 a lot of boilerplate code have been successfully 
removed. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
super.afterTestsStopped();

stopAllGrids();
}
{code}
We need to,
 * Provide the ability to override the behaviour of gracefully instance 
shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a new 
method would be introduced like {{GridAbstractTest#isSafeTopology}}, so the 
behaviour can be overridden in subclasses.
 * Remove the other boilerplate parts of the code. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
stopAllGrids(true);
}
{code}

  was:
The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
instances by default after execution of tests. Ignite instances are stopped by 
calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You can 
refer to these lines of code for the details of how the node stopped:
{code:java|title=GridAbstractTest.java:1789}
 if (isSafeTopology()) {
 stopAllGrids(false);

 if (stopGridErr) {
 err = new RuntimeException("Not all Ignite instances has been stopped. 
" +
 "Please, see log for details.", err);
 }
 }
{code}
As part of -IGNITE-6842- a lot of boilerplate code have been successfully 
removed. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
super.afterTestsStopped();

stopAllGrids();
}
{code}
We need to,
 * Provide the ability to override the behaviour of gracefully instance 
shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a new 
method would be introduced like {{GridAbstractTest#isSafeTopology}}, so the 
behaviour can be overridden in subclasses.
 * Remove the other boilerplate parts of the code. For instance,
{code:java}
/** {@inheritDoc} */
@Override protected void afterTestsStopped() throws Exception {
stopAllGrids(true);
}
{code}


> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Assignee: Rodion
>Priority: Minor
>  Labels: newbie
>
> The -IGNITE-6842- issue provides an ability gracefully shutdown all ignite 
> instances by default after execution of tests. Ignite instances are stopped 
> by calling the method - {{stopAllGrids}} ({{cancel = false}} is used). You 
> can refer to these lines of code for the details of how the node stopped:
> {code:java|title=GridAbstractTest.java:1789}
>  if (isSafeTopology()) {
>  stopAllGrids(false);
>  if (stopGridErr) {
>  err = new RuntimeException("Not all Ignite instances has been 
> stopped. " +
>  "Please, see log for details.", err);
>  }
>  }
> {code}
> As part of IGNITE-8157 a lot of boilerplate code have been successfully 
> removed. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> super.afterTestsStopped();
> stopAllGrids();
> }
> {code}
> We need to,
>  * Provide the ability to override the behaviour of gracefully instance 
> shutdown and use {{stopAllGirds(true)}} after all tests execution. Assume a 
> new method would be introduced like {{GridAbstractTest#isSafeTopology}}, so 
> the behaviour can be overridden in subclasses.
>  * Remove the other boilerplate parts of the code. For instance,
> {code:java}
> /** {@inheritDoc} */
> @Override protected void afterTestsStopped() throws Exception {
> stopAllGrids(true);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-11-22 Thread Maxim Muzafarov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Muzafarov updated IGNITE-8558:

Description: 
The -IGNITE-6842- issue provides an ability to guarantee us stopping all Ignite 
instances after test completion by default and stopping it without cancelling 
tasks.

User should have ability to override this behavior and use stopAllGirds(true) 
after all tests execution.

  was:
The -IGNITE-6842- issue provide an ability to guarantee us stopping all Ignite 
instances after test completion by default and stopping it without cancelling 
tasks.

User should have ability to override this behavior and use stopAllGirds(true) 
after all tests execution.


> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Assignee: Rodion
>Priority: Minor
>  Labels: newbie
>
> The -IGNITE-6842- issue provides an ability to guarantee us stopping all 
> Ignite instances after test completion by default and stopping it without 
> cancelling tasks.
> User should have ability to override this behavior and use stopAllGirds(true) 
> after all tests execution.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-11-22 Thread Maxim Muzafarov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Muzafarov updated IGNITE-8558:

Description: 
The -IGNITE-6842- issue provide an ability to guarantee us stopping all Ignite 
instances after test completion by default and stopping it without cancelling 
tasks.

User should have ability to override this behavior and use stopAllGirds(true) 
after all tests execution.

  was:
IGNITE-6842 guarantee us stopping all Ignite instances after test completion by 
default and stopping it without cancelling tasks.

User should have ability to override this behavior and use stopAllGirds(true) 
after all tests execution.


> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Assignee: Rodion
>Priority: Minor
>  Labels: newbie
>
> The -IGNITE-6842- issue provide an ability to guarantee us stopping all 
> Ignite instances after test completion by default and stopping it without 
> cancelling tasks.
> User should have ability to override this behavior and use stopAllGirds(true) 
> after all tests execution.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-09-25 Thread Nikolay Izhikov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nikolay Izhikov updated IGNITE-8558:

Fix Version/s: (was: 2.8)

> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Priority: Minor
>  Labels: newbie
>
> IGNITE-6842 guarantee us stopping all Ignite instances after test completion 
> by default and stopping it without cancelling tasks.
> User should have ability to override this behavior and use stopAllGirds(true) 
> after all tests execution.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-09-24 Thread Nikolay Izhikov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nikolay Izhikov updated IGNITE-8558:

Fix Version/s: (was: 2.7)
   2.8

> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Priority: Minor
>  Labels: newbie
> Fix For: 2.8
>
>
> IGNITE-6842 guarantee us stopping all Ignite instances after test completion 
> by default and stopping it without cancelling tasks.
> User should have ability to override this behavior and use stopAllGirds(true) 
> after all tests execution.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-06-26 Thread Dmitriy Pavlov (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitriy Pavlov updated IGNITE-8558:
---
Fix Version/s: (was: 2.6)
   2.7

> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Priority: Minor
>  Labels: newbie
> Fix For: 2.7
>
>
> IGNITE-6842 guarantee us stopping all Ignite instances after test completion 
> by default and stopping it without cancelling tasks.
> User should have ability to override this behavior and use stopAllGirds(true) 
> after all tests execution.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-05-25 Thread Nikolay Izhikov (JIRA)

 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nikolay Izhikov updated IGNITE-8558:

Labels: newbie  (was: )

> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Assignee: Maxim Muzafarov
>Priority: Minor
>  Labels: newbie
> Fix For: 2.6
>
>
> IGNITE-6842 guarantee us stopping all Ignite instances after test completion 
> by default and stopping it without cancelling tasks.
> User should have ability to override this behavior and use stopAllGirds(true) 
> after all tests execution.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (IGNITE-8558) Provide an opportunity to stop grids and cancel tasks after execution all tests

2018-05-22 Thread Maxim Muzafarov (JIRA)

 [ 
https://issues.apache.org/jira/browse/IGNITE-8558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Maxim Muzafarov updated IGNITE-8558:

Description: 
IGNITE-6842 guarantee us stopping all Ignite instances after test completion by 
default and stopping it without cancelling tasks.

User should have ability to override this behavior and use stopAllGirds(true) 
after all tests execution.

  was:
IGNITE-6842 guarantee us stopping all Ignite instances after test completion by 
default and stopping it without cancelling tasks.

User should have abiliti to override this behavior and use stopAllGirds(true) 
after all tests execution.


> Provide an opportunity to stop grids and cancel tasks after execution all 
> tests
> ---
>
> Key: IGNITE-8558
> URL: https://issues.apache.org/jira/browse/IGNITE-8558
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Maxim Muzafarov
>Assignee: Maxim Muzafarov
>Priority: Minor
> Fix For: 2.6
>
>
> IGNITE-6842 guarantee us stopping all Ignite instances after test completion 
> by default and stopping it without cancelling tasks.
> User should have ability to override this behavior and use stopAllGirds(true) 
> after all tests execution.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)