Jan Hutař

Results 34 comments of Jan Hutař

If on PostgreSQL, on DB lvl you can use `log_min_duration_statement`.

Just for a reference, mentioned Forklift is here: https://github.com/theforeman/forklift Relevant Forklift code is here: https://github.com/theforeman/forklift/tree/master/vagrant/lib Boxes definition is here: https://github.com/theforeman/forklift/tree/master/vagrant/boxes.d

Sorry, missed the ping. I'm running it from `forklift/containers/`, should I run from `forklift/`?

Hello. I think I just hit this: ``` TASK [linux-system-roles.network : Install packages] ***************************************************************************************************************************************************************************************** Wednesday 02 March 2022 11:12:06 +0100 (0:00:00.064) 0:00:12.621 ******* fatal: [f12-h32-b04-5039ms.rdu2.scalelab.redhat.com]: FAILED! => {"msg": "The conditional...

Hello @richm ! > That might be difficult, and probably unhelpful, if there are a couple of dozen variables required that are usually provided by setup or gather_facts: true. I...

Hello. We ran the performance test creating a tarball and with EGG from master, it took 42.17 seconds and with EGG from this PR it took 28.34 seconds. Also archive...

Terribly ugly solution, but this is what I'm going to do in one my container - might be handy: ``` RUN rpm -qa | sort >/before.txt \ && microdnf install...

It saves time (15 min -> 1sec in my case) only when debugging/developing a test - when running it again and again and when fixtures are not to blame. Actually...

Hello @gbarceloPIB . `comm -13 ...` worked for me, but I might be missing some use-case: ``` $ echo -e "one\nthree" | sort >before $ echo -e "one\ntwo\nthree" | sort...