File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tools/integration_tests/tokenserver Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ AND available > 0
4949AND capacity > current_load
5050AND downed = 0
5151AND backoff = 0
52- ORDER BY LOG(current_load) / LOG(capacity)
52+ ORDER BY LOG(current_load) / LOG(capacity) ASC,available DESC
5353LIMIT 1"# ;
5454
5555pub const GET_BEST_NODE_RELEASE_CAPACITY_QUERY : & str = r#"
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ def _add_user(
177177 created_at = created_at or math .trunc (time .time () * 1000 )
178178 query = insert (Users ).values (
179179 service = self .service_id ,
180- email = email or "test: %s" % self .FXA_EMAIL_DOMAIN ,
180+ email = email or "test@ %s" % self .FXA_EMAIL_DOMAIN ,
181181 generation = generation ,
182182 client_state = client_state ,
183183 created_at = created_at ,
You can’t perform that action at this time.
0 commit comments