Fix issue with client not showing up when no jobs available

This commit is contained in:
Brett Williams
2023-06-01 14:37:26 -05:00
parent 1598a26525
commit 7040812e71
5 changed files with 26 additions and 13 deletions

View File

@@ -42,8 +42,8 @@ class BaseRenderWorker(Base):
input_path = Column(String)
output_path = Column(String)
date_created = Column(DateTime)
start_time = Column(DateTime)
end_time = Column(DateTime)
start_time = Column(DateTime, nullable=True)
end_time = Column(DateTime, nullable=True)
renderer = Column(String)
renderer_version = Column(String)
priority = Column(Integer)