Skip to content

Tasks Returning \u0000 and /u0000 keeps the execution stuck in RUNNING state. #10326

Description

@caxefaizan

Describe the issue

Reported in version 0.22.x and validated in 0.23.7 as well

Reproducible Steps:
with nodejs

id: test
namespace: staging
tasks:
  - id: test
    type: io.kestra.plugin.scripts.node.Script
    containerImage: '{{kv("DOCKER_IMAGE")}}'
    script: |
      const Kestra = require('@kestra-io/libs');
      const result = '\u0000'
      Kestra.outputs({ result: result }); 

with python

id: eland_604547
namespace: company.team
labels:
  customer: synsel

tasks:
  - id: test
    type: io.kestra.plugin.scripts.python.Script
    beforeCommands:
      - pip install kestra
    script: |
      from kestra import Kestra
      result = '\u0000'
      Kestra.outputs({ result: result }); 

Had to kill the task

Image But i still see RUNNING state in logs Image

Environment

  • Kestra Version: 0.23.x

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

Type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions