Skip to content

Commit

Permalink
Smaller MAX_COMPLETED_TASKS_PER_FRAMEWORK to address MESOS-3307
Browse files Browse the repository at this point in the history
  • Loading branch information
bobrik committed Sep 11, 2015
1 parent 87de003 commit d247372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/master/constants.cpp
Expand Up @@ -38,7 +38,7 @@ const Duration MIN_SLAVE_REREGISTER_TIMEOUT = Minutes(10);
const double RECOVERY_SLAVE_REMOVAL_PERCENT_LIMIT = 1.0; // 100%.
const size_t MAX_REMOVED_SLAVES = 100000;
const uint32_t MAX_COMPLETED_FRAMEWORKS = 50;
const uint32_t MAX_COMPLETED_TASKS_PER_FRAMEWORK = 1000;
const uint32_t MAX_COMPLETED_TASKS_PER_FRAMEWORK = 50;
const Duration WHITELIST_WATCH_INTERVAL = Seconds(5);
const uint32_t TASK_LIMIT = 100;
const std::string MASTER_INFO_LABEL = "info";
Expand Down

0 comments on commit d247372

Please sign in to comment.