Skip to content

Commit

Permalink
Add plot-navigator prefix to blueprints.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctslater committed Oct 17, 2024
1 parent f290977 commit be4eb01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions python/lsst/production/tools/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@

bp = Blueprint("logs", __name__, url_prefix="/logs")

try:
BUTLER_URI = os.environ["BUTLER_URI"]
except KeyError:
print("Must set environment variable BUTLER_URI")
sys.exit(1)
#try:
# BUTLER_URI = os.environ["BUTLER_URI"]
#except KeyError:
# print("Must set environment variable BUTLER_URI")
# sys.exit(1)

#global_butler = dafButler.Butler(BUTLER_URI)

Expand Down
2 changes: 1 addition & 1 deletion python/lsst/production/tools/tractTable.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import numpy as np
import urllib.parse
import yaml
bp = Blueprint("metrics", __name__, url_prefix="/metrics")
bp = Blueprint("metrics", __name__, url_prefix="/plot-navigator/metrics")

NO_BUTLER = True

Expand Down

0 comments on commit be4eb01

Please sign in to comment.