Skip to content

Commit 502efef

Browse files
authored
fix: dont blame vrcdb for avtrdb screaming 429 on ingest (#22)
1 parent d364a89 commit 502efef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/provider/avtrdb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ impl Provider for AvtrDB {
113113
let unique = match status {
114114
StatusCode::OK => data.valid_avatar_ids == 1,
115115
StatusCode::TOO_MANY_REQUESTS => {
116-
warn!("[{}] 429 Rate Limit, trying again in 10 seconds", Type::VRCDB);
116+
warn!("[{}] 429 Rate Limit, trying again in 10 seconds", Type::AVTRDB);
117117
std::thread::sleep(Duration::from_secs(10));
118118
self.send_avatar_id(avatar_id)?
119119
}

0 commit comments

Comments
 (0)