bug: fix Tokenserver Spanner node query (#1383)

This commit is contained in:
Ethan Donowitz 2022-08-23 10:36:00 -04:00 committed by GitHub
parent 9e977c710e
commit edef90ca47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -306,7 +306,7 @@ impl TokenserverDb {
"#;
const SPANNER_QUERY: &str = r#"
UPDATE nodes
SET current_load = current_load + 1,
SET current_load = current_load + 1
WHERE service = ?
AND node = ?
"#;