burkasaurusrex

Results 36 comments of burkasaurusrex

Agreed that this would be very helpful. In addition to routing being difficult, it's also difficult to instrument application insights to track a request as it moves through queues. I...

It looks like there's been some movement here. When issuing this command in PS6: ```powershell Invoke-RestMethod https://httpbin.org/deflate ``` You get this error now: ```powershell Invoke-RestMethod : The archive entry was...

Would it make sense to have any response that is brotli encoded throw the same `System.IO.InvalidDataException` that deflate throws? At least until brotli is natively supported in `HttpClient`?

Note to self, need to decide on what should constitute "watched": 1. `session_history.view_offset / session_history_metadata.duration >= plexpy.CONFIG.MOVIE_WATCHED_PERCENT` or 2. `d / (session_history_metadata.duration / 1000) >= plexpy.CONFIG.MOVIE_WATCHED_PERCENT` Might need to be...

Definitely a very strange error, especially since TheMovieDB doesn’t rate limit. @mza921 I think to get to the bottom of this, we may need to enable the debug mode in...

Also weird that `tmdbv3api` is trying to connect to `api.themoviedb.com` on port 80 instead of port 443

https://github.com/AnthonyBloomer/tmdbv3api/blob/514e37d81d4aa399fb73de65edc00c465205cd54/tmdbv3api/tmdb.py#L30 `tvdbv3api` is pointing to an http endpoint instead of an https endpoint. My working hypothesis is that some environments are failing to get the redirect to https on occasion.

It looks like `tmdbv3api` also has a cache that might be worth enabling

I’m hoping that changing the HTTP endpoint to an HTTPS endpoint will fix this though. I just opened an issue on that repo as well.

Also, I haven’t looked at the code in a while, but last I looked it wasn’t reusing the same `tmdbv3api` object? It was reinstantiating the object for every list? If...