Skip to content

Commit 283980a

Browse files
Merge branch 'master' into feature/add-weighted-random-steering-load-balancing
2 parents f3ed6a2 + c685130 commit 283980a

File tree

105 files changed

+8125
-16548
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+8125
-16548
lines changed

.cargo/config.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
[alias]
2-
# Warnings create a lot of noise, we only print errors.
3-
check-clippy = "clippy --no-deps -- --allow warnings"
4-
51
# Can be safely removed once Cargo's sparse protocol (see
62
# https://blog.rust-lang.org/2023/03/09/Rust-1.68.0.html#cargos-sparse-protocol)
73
# becomes the default.

.config/nextest.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[[profile.default.overrides]]
2+
filter = 'package(graphman-server)'
3+
priority = -1
4+
threads-required = 'num-test-threads' # Global mutex
5+
6+
[[profile.default.overrides]]
7+
filter = 'package(test-store)'
8+
priority = -2
9+
threads-required = 'num-test-threads' # Global mutex
10+
11+
[[profile.default.overrides]]
12+
filter = 'package(graph-tests)'
13+
priority = -3
14+
threads-required = 'num-test-threads' # Global mutex
15+
slow-timeout = { period = "300s", terminate-after = 4 }

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
timeout-minutes: 10
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
1616
- uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998 #v2.0.0
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)