Skip to content

Commit

Permalink
put back required SECRET_KEY so that the file search form works
Browse files Browse the repository at this point in the history
  • Loading branch information
astro-friedel committed Dec 3, 2024
1 parent b443cbb commit 69cfc7b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions parsl/monitoring/visualization/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def cli_run():
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = args.db_path
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.config['SECRET_KEY'] = os.urandom(24)
db.init_app(app)

with app.app_context():
Expand Down

0 comments on commit 69cfc7b

Please sign in to comment.