Mario Tacke

Results 13 comments of Mario Tacke

You'd probably scale this like any other web socket implementation, with sticky sessions on your load balancer/proxy.

This does not appear to be an issue with this library. `redux-electron-ipc` does not use any `fs`/file-system calls in its API. I would look into how your main/window is set...

@officer-rosmarino , in the same boat right now. Did you ever figure it out? Accessing `.client.pool` throws an exception `this.pool.query is not a function`. I assume this is due to...

My team is running into the same thing right now. This is our model configuration: ``` builder .Property(x => x.CreatedOn) .HasDefaultValueSql("NOW(6)") .ValueGeneratedOnAdd(); builder .Property(x => x.UpdatedOn) .HasDefaultValueSql("NOW(6)") .ValueGeneratedOnAddOrUpdate(); ``` The...

I just tested setting the `HasDefaultValueSql` parameter to `NOW(6) ON UPDATE NOW(6)` which appears to work and generates the proper DDL. **Workaround** ``` builder .Property(x => x.CreatedOn) .HasDefaultValueSql("NOW(6)") .ValueGeneratedOnAdd(); builder...

I just ran into this issue as well. Running `firebase-functions-test`@`0.2.1`. My config is always `{}`; `mockConfig` is called before any other requires. Any ideas how to fix this?

I got mine to work by trying to set the config values manually and seeing this error: `Error: Cannot set to reserved namespace firebase`. I tried setting the api key...

Just ran into the same in a 3 manager cluster. For me, it turned out that one of my managers became unresponsive. I tried to demote it (which was unsuccessful...

Thanks all for finally addressing this. However, I must say I've moved on from this project since I filed this issue it in 2018. Going to un-assign myself.

I'd like to capture any `FirebaseError: Missing or insufficient permissions.` when using `useFirestoreConnect`. Is this currently possible? My use case is "trying to access documents you shouldn't". I'd like to...