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 backend/src/baserow/contrib/automation/nodes/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def dispatch_node(
try:
dispatch_result = node_type.dispatch(node, dispatch_context)
except ServiceImproperlyConfiguredDispatchException as e:
error = f"The node {node.id} is misconfigured and cannot be dispatched. {str(e)}"
error = f"The node is misconfigured and cannot be dispatched. {str(e)}"
self._handle_workflow_error(node_history, iteration_path, error)
self._handle_simulation_notify(simulate_until_node, node)
return None
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "refactor",
"message": "Remove Node ID in dispatch errors since the error is scoped to the node history.",
"issue_origin": "github",
"issue_number": 4800,
"domain": "automation",
"bullet_points": [],
"created_at": "2026-05-01"
}
2 changes: 1 addition & 1 deletion web-frontend/modules/integrations/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"slackBotNoToken": "Slack Bot - Not configured"
},
"serviceType": {
"localBaserowGetRow": "Get single row",
"localBaserowGetRow": "Get a single row",
"localBaserowGetRowDescription": "Read a single row from a Baserow table.",
"localBaserowListRows": "List multiple rows",
"localBaserowListRowsDescription": "Reads multiple rows from a Baserow table.",
Expand Down
Loading