Skip to content

Commit 7a8a4bd

Browse files
committed
fix(test-suite): remove tenant-era coprocessor args
1 parent d58ae64 commit 7a8a4bd

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

test-suite/fhevm/docker-compose/coprocessor-docker-compose.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ services:
5353
command:
5454
- host_listener
5555
- --database-url=${DATABASE_URL}
56-
- --coprocessor-api-key=${TENANT_API_KEY}
5756
- --acl-contract-address=${ACL_CONTRACT_ADDRESS}
5857
- --tfhe-contract-address=${FHEVM_EXECUTOR_CONTRACT_ADDRESS}
5958
- --url=${RPC_WS_URL}
@@ -78,7 +77,6 @@ services:
7877
command:
7978
- host_listener_poller
8079
- --database-url=${DATABASE_URL}
81-
- --coprocessor-api-key=${TENANT_API_KEY}
8280
- --acl-contract-address=${ACL_CONTRACT_ADDRESS}
8381
- --tfhe-contract-address=${FHEVM_EXECUTOR_CONTRACT_ADDRESS}
8482
- --url=${RPC_HTTP_URL}
@@ -140,7 +138,7 @@ services:
140138
- --pg-pool-max-connections=10
141139
- --worker-polling-interval-ms=1000
142140
- --work-items-batch-size=10
143-
- --tenant-key-cache-size=32
141+
- --key-cache-size=32
144142
- --coprocessor-fhe-threads=8
145143
- --tokio-threads=4
146144
depends_on:
@@ -188,7 +186,6 @@ services:
188186
command:
189187
- sns_worker
190188
- --database-url=${DATABASE_URL}
191-
- --tenant-api-key=${TENANT_API_KEY}
192189
- --pg-listen-channels
193190
- event_pbs_computations
194191
- event_ciphertext_computed

test-suite/fhevm/env/staging/.env.coprocessor

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ POSTGRES_USER=postgres
66
POSTGRES_PASSWORD=postgres
77
DATABASE_URL="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/coprocessor"
88

9-
# =============================================================================
10-
# API & AUTHENTICATION - SENSITIVE
11-
# =============================================================================
12-
# IMPORTANT: For testing only - move to secure storage in production
13-
TENANT_API_KEY=a1503fb6-d79b-4e9e-826d-44cf262f3e05
14-
159
# =============================================================================
1610
# AWS/MINIO CONFIGURATION
1711
# =============================================================================

test-suite/fhevm/scripts/deploy-fhevm-stack.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,6 @@ run_additional_coprocessor_instance() {
499499

500500
sed -e "s#../env/staging/.env.coprocessor.local#../env/staging/.env.coprocessor.${instance_idx}.local#g" \
501501
-e "s/coprocessor-/coprocessor${instance_idx}-/g" \
502-
-e "s/--coprocessor${instance_idx}-api-key/--coprocessor-api-key/g" \
503502
-e "s/--coprocessor${instance_idx}-fhe-threads/--coprocessor-fhe-threads/g" \
504503
"$source_compose" > "$temp_compose"
505504

0 commit comments

Comments
 (0)