Skip to content

Commit 79adb3a

Browse files
committed
fix row index for date_added
1 parent b2f3fb4 commit 79adb3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/src/pool/postgres.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2197,7 +2197,7 @@ where
21972197
benchmark_set: BenchmarkSet(row.get::<_, i32>(2) as u32),
21982198
is_active: row.get::<_, bool>(3),
21992199
last_heartbeat_at: row.get::<_, DateTime<Utc>>(4),
2200-
date_added: row.get::<_, DateTime<Utc>>(4),
2200+
date_added: row.get::<_, DateTime<Utc>>(5),
22012201
};
22022202
configs.push(config);
22032203
}

0 commit comments

Comments
 (0)