Skip to content

Commit

Permalink
fixed localhost config
Browse files Browse the repository at this point in the history
  • Loading branch information
louisponet committed Feb 11, 2022
1 parent 95357d6 commit 7559505
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/guide/advanced_tutorial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/guide/basic_tutorial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

2 comments on commit 7559505

@louisponet
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/53967

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.1 -m "<description of version>" 75595051d2e73d5309b2b379b81e5cdff4a596f2
git push origin v0.4.1

Please sign in to comment.