when I have the map_tasks executions expanded, e.g...
# flyte-support
n
when I have the map_tasks executions expanded, e.g. the running, succeeded tabs, it will throw this error on update
t
cc @late-eye-50215
n
happens when a task will move from one status the other e.g. from initializing to running if I have running expanded
g
mind sharing the sample code you are running
n
Copy code
import typing

import time
from flytekit import task, workflow, map_task

@task
def my_mappable_task(a: int) -> str:
    time.sleep(a * 2)
    return str(a)


@workflow
def my_wf(x: typing.List[int]) -> typing.List[str]:
    return map_task(my_mappable_task)(
        a=x
    )
basic reproducible example modified from the map_task docs
w
@glamorous-carpet-83516 mind revisiting this please?
g
looking
it’s flyteconsole issue. you can reopen the tab to see the new status.
n
bug report 🐛
152 Views