Merge pull request #2176 from citusdata/fix-appveyor-real-time-flakyness

Increase deadlock timeout so we get fewer signals
pull/2178/head
Önder Kalacı 2018-05-17 09:49:11 +03:00 committed by GitHub
commit cb634bf113
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -294,7 +294,7 @@ ROLLBACK;
-- Test cancelling behaviour. See https://github.com/citusdata/citus/pull/1905. -- Test cancelling behaviour. See https://github.com/citusdata/citus/pull/1905.
-- Repeating it multiple times to increase the chance of failure before PR #1905. -- Repeating it multiple times to increase the chance of failure before PR #1905.
SET client_min_messages TO ERROR; SET client_min_messages TO ERROR;
alter system set deadlock_timeout TO '1ms'; alter system set deadlock_timeout TO '50ms';
SELECT pg_reload_conf(); SELECT pg_reload_conf();
pg_reload_conf pg_reload_conf
---------------- ----------------

View File

@ -302,7 +302,7 @@ ROLLBACK;
-- Test cancelling behaviour. See https://github.com/citusdata/citus/pull/1905. -- Test cancelling behaviour. See https://github.com/citusdata/citus/pull/1905.
-- Repeating it multiple times to increase the chance of failure before PR #1905. -- Repeating it multiple times to increase the chance of failure before PR #1905.
SET client_min_messages TO ERROR; SET client_min_messages TO ERROR;
alter system set deadlock_timeout TO '1ms'; alter system set deadlock_timeout TO '50ms';
SELECT pg_reload_conf(); SELECT pg_reload_conf();
pg_reload_conf pg_reload_conf
---------------- ----------------

View File

@ -179,7 +179,7 @@ ROLLBACK;
-- Test cancelling behaviour. See https://github.com/citusdata/citus/pull/1905. -- Test cancelling behaviour. See https://github.com/citusdata/citus/pull/1905.
-- Repeating it multiple times to increase the chance of failure before PR #1905. -- Repeating it multiple times to increase the chance of failure before PR #1905.
SET client_min_messages TO ERROR; SET client_min_messages TO ERROR;
alter system set deadlock_timeout TO '1ms'; alter system set deadlock_timeout TO '50ms';
SELECT pg_reload_conf(); SELECT pg_reload_conf();
BEGIN; BEGIN;