Andrew Blick

Results 6 comments of Andrew Blick

One way to address this is to add support for Elasticsearch's "search_after" field: https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-search-after.html. Perhaps there could be an option to choose between "from" and "search_after" based paging for infinite...

It depends what you mean. If you mean that the data in the Elasticsearch index is being updated in real time, which is what causes duplicate items to appear by...

A user may see duplicate items when a previous item is added after one page is loaded but before the next. This can occur not only when a new item...

Thanks. I'd be happy to help with a PR if you can help me understand the right place to add this. I'm also curious what you think would be the...

I have a similar issue where I'm trying to use the AWS API to invoke a function. When I run my app locally with `slack run`, and then use a...

I was able to work around my issue by setting `defaultUserAgentProvider: () => ([["custom-user-agent"]] as UserAgent)` in the AWS client config. The issue was that the default `defaultUserAgentProvider` calls `os.release()`...