From a661802d29c7326d7407160eed65899726806036 Mon Sep 17 00:00:00 2001 From: rushmorem Date: Thu, 19 Feb 2015 12:31:12 +0200 Subject: [PATCH] Update chronos default port Update chronos default port to match the one documented on their website (http://airbnb.github.io/chronos). The one in their repo (the current one) clashes with the marathon documented one. --- nixos/modules/services/scheduling/chronos.nix | 2 +- pkgs/applications/networking/cluster/chronos/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/scheduling/chronos.nix b/nixos/modules/services/scheduling/chronos.nix index 277cdd63280..f36b886a744 100644 --- a/nixos/modules/services/scheduling/chronos.nix +++ b/nixos/modules/services/scheduling/chronos.nix @@ -18,7 +18,7 @@ in { httpPort = mkOption { description = "Chronos listening port"; - default = 8080; + default = 4400; type = types.int; }; diff --git a/pkgs/applications/networking/cluster/chronos/default.nix b/pkgs/applications/networking/cluster/chronos/default.nix index 58d56feea70..14f5d251240 100644 --- a/pkgs/applications/networking/cluster/chronos/default.nix +++ b/pkgs/applications/networking/cluster/chronos/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { ''; meta = with lib; { - homepage = https://github.com/airbnb/chronos; + homepage = http://airbnb.github.io/chronos; license = licenses.asl20; description = "Fault tolerant job scheduler for Mesos which handles dependencies and ISO8601 based schedules"; maintainers = with maintainers; [ offline ];