From eec1e60007958ce2e19f69bad9d4075fd4ec0881 Mon Sep 17 00:00:00 2001 From: Srinath Date: Fri, 8 Nov 2019 16:26:17 +0530 Subject: [PATCH] Release 3.0.0 (#58) * Ability to abort running task/workflow (#52) Features: * API to terminate a task/ job * Do not enforce max execution time on a task Changes: * Ability to publish control messages from the scheduler to all the executors * Task handler contract changes to allow stopping a task * Ability to abort a running task/ workflow * Tests - Remove timer based approach to check the job and trigger completion * Release Kronos 3.0.0-RC1 * Ability to retry a task on timeout (#53) * Ability to retry a task on timeout * Fix issues with control message on retry * Integration test to test basic restart scenarios * Updating version to release 3.0.0 * Update java version in travis.ci to openjdk8 * Update version in Dockerfile to 3.0.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b6be2b4..639c488 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM openjdk:8u151-jre-alpine -ENV KRONOS_VERSION 3.0.0-RC2 +ENV KRONOS_VERSION 3.0.0 ENV KRONOS_HOME /home/kronos-${KRONOS_VERSION} ENV MODE all