Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into feat/v0-car-traversal
Browse files Browse the repository at this point in the history
  • Loading branch information
aarshkshah1992 authored Jul 21, 2022
2 parents 50b3b61 + 1e93c87 commit 772f045
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
repository: filecoin-project/saturn-webui
# Update tag to deploy new web UI.
tag: v0.0.14
tag: v0.0.15
fileName: saturn-webui.tar.gz
out-file-path: resources/webui
-
Expand Down
10 changes: 3 additions & 7 deletions main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,13 @@ func main() {
os.Exit(4)
}

go func() {
if err := srv.Serve(nl); err != http.ErrServerClosed {
panic(err)
}
}()

port := nl.Addr().(*net.TCPAddr).Port
port = nl.Addr().(*net.TCPAddr).Port
fmt.Println("Server listening on", nl.Addr())
fmt.Printf("WebUI: http://localhost:%d/webui\n", port)
for {

if err := srv.Serve(nl); err != http.ErrServerClosed {
panic(err)
}
}

Expand Down

0 comments on commit 772f045

Please sign in to comment.