Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/subgraph-oz/commit/f528915910bee6b29c9934c67be8de5ae3fdd696?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Ignore empty env declarations

master
xSmurf 10 years ago
parent 319157a1d5
commit f528915910

@ -214,6 +214,9 @@ func (d *daemonState) sanitizeEnvironment(p *oz.Profile, oldEnv []string) []stri
}
for _, EnvItem := range p.Environment {
if EnvItem.Name == "" {
continue
}
if EnvItem.Value != "" {
d.log.Info("Setting environment variable: %s=%s\n", EnvItem.Name, EnvItem.Value)

Loading…
Cancel
Save