Skip to content

Commit

Permalink
Merge branch 'main' into main-live-migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivanshVij authored Dec 19, 2024
2 parents 29497ec + 70ac154 commit fbbb92c
Show file tree
Hide file tree
Showing 155 changed files with 3,369 additions and 3,188 deletions.
3 changes: 2 additions & 1 deletion .buildkite/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"""

import argparse
import ast
import json
import os
import random
Expand Down Expand Up @@ -138,7 +139,7 @@ def __call__(self, parser, namespace, value, option_string=None):
res = getattr(namespace, self.dest, {})
key_str, val = value.split("=", maxsplit=1)
keys = key_str.split("/")
update = {keys[-1]: val}
update = {keys[-1]: ast.literal_eval(val)}
for key in list(reversed(keys))[1:]:
update = {key: update}
res = overlay_dict(res, update)
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/pipeline_perf.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@
pins = {
# TODO: Unpin when performance instability on m6i/5.10 has gone.
"linux_5.10-pinned": {"instance": "m6i.metal", "kv": "linux_5.10"},
# TODO: Unpin when performance instability on m6i/6.1 has gone.
"linux_6.1-pinned": {"instance": "m6i.metal", "kv": "linux_6.1"},
}


Expand Down
4 changes: 2 additions & 2 deletions .gitlint
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ line-length=72

[ignore-body-lines]
# Ignore HTTP reference links
# Ignore lines that start with 'Co-Authored-By' or with 'Signed-off-by'
regex=(^\[.+\]: http.+)|(^Co-Authored-By)|(^Signed-off-by)
# Ignore lines that start with 'Co-Authored-By', with 'Signed-off-by' or with 'Fixes'
regex=(^\[.+\]: http.+)|(^Co-Authored-By)|(^Signed-off-by)|(^Fixes:)

[ignore-by-author-name]
# Ignore certain rules for commits of which the author name matches a regex
Expand Down
Loading

0 comments on commit fbbb92c

Please sign in to comment.