Getting a 404
Closed this issue · 6 comments
KevinDJones commented
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.
yuka1984 commented
@KevinDJones
Have you changed TaskHubName from the default value?
KevinDJones commented
Indeed. Was not aware that would result in a 404 but that did the trick, thanks!
ElanHasson commented
I'm confused-- Why can't I change the HubName
from the default?
ElanHasson commented
I just debugged the issue-- The option to set HubName
is being ignored.
ElanHasson commented
To close the loop on this-- the change must go in host.json
:
{
"version": "2.0",
"extensions": {
"Dfhv": {
"HubName": "MarketPlaceTaskHub",
"OffsetHour": "5"
}
}
}
ElanHasson commented
Added PR: #9