Jathan McCollum

Results 191 comments of Jathan McCollum

For the record, this has come up a couple times recently. This is another good case for moving to the driver model. By the looks of the prompt style it's...

Hi! There is not currently a retry feature in Commando. Do you have a use-case that you can illustrate that might help us come up with an implementation? On Sat,...

@etern4ever Thanks for that. In the meantime, have you tried upping timeout? Commando defaults to 30 seconds, but you can pass `timeout=n` to the constructor at runtime.

Riverbed offers a developer edition of the Stingray virtual appliance for free: http://www.riverbed.com/products-solutions/free-stingray-download.html

We'll get the pull request (#140) for `ReactorlessCommando` in first, then modify `run_cmds` to use this?

Can you clarify what you mean by bubble up? Do you mean handling them "somehow"? Also, is this potentially something that could already be covered by overloading `Commando.errback()`?

@supertylerc The other thing is combining that with `with_errors=False`, right?

There are currently `270` calls to `log.msg` in the Trigger core as of Trigger 1.4.9beta: ``` bash $ grep -hcr log.msg . | awk '{total = total +$1}END{print total}' 270...

In the core, because we are leveraging Django Extensions, there is a underlying ability to graph model database relationships using [`nautobot-server graph_models`](https://django-extensions.readthedocs.io/en/latest/graph_models.html). However I wanted to point out that this...

The use-cases and implementation for 1-to-1/many is pretty straightforward. It would be good to have more concrete use-case examples for required many-to-many relationships before we try to tackle that.