https://flyte.org logo
#ask-the-community
Title
# ask-the-community
l

Laura Lin

12/15/2022, 1:11 AM
when I have the map_tasks executions expanded, e.g. the running, succeeded tabs, it will throw this error on update
s

Samhita Alla

12/15/2022, 5:44 AM
cc @Jason Porter
l

Laura Lin

12/15/2022, 4:19 PM
happens when a task will move from one status the other e.g. from initializing to running if I have running expanded
k

Kevin Su

12/15/2022, 6:49 PM
mind sharing the sample code you are running
l

Laura Lin

12/15/2022, 7:18 PM
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

Tyler Su

12/21/2022, 5:51 PM
@Kevin Su mind revisiting this please?
k

Kevin Su

12/22/2022, 12:16 AM
looking
it’s flyteconsole issue. you can reopen the tab to see the new status.
l

Laura Lin

01/11/2023, 1:45 AM
bug report 🐛