Jacob Champion
Jacob Champion
@Eulerizeit This currently only shows up if you do *not* dump and restore. It's not visible in the master pipeline's `pg_upgrade` test job because, once you dump and restore, the...
Looks like Concourse caught something: ``` subprocess.CalledProcessError: Command 'psql 'funny"db'"'"'with\\quotes' -t -c " CREATE EXTENSION IF NOT EXISTS gp_replica_check "' returned non-zero exit status 1 ```
pip apparently [doesn't try to actually resolve dependencies](https://github.com/pypa/pip/issues/988) -- it's first-come, first-serve -- so 0.7.4 does not fix this for me (since autobahn still declares `txaio>=1.1.0`).
@meejah `> pip install -r requirements.txt` with `requirements.txt`: ``` autobahn~=0.10.7 autobahntestsuite~=0.7.4 ``` Switching the order "fixes" the problem, obviously, but more complicated projects than mine might not have the option....
> I think we should pin all dep versions to exact versions My two cents, worth what you paid for it... I have dealt with the "pinned versions" culture with...
> @jchampio that can't happen, since autobahntestsuite is supposed to be installed in it's own virtualenv @oberstet I have installed it in its own virtualenv, alongside the other pip modules...
Hi @DimCitus, this week has been crazy and I haven't gotten a chance to look at it yet. I think the main question I have is what the strategy should...
Added a squash commit to the end of the patchset. This fixes an issue with our transaction handling in the primary case (the connection was previously being closed before a...
We were also dabbling with testing other valid primary states, such as `wait_primary`. But all the inherent races involved with dropping a secondary at the same time that a primary...
> Do you want to investigate in that? Sure! No promises on a quick turnaround, though; a couple of other plates are being juggled right now. 😄