diff --git a/api/ceramic_cache/api/v1.py b/api/ceramic_cache/api/v1.py index 8b7c11d2c..c0cb62f17 100644 --- a/api/ceramic_cache/api/v1.py +++ b/api/ceramic_cache/api/v1.py @@ -535,7 +535,7 @@ def calc_score_community( scorer_id: int, address: str, ) -> DetailedScoreResponse: - return get_detailed_score_response_for_address(address, scorer_id) + return handle_get_ui_score(address, scorer_id) class FailedVerificationException(APIException): diff --git a/infra/aws/index.ts b/infra/aws/index.ts index 5660a0d58..05f9a8231 100644 --- a/infra/aws/index.ts +++ b/infra/aws/index.ts @@ -1710,7 +1710,7 @@ buildHttpLambdaFn( name: "cc-v1-score-GET-0", memorySize: 512, dockerCmd: ["aws_lambdas.scorer_api_passport.v1.score_GET.handler"], - pathPatterns: ["/ceramic-cache/score/*"], + pathPatterns: ["/ceramic-cache/score/0x*"], httpRequestMethods: ["GET"], listenerPriority: 1007, },