when I have the map_tasks executions expanded, e.g...
# ask-the-community
l
when I have the map_tasks executions expanded, e.g. the running, succeeded tabs, it will throw this error on update
s
cc @Jason Porter
l
happens when a task will move from one status the other e.g. from initializing to running if I have running expanded
k
mind sharing the sample code you are running
l
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
t
@Kevin Su mind revisiting this please?
k
looking
it’s flyteconsole issue. you can reopen the tab to see the new status.
l
bug report 🐛
152 Views