Skip to content

Commit

Permalink
fix: dont overwrite old host entry for the console (#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarrosop authored Aug 21, 2024
1 parent 36c4946 commit a0159dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockercompose/graphql.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func console( //nolint:funlen

extraHosts := extraHosts(subdomain)
for i, host := range extraHosts {
if strings.HasPrefix(host, subdomain+".hasura") {
if strings.HasPrefix(host, subdomain+".hasura.local.nhost.run") {
extraHosts[i] = subdomain + ".hasura.local.nhost.run:0.0.0.0"
}
}
Expand Down

0 comments on commit a0159dd

Please sign in to comment.