Skip to content
This repository has been archived by the owner on Nov 8, 2017. It is now read-only.

Randomize 9p port #11

Merged
merged 1 commit into from
Jan 8, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion filesystem/p9/p9.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
const Type = "9p"

// DefaultAddr is the default address to listen on for the file system.
const DefaultAddr = "127.0.0.1:564"
const DefaultAddr = "127.0.0.1:0"

func init() {
bake.RegisterFileSystem(Type, func(opt bake.FileSystemOptions) (bake.FileSystem, error) {
Expand Down