Alexander Piskun

Results 222 comments of Alexander Piskun

> Keep the existing button for "Integrations" > * Add some explanations that developers can either upload an app or just use this flow to promote their software that integrates...

> Facing the same problem here. We can trace the calls being made [here](https://github.com/nextcloud/integration_onedrive/blob/aefa8c5c6c3327fc2376974cd3ad6d8369281931/lib/Service/OnedriveAPIService.php#L149) which indeed does NOT implement any retrial. Tracing things upstream, the client gets created [here](https://github.com/nextcloud/server/blob/601b3b16cb139a919f1efdadd2dbc68f2c758193/lib/private/Http/Client/ClientService.php#L58) and...

> The retry handler will only retry for transient errors (429/503). If we get into the situation of the token expiring before the next retrial, the client will get 403/401...

If it's easier for you, we can also accept the library's dependency.

Then only changed part is this: ```php private function getKiotaHandlerStack(): HandlerStack { $handlerStack = HandlerStack::create(); $handlerStack->push(KiotaMiddleware::retry(), RetryHandler::HANDLER_NAME); return $handlerStack; } ``` ```php $options = [ 'stream' => true, 'timeout' =>...

Good day. Yes, there are plans to move the binary wheel assembly for the next version to GitHub, and I would have done it earlier, but from the information that...

The problem is that on macOS all `libheif` packages are installed via **brew** from binary brew bottles, and to change that someone would need to write separate build actions for...

I moved this project away from using homebrew for building wheels, the new published version now supports older versions of MacOS.

> needed to ensure that line 204 in folder_paths.py: `if full_folder_path in paths:` works properly on all OS. In my opinion, a good start would be to modify existing tests...

Then this is not quite the correct implementation for this. There can be many be several records with `is_default` for different folder paths, it is impossible to determine which of...