Skip to content

Commit

Permalink
Comment out problematic code
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Jan 22, 2024
1 parent dba82bb commit 3ea0a88
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aiidalab_launch/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,15 @@ def __post_init__(self):

_valid_volume_name(self.home_mount)

""" This looks like it's not needed?
# Normalize extra mount mode to be "rw" by default
# so that we match Docker default but are explicit.
for extra_mount in self.extra_mounts:
self.parse_extra_mount(extra_mount)
if len(extra_mount.split(":")) == 2:
self.extra_mounts.remove(extra_mount)
self.extra_mounts.add(f"{extra_mount}:rw")
"""

if (
self.image.split(":")[0] == "aiidalab/full-stack"
Expand Down

0 comments on commit 3ea0a88

Please sign in to comment.