Skip to content

Commit 53a096f

Browse files
committed
backporting: fix running in openshift
Signed-off-by: Tomas Tomecek <[email protected]>
1 parent 2328f2e commit 53a096f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

beeai/agents/backport_agent.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,10 @@ class Task(BaseModel):
252252
dist_git_branch=backport_data.branch,
253253
cve_id=backport_data.cve_id,
254254
)
255-
input.unpacked_sources, local_clone = prepare_package(
255+
unpacked_sources, local_clone = prepare_package(
256256
backport_data.package, backport_data.jira_issue, backport_data.branch, input
257257
)
258+
input.unpacked_sources = str(unpacked_sources)
258259

259260
async def retry(task, error):
260261
task.attempts += 1

0 commit comments

Comments
 (0)