File tree 3 files changed +14
-9
lines changed
3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -116,8 +116,12 @@ func App() *cli.App {
116
116
return errors .Wrap (err , "creating temp mount location" )
117
117
}
118
118
// unmount all temp mounts on boot for the server
119
- if err := mount .CleanupTempMounts (0 ); err != nil {
120
- return errors .Wrap (err , "unmounting temp mounts" )
119
+ warnings , err := mount .CleanupTempMounts (0 )
120
+ if err != nil {
121
+ log .G (ctx ).WithError (err ).Error ("unmounting temp mounts" )
122
+ }
123
+ for _ , w := range warnings {
124
+ log .G (ctx ).WithError (w ).Warn ("cleanup temp mount" )
121
125
}
122
126
address := config .GRPC .Address
123
127
if address == "" {
Original file line number Diff line number Diff line change @@ -39,10 +39,10 @@ func SetTempMountLocation(root string) error {
39
39
}
40
40
41
41
// CleanupTempMounts all temp mounts and remove the directories
42
- func CleanupTempMounts (flags int ) error {
42
+ func CleanupTempMounts (flags int ) ( warnings [] error , err error ) {
43
43
mounts , err := Self ()
44
44
if err != nil {
45
- return err
45
+ return nil , err
46
46
}
47
47
var toUnmount []string
48
48
for _ , m := range mounts {
@@ -53,11 +53,12 @@ func CleanupTempMounts(flags int) error {
53
53
sort .Sort (sort .Reverse (sort .StringSlice (toUnmount )))
54
54
for _ , path := range toUnmount {
55
55
if err := UnmountAll (path , flags ); err != nil {
56
- return err
56
+ warnings = append (warnings , err )
57
+ continue
57
58
}
58
59
if err := os .Remove (path ); err != nil {
59
- return err
60
+ warnings = append ( warnings , err )
60
61
}
61
62
}
62
- return nil
63
+ return warnings , nil
63
64
}
Original file line number Diff line number Diff line change @@ -24,6 +24,6 @@ func SetTempMountLocation(root string) error {
24
24
}
25
25
26
26
// CleanupTempMounts all temp mounts and remove the directories
27
- func CleanupTempMounts (flags int ) error {
28
- return nil
27
+ func CleanupTempMounts (flags int ) ([] error , error ) {
28
+ return nil , nil
29
29
}
You can’t perform that action at this time.
0 commit comments