summaryrefslogtreecommitdiffstats
path: root/stator
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-11 23:04:43 -0700
committerAndrew Godwin2022-11-11 23:04:43 -0700
commit8fd5a9292c7d3aac352d3c0e96288bff8a79cb47 (patch)
tree3a9199c1d35a77d209cf424141fd4aa0e0694118 /stator
parentfeb5d9b74fa1e8454eaaf29afae3643c6d7c81f1 (diff)
downloadtakahe-8fd5a9292c7d3aac352d3c0e96288bff8a79cb47.tar.gz
takahe-8fd5a9292c7d3aac352d3c0e96288bff8a79cb47.tar.bz2
takahe-8fd5a9292c7d3aac352d3c0e96288bff8a79cb47.zip
Posting and fan-out both working
Diffstat (limited to 'stator')
-rw-r--r--stator/models.py4
1 files changed, 2 insertions, 2 deletions
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)