Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stswidwinski committed Nov 1, 2022
1 parent 4f8a84d commit 1f4feeb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions plugins/drivers/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,9 @@ func MountFromProto(mount *proto.Mount) *MountConfig {
}

return &MountConfig{
TaskPath: mount.TaskPath,
HostPath: mount.HostPath,
Readonly: mount.Readonly,
TaskPath: mount.TaskPath,
HostPath: mount.HostPath,
Readonly: mount.Readonly,
PropagationMode: mount.PropagationMode,
}
}
Expand Down Expand Up @@ -330,9 +330,9 @@ func MountToProto(mount *MountConfig) *proto.Mount {
}

return &proto.Mount{
TaskPath: mount.TaskPath,
HostPath: mount.HostPath,
Readonly: mount.Readonly,
TaskPath: mount.TaskPath,
HostPath: mount.HostPath,
Readonly: mount.Readonly,
PropagationMode: mount.PropagationMode,
}
}
Expand Down

0 comments on commit 1f4feeb

Please sign in to comment.