Skip to content

Commit

Permalink
fixup! use append
Browse files Browse the repository at this point in the history
Co-authored-by: Luis Pérez <luisp@yelp.com>
  • Loading branch information
timmow and nemacysts committed Jul 3, 2024
1 parent 2da0220 commit 5294596
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paasta_tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1012,13 +1012,13 @@ def get_volumes(self, system_volumes: Sequence[DockerVolume]) -> List[DockerVolu
# bulkdata is mounted RO as the data is produced by another
# system and we want to ensure that there are no inadvertent
# changes by misbehaved code
volumes = volumes + [
volumes.append(
{
"hostPath": "/nail/bulkdata",
"containerPath": "/nail/bulkdata",
"mode": "RO",
}
]
)
return _reorder_docker_volumes(volumes)

def get_persistent_volumes(self) -> Sequence[PersistentVolume]:
Expand Down

0 comments on commit 5294596

Please sign in to comment.