Ron Zeidman

Results 33 comments of Ron Zeidman

Why replace the native HttpClientModule? Can't you implement the csrf token addition with an interceptor?

It seems like an old issue. Is it resolved already (or planned to be)? I'm encountering a similar issue (might be my own leaky code that does not close some...

Hi, Thanks for the response. I've found the leak in my code causing the issue but I still have about 5 change-feeds per connected user (notifications from various tables) and...

Can someone provide relevant documentation and a bit of guidance to make it work?

Currently using the following workaround (doesn't support material css): ```scss .direction-rtl { direction: rtl; .select2-container { .select2-selection--single { .select2-selection__rendered { padding-right: 8px; padding-left: 20px; } } .select2-selection--multiple { .select2-selection__rendered {...

Something like this: ```java Document doc = new Document(...); float yPos = topMargin; doc.add(paragraph1); yPos += paragraph1.getHeight() doc.add(paragraph2); yPos += paragraph2.getHeight() doc.add(paragraph3); yPos += paragraph3.getHeight() int pageNum = 0; PDDocument...

of course there is, you can set a connection pool, `buffer` is the min number of connections: ```ts r.connectPool({ db?: string; // default 'test' user?: string; // default 'admin' password?:...

never encountered that kind of error before but I'm guessing if you set a ping interval you can avoid it, ping interval is in milliseconds and it sends a ping...

I couldn't reproduce this error field. tried listening to a table that got a conflict error and I got nothing in the "changes" feed...

Found it, `returnChanges` should be `"always"` for me to see it.