Skip to content

Commit

Permalink
IGNITE-11491: Revisions were added to JAXB model & Compacted DB model…
Browse files Browse the repository at this point in the history
… for TC Bot: version update
  • Loading branch information
dspavlov committed Mar 12, 2019
1 parent a45ae60 commit b0714ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -305,8 +305,7 @@ private void fillBuildFields(IStringCompactor compactor, Build res) {
}

if (revisions != null) {
List<RevisionCompacted> revs = Arrays.asList(revisions);
res.setRevisions(revs.stream().map(revComp -> {
res.setRevisions(Arrays.stream(revisions).map(revComp -> {
Revision revision = new Revision()
.version(revComp.commitFullVersion())
.vcsBranchName(revComp.vcsBranchName(compactor));
Expand Down
Expand Up @@ -28,7 +28,7 @@
public static final String GITHUB_REF = "https://github.com/apache/ignite-teamcity-bot";

/** TC Bot Version. */
public static final String VERSION = "20190307";
public static final String VERSION = "20190312";

/** Java version, where Web App is running. */
public String javaVer;
Expand Down

0 comments on commit b0714ca

Please sign in to comment.