Drew Marsh
Drew Marsh
Currently `Database::runQuery` creates a new connection to the database every single time. This means you are starting a fresh session every time you run something which means that you can't...
I noticed that adding certain files for pre-cache exclusion wasn't actually having any effect and it appears to be due to the following: https://github.com/cansin/next-with-workbox/blob/e5a222a0c091a6523cf15d554c4d041a39099fda/index.js#L66-L75 This logic pays no attention to...
The following logic is currently used to calculate the value for `revision` when building the list of `additionalManifestEntries` that is passed down into the Workbox Webpack Plugin: https://github.com/cansin/next-with-workbox/blob/e5a222a0c091a6523cf15d554c4d041a39099fda/index.js#L8-L9 Unfortunately, `file`...
So I'm noticing something that seems like a potential anti-pattern where Azure client instances are not being cached and instead constantly being re-materialized all the way from configuration up every...
`ViewModelFactory::GetViewModel`, which has several overloads, is implemented as a synchronous method. However, it makes a call to `IDataStore::GetOne` which is an asynchronous method. It forces this call to be blocking...
Hi all, I was attempting to rebase PR #12 on top of the latest changes and ran into an interesting problem. A unit test was written for the EvenGridTriggerBinding::BindAsync method...
**Is your feature request related to a problem? Please describe.** Today, when relying on the emulator to do "full" OAuth emulation, the token that is returned is in the form...
## Bug Report The `observeChannels()` API does not propagate sharded pub/sub messages. #### Current Behavior Was switching some existing code that was using classic pub/sub to sharded pub/sub. When we...