Skip to content

Commit 7559505

Browse files
committed
fixed localhost config
1 parent 95357d6 commit 7559505

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/guide/advanced_tutorial.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using DFControl
88

99
using UUIDs#hide
10-
s = Server(name="localhost", port=8080, domain = "localhost", scheduler = Servers.Bash(), uuid = uuid4(), julia_exec=Sys.BINDIR * "/julia")#hide
10+
s = Server(name="localhost", port=8080, domain = "localhost", scheduler = Servers.Bash(), uuid = string(uuid4()), julia_exec=Sys.BINDIR * "/julia")#hide
1111
if !exists(s)#hide
1212
save(s)#hide
1313
end#hide

docs/src/guide/basic_tutorial.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
using DFControl
1010
using UUIDs#hide
11-
s = Server(name="localhost", port=8080, domain = "localhost", scheduler = Bash(), uuid = uuid4(), julia_exec=Sys.BINDIR * "/julia")#hide
11+
s = Server(name="localhost", port=8080, domain = "localhost", scheduler = Servers.Bash(), uuid = string(uuid4()), julia_exec=Sys.BINDIR * "/julia")#hide
1212
if !exists(s)#hide
1313
save(s)#hide
1414
end#hide

0 commit comments

Comments
 (0)