Skip to content

Commit

Permalink
Merge pull request kubernetes#35271 from k82cn/k8s_35257
Browse files Browse the repository at this point in the history
Added 'mounterPath' to Mounter interface in 'mount_unsupported.go'.
  • Loading branch information
wojtek-t authored Oct 21, 2016
2 parents f74fbfc + d2e18d6 commit c4d2f95
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/util/mount/mount_unsupported.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ limitations under the License.

package mount

type Mounter struct{}
type Mounter struct {
mounterPath string
}

func (mounter *Mounter) Mount(source string, target string, fstype string, options []string) error {
return nil
Expand Down

0 comments on commit c4d2f95

Please sign in to comment.