Skip to content

Commit 87ee5b4

Browse files
cleaning
1 parent afd66d4 commit 87ee5b4

File tree

4 files changed

+1
-8
lines changed

4 files changed

+1
-8
lines changed

.env-devel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ EFS_GROUP_NAME=efs-group
9090
EFS_DNS_NAME=fs-xxx.efs.us-east-1.amazonaws.com
9191
EFS_MOUNTED_PATH=/tmp/efs
9292
EFS_PROJECT_SPECIFIC_DATA_DIRECTORY=project-specific-data
93-
EFS_ONLY_ENABLED_FOR_USERIDS=[]
9493
EFS_GUARDIAN_TRACING={}
9594

9695
# DATCORE_ADAPTER

packages/settings-library/src/settings_library/efs.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ class AwsEfsSettings(BaseCustomSettings):
1414
EFS_MOUNTED_PATH: Path = Field(
1515
description="This is the path where EFS is mounted to the EC2 machine",
1616
)
17-
EFS_ONLY_ENABLED_FOR_USERIDS: list[int] = Field(
18-
description="This is temporary solution so we can enable it for specific users for testing purpose",
19-
examples=[[1]],
20-
)
2117

2218

2319
NFS_PROTOCOL = "4.1"

services/docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,6 @@ services:
345345

346346
EFS_DNS_NAME: ${EFS_DNS_NAME}
347347
EFS_MOUNTED_PATH: ${EFS_MOUNTED_PATH}
348-
EFS_ONLY_ENABLED_FOR_USERIDS: ${EFS_ONLY_ENABLED_FOR_USERIDS}
349348
EFS_PROJECT_SPECIFIC_DATA_DIRECTORY: ${EFS_PROJECT_SPECIFIC_DATA_DIRECTORY}
350349

351350
RABBIT_HOST: ${RABBIT_HOST}
@@ -433,8 +432,8 @@ services:
433432
EFS_GROUP_ID: ${EFS_GROUP_ID}
434433
EFS_GROUP_NAME: ${EFS_GROUP_NAME}
435434
EFS_DNS_NAME: ${EFS_DNS_NAME}
435+
EFS_DEFAULT_USER_SERVICE_SIZE_BYTES: ${EFS_DEFAULT_USER_SERVICE_SIZE_BYTES}
436436
EFS_MOUNTED_PATH: ${EFS_MOUNTED_PATH}
437-
EFS_ONLY_ENABLED_FOR_USERIDS: ${EFS_ONLY_ENABLED_FOR_USERIDS}
438437
EFS_PROJECT_SPECIFIC_DATA_DIRECTORY: ${EFS_PROJECT_SPECIFIC_DATA_DIRECTORY}
439438
EFS_GUARDIAN_TRACING: ${EFS_GUARDIAN_TRACING}
440439
TRACING_OPENTELEMETRY_COLLECTOR_ENDPOINT: ${TRACING_OPENTELEMETRY_COLLECTOR_ENDPOINT}

services/efs-guardian/tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ def app_environment(
7272
"EFS_DNS_NAME": "fs-xxx.efs.us-east-1.amazonaws.com",
7373
"EFS_MOUNTED_PATH": "/tmp/efs",
7474
"EFS_PROJECT_SPECIFIC_DATA_DIRECTORY": "project-specific-data",
75-
"EFS_ONLY_ENABLED_FOR_USERIDS": "[]",
7675
"EFS_GUARDIAN_TRACING": "null",
7776
"SC_USER_ID": "8004",
7877
"SC_USER_NAME": "scu",

0 commit comments

Comments
 (0)