fix: Backlog-Konvertierung — fehlendes f-String in RETURNING-Klausel.
All checks were successful
Deploy Development / deploy (push) Successful in 45s
Test Suite / pytest-backend (push) Successful in 1m47s
Test Suite / lint-backend (push) Successful in 3s
Test Suite / compose-smoke (push) Has been skipped
Test Suite / k6 /api/health Baseline (push) Successful in 18s
Test Suite / playwright-smoke (push) Successful in 23s
All checks were successful
Deploy Development / deploy (push) Successful in 45s
Test Suite / pytest-backend (push) Successful in 1m47s
Test Suite / lint-backend (push) Successful in 3s
Test Suite / compose-smoke (push) Has been skipped
Test Suite / k6 /api/health Baseline (push) Successful in 18s
Test Suite / playwright-smoke (push) Successful in 23s
convert_backlog_to_action schickte {_BACKLOG_COLUMNS} uninterpoliert an PostgreSQL; zwei pytest-Tests schlugen fehl.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
2734215833
commit
d00ae070ec
|
|
@ -296,7 +296,7 @@ def convert_backlog_to_action(
|
||||||
try:
|
try:
|
||||||
with conn.cursor(cursor_factory=RealDictCursor) as cur:
|
with conn.cursor(cursor_factory=RealDictCursor) as cur:
|
||||||
cur.execute(
|
cur.execute(
|
||||||
"""
|
f"""
|
||||||
UPDATE backlog_items
|
UPDATE backlog_items
|
||||||
SET status = 'converted',
|
SET status = 'converted',
|
||||||
converted_action_id = %s,
|
converted_action_id = %s,
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
APP_VERSION = "0.16.1-ap1.9a"
|
APP_VERSION = "0.16.2-ap1.9a"
|
||||||
DB_SCHEMA_VERSION = "014"
|
DB_SCHEMA_VERSION = "014"
|
||||||
APP_NAME = "jinkendo-kairo"
|
APP_NAME = "jinkendo-kairo"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user