Skip to content

Commit

Permalink
fix not to require auth for monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
wguanicedew committed Feb 22, 2022
1 parent 8da2b5a commit 119ff30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main/lib/idds/rest/v1/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_normal_blueprints():
bps.append(cacher.get_blueprint())
bps.append(hyperparameteropt.get_blueprint())
bps.append(logs.get_blueprint())
bps.append(monitor.get_blueprint())
# bps.append(monitor.get_blueprint())
bps.append(messages.get_blueprint())
bps.append(ping.get_blueprint())

Expand All @@ -71,6 +71,7 @@ def get_normal_blueprints():
def get_auth_blueprints():
bps = []
bps.append(auth.get_blueprint())
bps.append(monitor.get_blueprint())
return bps


Expand Down

0 comments on commit 119ff30

Please sign in to comment.