Brandon Ros

Results 284 comments of Brandon Ros

We're supposed to be able to disable `hostBuilder:reloadConfigOnChange` via `appsettings.json` or `-e DOTNET_hostBuilder:reloadConfigOnChange=false` but neither have worked for me. What is very strange is... I am working on a Java...

https://github.com/Azure/azure-functions-host/issues/2976 Does this fix your issue?

Adding `"fileWatchingEnabled": false` to host.json doens't fix my problem. `-e AzureFunctionsJobHost__FileWatchingEnabled=false` doesn't fix the problem.

Do we know why despite the Docker container running as `amd64` (not `arm64`), something somewhere inside these Azure function host specific Docker images is "detecting" `arm64` (which results in the...

I agree with you 100% that this should be configurable. The fact that it doesn't/isn't kind of shows nobody is using this on Apple M1 lol Do you know if...

fixed in https://github.com/liady/ChatGPT-pdf/pull/28/files

![image](https://user-images.githubusercontent.com/8949910/102170086-8fc90d80-3e61-11eb-837f-4625796dbd03.png)

```rust use std::{error::Error, sync::Arc}; use async_std::net::TcpListener; use async_tungstenite::tungstenite::Message; use flume::unbounded; use futures::{StreamExt, TryStreamExt}; use signalrs_next::{server::{hub::builder::HubBuilder, Server, response::ResponseSink}, protocol::Invocation}; async fn add_handler(a: i32, b: i32) -> i32 { a + b...

This is preventing me from using this otherwise very cool looking library. All sorts of build errors.