Skip to content

Commit

Permalink
Update message
Browse files Browse the repository at this point in the history
  • Loading branch information
haneslinger committed Nov 28, 2023
1 parent f85a985 commit eddd108
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ version: "3.4"
services:
db-postgres:
container_name: seed_postgres
volumes:
- ref_seed_pgdata:/var/lib/postgresql/data
# volumes:
# - ref_seed_pgdata:/var/lib/postgresql/data
web:
container_name: seed_web
image: seedplatform/seed:develop
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- POSTGRES_USER=seed
- POSTGRES_PASSWORD=super-secret-password
volumes:
- seed_pgdata:/var/lib/postgresql/data
- seed_pgdata_cycles:/var/lib/postgresql/data
ports:
- "5432:5432"
logging:
Expand Down Expand Up @@ -92,7 +92,7 @@ services:
max-size: 50m
max-file: "5"
volumes:
seed_pgdata:
seed_pgdata_cycles:
external: true
seed_media:
external: true
2 changes: 1 addition & 1 deletion seed/lib/superperms/orgs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def _assert_alns_are_valid(org):
columns_with_same_names = Column.objects.filter(organization=org, display_name__in=alns)
if columns_with_same_names.count() > 0:
repeated_names = set(columns_with_same_names.values_list("display_name", flat=True))
raise ValueError(f"Organiation's access_level_names must not be column names: {list(repeated_names)}")
raise ValueError(f"Access level names cannot match SEED column names: {list(repeated_names)}")


def _update_alis_path_keys(org, previous_access_level_names):
Expand Down

0 comments on commit eddd108

Please sign in to comment.