mirror of
https://github.com/openai/codex.git
synced 2026-04-28 02:11:08 +03:00
NIT fix
This commit is contained in:
@@ -1597,7 +1597,9 @@ impl CodexMessageProcessor {
|
||||
history
|
||||
.into_iter()
|
||||
.map(|item| RolloutLine {
|
||||
timestamp: String::new(),
|
||||
timestamp: Utc::now()
|
||||
.format("%Y-%m-%dT%H:%M:%S%.3fZ")
|
||||
.to_string(),
|
||||
agent_id: None,
|
||||
item: RolloutItem::ResponseItem(item),
|
||||
})
|
||||
@@ -2311,7 +2313,9 @@ impl CodexMessageProcessor {
|
||||
history
|
||||
.into_iter()
|
||||
.map(|item| RolloutLine {
|
||||
timestamp: String::new(),
|
||||
timestamp: Utc::now()
|
||||
.format("%Y-%m-%dT%H:%M:%S%.3fZ")
|
||||
.to_string(),
|
||||
agent_id: None,
|
||||
item: RolloutItem::ResponseItem(item),
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user