Jon Schewe
Jon Schewe
This is likely the same problem as #1491. **Describe the bug** When running code that uses app.add_task() I get a runtime warning that the coroutine that was passed to the...
It would be nice to not need to catch Exception. Based on the methods that are called from writeObject, one should only need to throw IOException, not Exception. readObject and...
If I have a test that uses "@Theory" instead of "@Test", can I use rerunner-jupiter?
It would be nice if there was an option to not specify the cipher and just let scp use it's default cipher. Also it would be good to stop using...
The ssh maintainers have deprecated the use of scp. By removing the use of scp there is no longer a need for a cipher argument. Issue #4, #12
First thing to note is that when I run commands against vault I need to specify "/data/" before the name. ``` vault-cli delete-all import_test/data/hvac-test ``` instead of just ``` vault-cli...
Need to include '.' before the name to keep from picking a zone based on the end of the hostname that isn't the subdomain. This fixes #30
I have zones "company.com" and "prt.company.com". If I call Server.suggest_zone('foo-prt.company.com.') I get back the zone "prt.company.com" instead of "company.com". Looking at https://github.com/outini/python-powerdns/blob/master/powerdns/interface.py#L241 it seems that you need to modify it...
The default return value of get_record should probably be None. Instead of "" at https://github.com/outini/python-powerdns/blob/master/powerdns/interface.py#L244 this should be None. Then one can easily check if there is a valid return...
- make posix shell compliant - add some error checking to the commands - use a variable for the amount of time to allow admin - support multiple users being...