From 75595051d2e73d5309b2b379b81e5cdff4a596f2 Mon Sep 17 00:00:00 2001 From: louisponet Date: Fri, 11 Feb 2022 09:57:43 +0100 Subject: [PATCH] fixed localhost config --- docs/src/guide/advanced_tutorial.jl | 2 +- docs/src/guide/basic_tutorial.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/guide/advanced_tutorial.jl b/docs/src/guide/advanced_tutorial.jl index d886a31a..80061ea9 100644 --- a/docs/src/guide/advanced_tutorial.jl +++ b/docs/src/guide/advanced_tutorial.jl @@ -7,7 +7,7 @@ using DFControl using UUIDs#hide -s = Server(name="localhost", port=8080, domain = "localhost", scheduler = Servers.Bash(), uuid = uuid4(), julia_exec=Sys.BINDIR * "/julia")#hide +s = Server(name="localhost", port=8080, domain = "localhost", scheduler = Servers.Bash(), uuid = string(uuid4()), julia_exec=Sys.BINDIR * "/julia")#hide if !exists(s)#hide save(s)#hide end#hide diff --git a/docs/src/guide/basic_tutorial.jl b/docs/src/guide/basic_tutorial.jl index 2ee680fc..87509f75 100644 --- a/docs/src/guide/basic_tutorial.jl +++ b/docs/src/guide/basic_tutorial.jl @@ -8,7 +8,7 @@ using DFControl using UUIDs#hide -s = Server(name="localhost", port=8080, domain = "localhost", scheduler = Bash(), uuid = uuid4(), julia_exec=Sys.BINDIR * "/julia")#hide +s = Server(name="localhost", port=8080, domain = "localhost", scheduler = Servers.Bash(), uuid = string(uuid4()), julia_exec=Sys.BINDIR * "/julia")#hide if !exists(s)#hide save(s)#hide end#hide