From 8fd5a9292c7d3aac352d3c0e96288bff8a79cb47 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Fri, 11 Nov 2022 23:04:43 -0700 Subject: Posting and fan-out both working --- stator/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stator') diff --git a/stator/models.py b/stator/models.py index 98efce6..b2cc681 100644 --- a/stator/models.py +++ b/stator/models.py @@ -45,8 +45,8 @@ class StatorModel(models.Model): concrete model yourself. """ - # If this row is up for transition attempts - state_ready = models.BooleanField(default=False) + # If this row is up for transition attempts (which it always is on creation!) + state_ready = models.BooleanField(default=True) # When the state last actually changed, or the date of instance creation state_changed = models.DateTimeField(auto_now_add=True) -- cgit v1.2.3