10 lines
188 B
Go
10 lines
188 B
Go
|
// +build !linux
|
||
|
|
||
|
package driver
|
||
|
|
||
|
import cstructs "github.com/hashicorp/nomad/client/structs"
|
||
|
|
||
|
func (d *JavaDriver) FSIsolation() cstructs.FSIsolation {
|
||
|
return cstructs.FSIsolationNone
|
||
|
}
|