[GitHub] ignite pull request #4720: IGNITE-9532 Binary mode for Ignite Queue
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/4720 ---
[GitHub] ignite pull request #5665: IGNITE-10671 Introduced state machine to handle l...
GitHub user voropava opened a pull request: https://github.com/apache/ignite/pull/5665 IGNITE-10671 Introduced state machine to handle lifecycle of start/ac⦠â¦tivate/stop. You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-10671 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/ignite/pull/5665.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5665 commit 467a0916286482ffa41362e5f88307695912048c Author: Pavel Voronkin Date: 2018-12-13T16:10:01Z IGNITE-10671 Introduced state machine to handle lifecycle of start/activate/stop. ---
[GitHub] asfgit closed pull request #101: IGNITE-10454 add ticket status to mutes
asfgit closed pull request #101: IGNITE-10454 add ticket status to mutes URL: https://github.com/apache/ignite-teamcity-bot/pull/101 This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/ITcHelper.java b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/ITcHelper.java index ba70533e..1c084c1d 100644 --- a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/ITcHelper.java +++ b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/ITcHelper.java @@ -17,8 +17,7 @@ package org.apache.ignite.ci; -import java.util.Collection; -import java.util.List; +import org.apache.ignite.ci.jira.Tickets; import org.apache.ignite.ci.tcbot.issue.IssueDetector; import org.apache.ignite.ci.issue.IssuesStorage; import org.apache.ignite.ci.teamcity.restcached.ITcServerProvider; @@ -65,4 +64,12 @@ * @return {@code Visa} which contains info about JIRA notification. */ Visa notifyJira(String srvId, ICredentialsProv prov, String buildTypeId, String branchForTc, String ticket); + +/** + * @param srvId Server id. + * @param prov Credentials. + * @param ticketId Ticket. + * @return Jira tickets. + */ +Tickets getJiraTickets(String srvId, ICredentialsProv prov, String ticketId); } diff --git a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/ITeamcity.java b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/ITeamcity.java index 29f06807..4a62cb7b 100644 --- a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/ITeamcity.java +++ b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/ITeamcity.java @@ -123,6 +123,12 @@ */ public String sendJiraComment(String ticket, String comment) throws IOException; +/** + * @param url Url. + * @return Response as gson string. + */ +String sendGetToJira(String url) throws IOException; + /** * @param url URL for JIRA integration. */ diff --git a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/IgnitePersistentTeamcity.java b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/IgnitePersistentTeamcity.java index 08f7a428..23849a29 100644 --- a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/IgnitePersistentTeamcity.java +++ b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/IgnitePersistentTeamcity.java @@ -595,6 +595,11 @@ public Executor getExecutor() { return teamcity.sendJiraComment(ticket, comment); } +/** {@inheritDoc} */ +@Override public String sendGetToJira(String url) throws IOException { +return teamcity.sendGetToJira(url); +} + /** {@inheritDoc} */ @Override public void setJiraApiUrl(String url) { teamcity.setJiraApiUrl(url); diff --git a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/IgniteTeamcityConnection.java b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/IgniteTeamcityConnection.java index af287190..cd88aea3 100644 --- a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/IgniteTeamcityConnection.java +++ b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/IgniteTeamcityConnection.java @@ -180,6 +180,14 @@ public void init(@Nullable String tcName) { return HttpUtil.sendPostAsStringToJira(jiraBasicAuthTok, url, "{\"body\": \"" + comment + "\"}"); } +/** {@inheritDoc} */ +@Override public String sendGetToJira(String url) throws IOException { +if (isNullOrEmpty(jiraApiUrl)) +throw new IllegalStateException("JIRA API URL is not configured for this server."); + +return HttpUtil.sendGetToJira(jiraBasicAuthTok, jiraApiUrl + url); +} + /** {@inheritDoc} */ @Override public void setJiraApiUrl(String url) { jiraApiUrl = url; diff --git a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/TcHelper.java b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/TcHelper.java index c293e91b..f4e8c093 100644 --- a/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/TcHelper.java +++ b/ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/TcHelper.java @@ -18,12 +18,12 @@ package org.apache.ignite.ci; import com.fasterxml.jackson.databind.ObjectMapper; -import java.util.Collection; +import com.google.gson.Gson; import java.util.List; import java.util.Objects; import java.util.concurrent.atomic.AtomicBoolean; import javax.inject.Inject; -import org.apache.ignite.ci.conf.BranchesTracked; +import org.apache.ignite.ci.jira.Tickets; import org.apache.ignite.ci.tcbot.issue.IssueDetector; import org.apache.ignite.ci.issue.IssuesStorage; import org.apache.ignite.ci.jira.IJiraIntegration; @@ -184,6 +184,22 @@ public TcHelper() { return new Visa(IJiraIntegrati
[GitHub] ignite pull request #5618: IGNITE-10615 Ignite Compatibility: fix arguments'...
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/5618 ---
[GitHub] ignite pull request #5664: IGNITE-5003: Hanging of parallel write&evict for ...
GitHub user aealeksandrov opened a pull request: https://github.com/apache/ignite/pull/5664 IGNITE-5003: Hanging of parallel write&evict for the same key in Cach⦠â¦eWriteBehindStore fixed. Now GridCacheWriteBehindStore.updateCache wait for writeLock in StatefulValue and, moreover, waitForFlush() if value is in pending (flushing) state. We need to remove waiting. You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-5003 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/ignite/pull/5664.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5664 commit 759fbb5e271d86583087b897e3659d86bd41a125 Author: Andrei Aleksandrov Date: 2018-12-13T15:16:17Z IGNITE-5003: Hanging of parallel write&evict for the same key in CacheWriteBehindStore fixed. ---
[GitHub] ignite pull request #2211: IGNITE-5604 Activate fails node was stopped with ...
Github user tledkov-gridgain closed the pull request at: https://github.com/apache/ignite/pull/2211 ---
[GitHub] ignite pull request #5205: IGNITE-10053
Github user pavel-kuznetsov closed the pull request at: https://github.com/apache/ignite/pull/5205 ---
[GitHub] ignite pull request #5558: IGNITE-10514: Cache validation on the primary nod...
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/5558 ---
[GitHub] ignite pull request #5663: IGNITE-10621
GitHub user ygerzhedovich opened a pull request: https://github.com/apache/ignite/pull/5663 IGNITE-10621 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-10621-1 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/ignite/pull/5663.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5663 commit 86c6c4845854ec67e348ed1334cd0140a7629ff4 Author: Yury Gerzhedovich Date: 2018-12-13T14:29:49Z IGNITE-10621: Track all running queries on initial query node commit 5e35144e6f6bad326709767d9e8fc519a73ec75d Author: Yury Gerzhedovich Date: 2018-12-13T14:30:34Z Merge branch 'master' into ignite-10621-1 ---
[GitHub] ignite pull request #5662: IGNITE-8227 Research possibility and implement JU...
GitHub user SomeFire opened a pull request: https://github.com/apache/ignite/pull/5662 IGNITE-8227 Research possibility and implement JUnit test failure handler for TeamCity You can merge this pull request into a Git repository by running: $ git pull https://github.com/SomeFire/ignite IGNITE-8227 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/ignite/pull/5662.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5662 commit 94e51509128141c899b995f3b72a0cd9933c7872 Author: Dmitrii Ryabov Date: 2018-12-13T14:02:21Z test ---
[GitHub] ignite pull request #5655: IGNITE-10528: Fix incorrect comparing of double v...
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/5655 ---
[GitHub] ignite pull request #5603: IGNITE-9211 Remove Java 8 examples suite since we...
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/5603 ---
[GitHub] ignite pull request #5661: Ignite gg 14551
GitHub user antonovsergey93 opened a pull request: https://github.com/apache/ignite/pull/5661 Ignite gg 14551 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-gg-14551 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/ignite/pull/5661.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5661 commit bc1a1c685ec66be5f6360a36f7f842e79b040412 Author: Evgenii Zhuravlev Date: 2018-08-10T11:23:37Z IGNITE-5103 Fixed TcpDiscoverySpi not to ignore maxMissedHeartbeats property. Fixes #4446. (cherry picked from commit 1c840f59016273e0e99c95345c3afde639ef9689) commit d8af4076b65302ea31af461cda3fe747aea7c583 Author: Evgeny Stanilovskiy Date: 2018-08-15T17:28:48Z IGNITE-8493 GridToStringBuilder arrayToString refactoring. - Fixes #4501. Signed-off-by: Dmitriy Pavlov commit cf81547e7fe640eb8b0a72cdb1c32e6c6bfe16d3 Author: Anton Kalashnikov Date: 2018-08-17T12:20:23Z IGNITE-9307 Added completing eviction future if node was stopped - Fixes #4564. Signed-off-by: Alexey Goncharuk (cherry picked from commit 654ccf0) commit 618395a35f4cc0406b2f7a73214f1c323d407b6a Author: Alexey Stelmak Date: 2018-08-09T13:37:04Z IGNITE-8219 Call failure handler when an infinite loop is detected in B+ tree. Fixes #3849. commit 4d286331cd4b749076ef9b915b749c4be187f299 Author: Anton Kalashnikov Date: 2018-08-17T12:45:43Z IGNITE-9268 Fixed unreleased page lock when exception is thrown from BPlusTree - Fixes #4543. Signed-off-by: Alexey Goncharuk (cherry picked from commit e827b60) commit 0c3c34cdda1d9e3044b85fa63403e46b5256366b Author: Andrey Novikov Date: 2018-06-22T09:58:44Z GG-14087 Backport IGNITE-8428 Web Console: Implemented connection to secured cluster. (cherry picked from commit 523a871bfa0c946f6b55755763ca382621f236d3) commit 13c36fef466f76393c6e6307638ed4a2ff4fd081 Author: Alexey Kuznetsov Date: 2018-06-22T10:00:11Z GG-14087 Backport IGNITE-8428 Web Console: Implemented connection to secured cluster. (cherry picked from commit c8be8c2b8e8a474a90735d6e9eaebc67c1c8e3de) commit 0d88f7852a2ef725ea6bab13464b24dd78172d38 Author: Alexey Kuznetsov Date: 2018-07-11T13:25:52Z GG-14087 Backport IGNITE-8428 Web Console: Added support for task arguments with private constructors. (cherry picked from commit d7723dcc4efd668efc47ecbcd50661b096e3501a) commit 0b4ee13eb69c35ca7829849d6506eadd9c359a37 Author: Vasiliy Sisko Date: 2018-05-30T09:55:46Z GG-14116 Backport IGNITE-8568 Added support for "Collocated" query mode. (cherry picked from commit da907693316674d22ab5a44162531f48f111f980) commit 72aa4cbab4484104617e422825895ef533b5f766 Author: Alexey Kuznetsov Date: 2018-08-03T09:31:41Z GG-14117 Backport IGNITE-9179 Baseline: Added separate task for collecting info about baseline. (cherry picked from commit ff7372b7128df3b57ee02b735cc3010645697b7a) commit ff57a8673ffe7cb88542539b82053e5c7f0ec2bf Author: Alexey Kuznetsov Date: 2018-08-21T07:58:58Z GG-13195 IGNITE-9337 Added optional group name to VisorNodeDataCollectorTask. Implemented VisorCacheNamesCollectorTask to collect all cache names and deployment IDs. Minor code cleanup. (cherry picked from commit 1ad03f070b14f6f0c24ff0fde25b6c0cb8e5bcca) commit 59eae045eb92ee56ede34a37c7017fe623f04c7d Author: Alexey Kuznetsov Date: 2018-08-22T04:19:59Z GG-14081 Squashed commit with latest Web Console. commit 8799faa32eb0fc5bb67e5bfe1e7e72b7baab7d97 Author: Alexey Kuznetsov Date: 2018-08-22T04:51:58Z GG-13195 Updated classnames.properties. commit 60fdc4fbd30eeb5cbc8ce4ffb0e4c8700712395a Author: Alexey Kuznetsov Date: 2018-08-22T04:52:48Z GG-14081 Fake commit to fix renaming: part 1. commit 38fa93c8f085392e75f22a68648d368be1039c31 Author: Alexey Kuznetsov Date: 2018-08-22T06:21:23Z GG-14081 Fake commit to fix renaming: part 2. commit 373e481c6d98477eb4da664fdb920567c4195e41 Author: Alexey Kuznetsov Date: 2018-06-14T09:20:19Z GG-14122 Backport IGNITE-8722 REST: Fixed BinaryObject serialization to JSON. (cherry picked from commit e539a0cbde417e718cd4f6840dca8429907e09c5) commit 53b6a3965767feee882b7a81ab7fddb6403550b7 Author: Alexey Kuznetsov Date: 2018-08-23T03:48:41Z IGNITE-9350 Web Console: Added checks for invalid web socket messages. Fixes #4597. (cherry picked from commit b6f67f5f33febb0821b9cb5bde963de212c0e504) commit 69b6663277fdde33452c1f2428ab5a045347b016 Author: Alexey Kuznetsov Date: 2018-08-23T05:37:28Z GG-13195 IGNITE-9337 Refactored from single group to collection of groups. (cherry picked from commit 68374ad52eede916129b82ef769e680a
[GitHub] ignite pull request #5652: IGNITE-10659 widen forbid metadata requests logic
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/5652 ---
[GitHub] ololo3000 commented on a change in pull request #101: IGNITE-10454 add ticket status to mutes
ololo3000 commented on a change in pull request #101: IGNITE-10454 add ticket status to mutes URL: https://github.com/apache/ignite-teamcity-bot/pull/101#discussion_r241372418 ## File path: ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/jira/ignited/TicketCompacted.java ## @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.ci.jira.ignited; + +import org.apache.ignite.ci.jira.Fields; +import org.apache.ignite.ci.jira.Status; +import org.apache.ignite.ci.jira.Ticket; +import org.apache.ignite.ci.teamcity.ignited.IStringCompactor; + +/** + * + */ +public class TicketCompacted { +/** Id. */ +public long id; + +/** Ticket full name like "IGNITE-123". */ +public int igniteId; + +/** Fields. */ +public int status; + +/** + * @param ticket Jira ticket. + * @param comp Compactor. + */ +public TicketCompacted(Ticket ticket, IStringCompactor comp) { +id = ticket.id; +igniteId = Integer.valueOf(ticket.key.substring("IGNITE-".length())); +status = comp.getStringId(ticket.fields.status.name); +} + +/** + * @param comp Compactor. + */ +public Ticket toTicket(IStringCompactor comp) { +Ticket ticket = new Ticket(); + +ticket.id = id; +ticket.key = "IGNITE-" + igniteId; +ticket.fields = new Fields(); +ticket.fields.status = new Status(comp.getStringFromId(status)); + +return ticket; +} +} Review comment: Empty line is missed. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services
[GitHub] ololo3000 commented on a change in pull request #101: IGNITE-10454 add ticket status to mutes
ololo3000 commented on a change in pull request #101: IGNITE-10454 add ticket status to mutes URL: https://github.com/apache/ignite-teamcity-bot/pull/101#discussion_r241367987 ## File path: ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/jira/ignited/JiraTicketDao.java ## @@ -0,0 +1,113 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.ci.jira.ignited; + +import com.google.common.base.Preconditions; +import java.util.Collection; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Set; +import javax.cache.Cache; +import javax.inject.Inject; +import javax.inject.Provider; +import org.apache.ignite.Ignite; +import org.apache.ignite.IgniteCache; +import org.apache.ignite.ci.db.TcHelperDb; +import org.apache.ignite.ci.di.AutoProfiling; +import org.apache.ignite.ci.jira.Ticket; +import org.apache.ignite.ci.teamcity.ignited.IStringCompactor; +import org.apache.ignite.internal.util.typedef.F; +import org.apache.ignite.internal.util.typedef.internal.U; + +/** + * + */ +public class JiraTicketDao { +/** Cache name. */ +public static final String TEAMCITY_JIRA_TICKET_CACHE_NAME = "jiraTickets"; + +/** Ignite provider. */ +@Inject private Provider igniteProvider; + +/** Builds cache. */ +private IgniteCache jiraCache; + +/** Compactor. */ +@Inject private IStringCompactor compactor; + +/** + * + */ +public void init() { +jiraCache = igniteProvider.get().getOrCreateCache(TcHelperDb.getCacheV2Config(TEAMCITY_JIRA_TICKET_CACHE_NAME)); Review comment: Cache configuration with 8 partitions can be used here. This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services
[GitHub] SomeFire opened a new pull request #101: IGNITE-10454 add ticket status to mutes
SomeFire opened a new pull request #101: IGNITE-10454 add ticket status to mutes URL: https://github.com/apache/ignite-teamcity-bot/pull/101 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services
[GitHub] zzzadruga opened a new pull request #100: IGNITE-10628 Load suites list from server
zzzadruga opened a new pull request #100: IGNITE-10628 Load suites list from server URL: https://github.com/apache/ignite-teamcity-bot/pull/100 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services
[GitHub] ignite pull request #5568: IGNITE-10446 control.sh --cache idle_verify fail ...
Github user vldpyatkov closed the pull request at: https://github.com/apache/ignite/pull/5568 ---
[GitHub] ignite pull request #4794: IGNITE-9569 Web console: update DI approach and i...
Github user Klaster1 closed the pull request at: https://github.com/apache/ignite/pull/4794 ---
[GitHub] ignite pull request #4789: IGNITE-9552 Add TypeScript support to web console...
Github user Klaster1 closed the pull request at: https://github.com/apache/ignite/pull/4789 ---
[GitHub] ignite pull request #5660: IGNITE-10324 Disallow fallback to Scanner in cont...
GitHub user a-polyakov opened a pull request: https://github.com/apache/ignite/pull/5660 IGNITE-10324 Disallow fallback to Scanner in control.sh when asking password Signed-off-by: a-polyakov You can merge this pull request into a Git repository by running: $ git pull https://github.com/a-polyakov/ignite ignite-10324 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/ignite/pull/5660.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5660 commit a9db73c244a567956b4cec5770896a7db881af7e Author: a-polyakov Date: 2018-12-13T08:38:21Z IGNITE-10324 Disallow fallback to Scanner in control.sh when asking password Signed-off-by: a-polyakov ---
[GitHub] ignite pull request #5659: IGNITE-10176 migrate non-core modules tests to Ju...
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5659 IGNITE-10176 migrate non-core modules tests to Junit 4 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-10176 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/ignite/pull/5659.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #5659 commit ff4699bebf2571cbd648cbf8bccf1e957c7547e5 Author: Oleg Ignatenko Date: 2018-12-02T23:35:51Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - added @Test -- verified with diffs overview commit a72e24ea010fd7333b7425c349e3de1373aed0fc Author: Oleg Ignatenko Date: 2018-12-03T00:24:34Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit eeeba1cc2f9d9dc02065c19c7c1079008bf73e00 Author: Oleg Ignatenko Date: 2018-12-03T00:26:13Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 9304b5f31ef712708be7d04b68a963d8bf4b050d Author: Oleg Ignatenko Date: 2018-12-03T00:29:51Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 7eaf7a0252fb347f19d192859c410c3c29f7c4b6 Author: Oleg Ignatenko Date: 2018-12-03T00:39:54Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit eaee42ebf611c1617993177d6466e81399c3ebdc Author: Oleg Ignatenko Date: 2018-12-03T00:48:56Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 62738a3820d4057a9c34ad8b2c6e85959ebfc67e Author: Oleg Ignatenko Date: 2018-12-03T00:57:00Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit afb495f9e97e6e15b0c4c29f6d57dd2bbd569f1c Author: Oleg Ignatenko Date: 2018-12-03T08:39:38Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 3b56b742b52a516a4244d2a07635a99d9abeba18 Author: Oleg Ignatenko Date: 2018-12-03T09:06:45Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 3835772a72a99882f9d6cd2557001c9db94ed416 Author: Oleg Ignatenko Date: 2018-12-03T09:31:45Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit ac6be2c4e07748f34da5d83ce3e9f20786ead2fc Author: Oleg Ignatenko Date: 2018-12-03T10:46:59Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 9f663a9c857f76fcb0e56c194cc2d6ec10f6888b Author: Oleg Ignatenko Date: 2018-12-03T11:13:26Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit e2eae3201a88c3d9800b9964ce9ca4096ed3d85f Author: Oleg Ignatenko Date: 2018-12-03T11:31:35Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit f9ccc80de28fb2fc64c96d695f5f906a8cd9a946 Author: Oleg Ignatenko Date: 2018-12-03T12:40:21Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 3eadd0abf6f58a0a3d8fe8464bb08879d412bca1 Author: Oleg Ignatenko Date: 2018-12-03T13:33:00Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 28d9f854993cb99867803cfe0126cf723e071cc5 Author: Oleg Ignatenko Date: 2018-12-03T13:54:52Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit ed54719377f694d0111740c0bbd92dcf5294e6c6 Author: Oleg Ignatenko Date: 2018-12-03T14:10:26Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit fb97a8c23881d1d1c50423dcea6ac519a36c195a Author: Oleg Ignatenko Date: 2018-12-03T14:26:19Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 063f7ae0164924a775b4235ebd0f704017bc2c73 Author: Oleg Ignatenko Date: 2018-12-03T14:45:00Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verified with diffs overview commit 17e86cb29c3f3accc65d464a0e0de4f4eac6a19e Author: Oleg Ignatenko Date: 2018-12-03T15:05:01Z IGNITE-10175 migrate core module tests from Junit 3 to 4 - wip - migrating -- verifie
[GitHub] ignite pull request #5613: IGNITE-10176 migrate non-core modules tests from ...
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/5613 ---