Skip to content

Commit 7320db3

Browse files
committed
fix(tasks): link to raw log"
1 parent fc96b4b commit 7320db3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

api/router.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,6 @@ func serveFile(w http.ResponseWriter, r *http.Request, name string) {
555555
}
556556

557557
func getSystemInfo(w http.ResponseWriter, r *http.Request) {
558-
host := util.GetPublicHost()
559558

560559
var authMethods LoginAuthMethods
561560

@@ -568,7 +567,7 @@ func getSystemInfo(w http.ResponseWriter, r *http.Request) {
568567
body := map[string]any{
569568
"version": util.Version(),
570569
"ansible": util.AnsibleVersion(),
571-
"web_host": host,
570+
"web_host": util.Config.WebHost,
572571
"use_remote_runner": util.Config.UseRemoteRunner,
573572

574573
"auth_methods": authMethods,

0 commit comments

Comments
 (0)