codermrrob

Results 14 comments of codermrrob

Worked for me, although I just changed line 173 in `JobsController.cs` ``` await Scheduler.AddJob(BuildJob(JobBuilder.Create().StoreDurably()), replace: false) ``` to : ``` await Scheduler.AddJob(BuildJob(JobBuilder.Create().StoreDurably(true)), replace: false); ```

It is correct that the ability to clear or clean the storage while developing durable functions is really necessary. It is laborious to rely on deleting files - I must...

I am seeing this with 4.3.2 but as a `severityLevel` 2 traces entry in app insights. But I think it might be expected? I am running a queue triggered function,...

Same issue - never any problem publishing Azure Functions but this morning : ` Unable to update the Functions Extensions Version in Azure Application Settings because you may not be...

@blueww When I previously tried to delete all files the problem I had, at least when running with Visual Studio, the files were locked and I had to close VS...

Actually for durable function development all I really need to do is clean all the data within the task hub that the durable function uses. If I can clear all...

The default should be to respect private browsing, with opt-out option if somebody wants to record that. Mostly people will not want to record private browsing time, which by default...

@IngwiePhoenix you seem to have two problems there, missing cuda and the LLaMATokenizer error. I found this guide to be really helpful : https://www.reddit.com/r/LocalLLaMA/comments/11o6o3f/how_to_install_llama_8bit_and_4bit/?utm_source=share&utm_medium=web2x&context=3 Including a comment straight after concerning...

For me was because of nested configuration setting, forgot it wasn't supported....

#104 now has some specific detail in this comment thanks to @bosmart, [https://github.com/fastai/fastprogress/issues/104#issuecomment-1482350888](url)