Skip to content
This repository was archived by the owner on Apr 14, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
dc7a904
Updated dep versions
bhaskarkishore Nov 16, 2021
52ede9c
Switched to AWS SDK
bhaskarkishore Nov 22, 2021
396a044
Added metric for status code from http client
bhaskarkishore Nov 22, 2021
64680ef
Added logging
bhaskarkishore Nov 22, 2021
d69727e
Jemallocator is now default
bhaskarkishore Nov 22, 2021
cd99d73
bumped version number
bhaskarkishore Nov 22, 2021
64e2dce
Added custome status codes for OS errors to http status code metric
bhaskarkishore Nov 23, 2021
899c84f
Removed metric active_clients as it was broken
bhaskarkishore Nov 23, 2021
caf20b6
Refactored http module to support multiple http client providers
bhaskarkishore Nov 29, 2021
1d273b6
API keys are now named and exposed via metrics. Old style key config …
bhaskarkishore Nov 29, 2021
8eac143
Added unit test for authenticate fn
bhaskarkishore Nov 29, 2021
78ef287
Refactored db module to support multiple db providers
bhaskarkishore Nov 29, 2021
422b8e2
updated grCov config to include all files
bhaskarkishore Nov 29, 2021
9c0202c
Added unit test in http module
bhaskarkishore Nov 30, 2021
c5a523e
Clean up old coverage files
bhaskarkishore Nov 30, 2021
d671c17
Removed dead code
bhaskarkishore Nov 30, 2021
e01448f
Added metrics to track protocol and domain when fetching content
bhaskarkishore Nov 30, 2021
8928ab5
Fixed invalid response bug when doc is blocked and the response type …
bhaskarkishore Nov 30, 2021
50d577e
Removed granular mod categories appearing as unknown due to lack of m…
bhaskarkishore Nov 30, 2021
3c573c1
Updated deps to address vuln
bhaskarkishore Dec 1, 2021
53bf465
fix gh action step which breaks in the absence of input files
bhaskarkishore Dec 1, 2021
5b74c90
Updated aws crates to version 0.2
bhaskarkishore Dec 2, 2021
42f4411
Added dummy database for testing
bhaskarkishore Dec 2, 2021
3240171
Unified CORS handling to single place in code
bhaskarkishore Dec 3, 2021
deac48f
Refactoring away configuration object
bhaskarkishore Dec 3, 2021
d7f7038
Refactored rpc methods to return structs instead of http response
bhaskarkishore Dec 4, 2021
f5bd1c1
Added metric to track rpc specific error counts
bhaskarkishore Dec 4, 2021
81f7e5f
Fix clippy warnings
bhaskarkishore Dec 14, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/actions-rs/grcov.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
branch: true
ignore-not-existing: true
llvm: true
filter: covered
output-type: lcov
output-path: ./lcov.info
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
target
key: ${{ runner.os }}-test-cache-${{ hashFiles('Cargo.lock') }}
restore-keys: ${{ runner.os }}-build-cache
- name: Clean up old files
run: |
(find . -name "*.gcda" -print0 | xargs -0 rm) || true
- name: Run test
run: |
cargo test --workspace --all-features --no-fail-fast --verbose
Expand Down
Loading