Skip to content

Commit 03753f3

Browse files
committed
Changes
1 parent e6f53c8 commit 03753f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytask_vscode/execution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
def pytask_execute_task_log_end(session: pytask.Session, report: pytask.ExecutionReport) -> None:
88

99
if not session.config["dry_run"]:
10-
attrs = {"name" : report.task.short_name, "path" : str(report.task.path), "report" : str(report.outcome)}
10+
attrs = {"type" : "task" ,"name" : report.task.short_name, "path" : str(report.task.path), "report" : str(report.outcome)}
1111
address = ('localhost', 6000)
1212
conn = Client(address, authkey=b'secret password')
1313
conn.send(json.dumps(attrs))

0 commit comments

Comments
 (0)