Skip to content

Commit

Permalink
Fixup master-web
Browse files Browse the repository at this point in the history
  • Loading branch information
cvicentiu committed Feb 6, 2025
1 parent b7ec41c commit dff4416
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docker-compose/start-bbm-web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ err() {
exit 1
}

cd /srv/buildbot/master/master-web || err "cd /srv/buildbot/master/master-web"
cd /srv/buildbot/master/ || err "cd /srv/buildbot/master/"

# # loop for debug
# while true; do date && sleep 30; done
Expand All @@ -29,5 +29,5 @@ while ! nc -z 127.0.0.1 8080; do
sleep 0.1
done
echo "Crossbar started"
buildbot upgrade-master /srv/buildbot/master/master-web
exec buildbot start --nodaemon
buildbot upgrade-master master-web/master.cfg
exec buildbot start --nodaemon master-web
2 changes: 1 addition & 1 deletion master-web/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ c = BuildmasterConfig = base_master_config(config)
c["protocols"] = {}
# minimalistic config to activate web UI
c["www"] = {
"port": os.environ["PORT"],
"port": int(os.environ["PORT"]),
"plugins": {
"waterfall_view": {},
"console_view": {},
Expand Down

0 comments on commit dff4416

Please sign in to comment.