bundlewrap icon indicating copy to clipboard operation
bundlewrap copied to clipboard

Config management with Python

Results 131 bundlewrap issues
Sort by recently updated
recently updated
newest added

https://github.com/bundlewrap/bundlewrap/issues/557 was relatively easy to fix/avoid, but there might be other situations where Faults are resolved automatically and then displayed. For example, we got one report for `bw apply`: The...

This fixes #514 by showing a summary of skipped items at the end for all items that provide a more detailed description of the reason they were skipped. This was...

When using `repr()`: ``` TransportException("SSH transport error while running 'true' on '10.22.33.53': ssh: connect to host 10.22.33.53 port 22: No route to host\r\n") ``` bundlewrap should strip trailing/heading newlines from...

https://docs.bundlewrap.org/repo/metadata.py/ - `metadata_reactor.provides` is missing - It says `The parameter metadata is not a dictionary but an instance of Metastack.` That’s wrong now, it’s a `NodeMetadataProxy`. But we probably should...

Let's say you have multiple hooks that each have `def test()` or `def test_node()` in them. Currently, the only way to mark `bw test` as failed is to raise an...

Statt ``` try: io.activate() do_sth() finally: io.deactivate() ``` Wäre in python3 die semantisch schönere Variante ein Context Manager: ``` with io: do_sth() ``` beides lässt sich gut parallel anbieten.

In `items/files.py`, we have this: ``` @cache def check_download(url, timeout): try: head(url, timeout=timeout).raise_for_status() except Exception as exc: return exc else: return None ``` The [docs of Requests](https://docs.python-requests.org/en/latest/user/quickstart/#redirection-and-history) say: > By...

``` INFO - Doc file 'guide/toml.md' contains an unrecognized relative link '../api/#bundlewraputilsfault', it was left as is. Did you mean 'api.md#bundlewraputilsfault'? INFO - Doc file 'guide/locks.md' contains a link 'env.md#BW_IDENTITY',...