Sebastiaan Huber
Sebastiaan Huber
This pull request includes a - [ ] Bug fix - [x] New feature - [ ] Translation The following changes were made - Add the possibility to reuse existing...
Consider the following simple script: ```python #!/usr/bin/env python import asyncio import aiormq X_EXPIRES = 32767 async def main(): # Perform connection connection = await aiormq.connect("amqp://guest:guest@localhost:5672/") # Creating a channel channel...
When I use `git_branch_name()` I get `Call to undefined function git_branch_name()` however looking at the code it does seem to be implemented. Am I missing something?
The exponential back off retry mechanism of the engine for calculation jobs has greatly improved the robustness with respect to temporary recoverable problems such as a loss of internet connection...
PR #5054 added the functionality to allow a single REST API instance to serve content of all profiles. This is useful in certain cases, but one might not want to...
Fixes #5535 When appending the `Node` first and the `Group` second when joining the two, the querybuilder will return a row for each node in the group as opposed to...
With the new feature of allowing to implement new storage backends through plugins, the pytest fixtures need to become more flexible. They are currently hard-coding the profile and backend for...
Currently, the sandbox folders are in a subfolder of the directory used for the file repository. These are not automatically cleaned and over time can accumulate old files. It would...
As such, it would fail for a profile with any other storage backend. The functionality should really be implemented on `StorageBackend.erase()` (which doesn't exist yet) and `Config.delete_profile` should simply call...
Commit 2a2bf21dc6b49d7783795f14d1de6d1fdcff007b should be reverted once `importlib-metadata` releases a new version that fixes the problem that introduced it: https://github.com/python/importlib_metadata/issues/351