yuka1984/DurableFunctionsHistoryViewer

Getting a 404

Closed this issue · 6 comments

I had this working a while back, but now every Durable Function project I add the reference to I am getting a 404 locally when trying to access http://localhost:7071/runtime/webhooks/dfhv/index/

Any tips as to what may be missing? I'm running dotnet restore before debugging the DF project.

@KevinDJones
Have you changed TaskHubName from the default value?

Indeed. Was not aware that would result in a 404 but that did the trick, thanks!

I'm confused-- Why can't I change the HubName from the default?

I just debugged the issue-- The option to set HubName is being ignored.

To close the loop on this-- the change must go in host.json:


{
  "version": "2.0",
  "extensions": {
    "Dfhv": {
      "HubName": "MarketPlaceTaskHub",
      "OffsetHour": "5"
    }
  }
}

Added PR: #9