microsoft / DurableFunctionsMonitor

A monitoring/debugging UI tool for Azure Durable Functions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Standalone: Cannot see task details when Task Hub name is 'orchestrations'

rsirny opened this issue · comments

commented

It seems that there is some mix-up when fetching js and cs resources for details of tasks from Task Hub that is named orchestrations (I have other task hub called local which works fine). See attached screenshots for details.
orchestrations-main
orchestrations-detail
orchestrations-detail2

commented

I am not sure if this will be accepted as bug, or if there is something wrong with my setup, but it seems that task hub name cannot contain characters like _ or -. This could be used in API route so that there is no collision with task hub names.

Thanks for this, @rsirny .
It is true that orchestrations is a magic constant that is currently used by the frontend part as an anchor to parse the URL and do the routing. It is done so because the URL format is not known to the UI (there can be numerous different path prefixes) in advance.

The 'dirty' fix is obvious - make that anchor more distinctive. We can also start thinking of a more intelligent solution...

Fixed in v6.2.1, re-pushed under 6.2 tag. Pls, validate.