Skip to content

Commit

Permalink
IGNITE-9848: Status check bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
dspavlov committed Oct 30, 2018
1 parent 9592a86 commit 9d3d34f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -158,7 +158,7 @@ public boolean isNotCancelled(IStringCompactor compactor) {
}

private boolean hasUnknownStatus(IStringCompactor compactor) {
return compactor.getStringId(STATUS_UNKNOWN) == state();
return compactor.getStringId(STATUS_UNKNOWN) == status();
}

public boolean isRunning(IStringCompactor compactor) {
Expand Down
Expand Up @@ -23,7 +23,7 @@
public static final String GITHUB_REF = "https://github.com/apache/ignite-teamcity-bot";

/** TC Bot Version. */
public static final String VERSION = "20181029";
public static final String VERSION = "20181030";

/** TC Bot Version. */
public String version = VERSION;
Expand Down

0 comments on commit 9d3d34f

Please sign in to comment.