Skip to content

Commit 8d41958

Browse files
committed
Reverse RLS toolstate check override
As per #60946 (comment)
1 parent 1c939a3 commit 8d41958

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/ci/docker/x86_64-gnu-tools/checkregression.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@
2121
state = cur[os_name]
2222
new_state = toolstate.get(tool, '')
2323
if verb == 'regressed':
24-
if tool == 'rls':
25-
# Temporary override until
26-
# https://github.com/rust-lang/rust/issues/60848 is fixed.
27-
updated = False
28-
else:
29-
updated = new_state < state
24+
updated = new_state < state
3025
elif verb == 'changed':
3126
updated = new_state != state
3227
else:

0 commit comments

Comments
 (0)