Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
name = "boardwalk"
description = "Boardwalk is a linear Ansible workflow engine"
readme = "README.md"
version = "0.8.28"
version = "0.8.29"
requires-python = ">=3.11,<4"
authors = [
{name="Mat Hornbeek", email="84995001+m4wh6k@users.noreply.github.com"},
Expand Down
3 changes: 3 additions & 0 deletions src/boardwalkd/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,9 @@ class WorkspacesStatusApiHandler(APIBaseHandler):

# nosemgrep: test.boardwalk.python.security.handler-method-missing-authentication
def get(self):
if not self.settings.get("workspace_status_json"):
return self.send_error(404)

result = []
for name, ws in state.workspaces.items():
entry: dict[str, Any] = {
Expand Down
Loading