Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 666469474
  • Loading branch information
colaboratory-team committed Sep 24, 2024
1 parent d324cf6 commit bd9b3fb
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions google/colab/drive.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,15 @@ def _mount(
+ inet_family
+ ' '
+ metadata_auth_arg
+ '--preferences=trusted_root_certs_file_path:{d}/roots.pem,mount_point_path:{mnt}'
' 2>&1 | grep --line-buffered -E'
' "{problem_and_stopped}|{domain_disabled_drivefs}"; echo'
' "{drive_exited}"; ) &'
+ '--preferences='
+ ','.join([
'trusted_root_certs_file_path:{d}/roots.pem',
'feature_flag_restart_seconds:129600',
'mount_point_path:{mnt}',
])
+ ' 2>&1 | grep --line-buffered -E'
+ ' "{problem_and_stopped}|{domain_disabled_drivefs}"; echo'
+ ' "{drive_exited}"; ) &'
).format(
d=drive_dir,
timeout_ms=timeout_ms,
Expand Down

0 comments on commit bd9b3fb

Please sign in to comment.