Add the start time to the repository build object and APIs.
This commit is contained in:
parent
dc1737e0da
commit
7f89a5b7f0
2 changed files with 3 additions and 0 deletions
|
@ -215,6 +215,8 @@ class RepositoryBuild(BaseModel):
|
|||
resource_key = CharField()
|
||||
tag = CharField()
|
||||
phase = CharField(default='waiting')
|
||||
started = DateTimeField(default=datetime.now)
|
||||
|
||||
|
||||
|
||||
class QueueItem(BaseModel):
|
||||
|
|
Reference in a new issue