From d25a3088150b2a277242027c12becdeb88c45517 Mon Sep 17 00:00:00 2001 From: David Reyna Date: Tue, 11 Jul 2017 14:56:09 -0700 Subject: toaster: set clone progress default to off Set the clone progress to be off by default for the benefit of command line projects and 'Local Yocto' builds. For Toaster managed projects that do use the clone feature the clone progress status is already explicitly set by the existing code and thus displayed. [YOCTO #11744] Signed-off-by: David Reyna Signed-off-by: Richard Purdie --- lib/toaster/orm/migrations/0016_clone_progress.py | 4 ++-- lib/toaster/orm/models.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/toaster/orm/migrations/0016_clone_progress.py b/lib/toaster/orm/migrations/0016_clone_progress.py index 852b8785f..cd4023b6f 100644 --- a/lib/toaster/orm/migrations/0016_clone_progress.py +++ b/lib/toaster/orm/migrations/0016_clone_progress.py @@ -13,12 +13,12 @@ class Migration(migrations.Migration): migrations.AddField( model_name='build', name='repos_cloned', - field=models.IntegerField(default=0), + field=models.IntegerField(default=1), ), migrations.AddField( model_name='build', name='repos_to_clone', - field=models.IntegerField(default=1), + field=models.IntegerField(default=1), # (default off) ), ] diff --git a/lib/toaster/orm/models.py b/lib/toaster/orm/models.py index e9182c56e..05cc5a83b 100644 --- a/lib/toaster/orm/models.py +++ b/lib/toaster/orm/models.py @@ -456,8 +456,8 @@ class Build(models.Model): # number of repos to clone for this build repos_to_clone = models.IntegerField(default=1) - # number of repos cloned so far for this build - repos_cloned = models.IntegerField(default=0) + # number of repos cloned so far for this build (default off) + repos_cloned = models.IntegerField(default=1) @staticmethod def get_recent(project=None): -- cgit 1.2.3-korg