Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-04-09 | Merge branch 'hotfix/3.2.1' into develop | martinko | |
2014-04-09 | v3.2.1 | martinko | |
2014-04-09 | moved psycopg2 reference from scripting module to actual script using it | martinko | |
2014-04-09 | skytools.scripting: moved psycopg2 import where it belongs | martinko | |
2014-04-09 | Merge commit 'bbcd65e4e74e705e0cc07a549bda73e37e20012a' into hotfix/3.2.1 | martinko | |
2014-04-09 | Merge branch 'develop' into hotfix/3.2.1 | martinko | |
2014-04-08 | skytools.timeutil: fixed for Python versions less than 2.7 | martinko | |
2014-04-07 | setup_skytools.py: fixes | martinko | |
2014-04-07 | libusual updated to the latest version (that is already 9 months old) | martinko | |
2014-04-03 | Merge remote-tracking branch 'gamato/master' | Marko Kreen | |
2014-04-02 | Update setup*.py to point to correct license. | Marko Kreen | |
2014-04-02 | Merge branch 'release/3.2'skytools_3_2 | martinko | |
2014-04-02 | Merge branch 'release/3.2' into develop | martinko | |
2014-04-01 | bumped up version to 3.2 | martinko | |
let's get trendy ... it's no good to be stuck on same minor version for so long ;-) and it actually did not make sense ... quite a few important features appeared | |||
2014-03-17 | bumped up version to 3.1.6rc2 | martinko | |
2014-03-17 | NEWS: updated | martinko | |
2014-03-17 | londiste.upgrade_schema: fixed condition_timing vs action_timing | martinko | |
2014-03-17 | typos | martinko | |
2014-02-20 | bumping up versions in preparation for upcoming release | martinko | |
2014-02-20 | Merge branch 'master' of https://github.com/markokr/skytools into develop | martinko | |
2014-02-19 | londiste.create_partition: fixed to avoid deadlocks from concurrent workers | martinko | |
2014-02-18 | Merge pull request #29 from andrewsw-janrain/master | Marko Kreen | |
quote sequence names | |||
2014-02-18 | scripts/data_maintainer.py: fixed to survive null in stats column of sql_modify | martinko | |
2014-02-04 | quote sequence names | Andrew Sackville-West | |
fixes a bug where _load_elem fails on sequences in schemas that start with non-alpha characters. | |||
2014-02-03 | Merge branch 'master' of https://github.com/markokr/skytools into develop | martinko | |
Conflicts: debian/changelog | |||
2014-01-30 | skytools.scripting: allow to specify exception(s) to suppress for a grace period | martinko | |
It is possible to provide a list of exception names, or reserved keyword “ALL”. | |||
2014-01-28 | skytools.scripting: added options to lower log level for exceptions | martinko | |
The idea is to suppress error level log messages for a grace period in order not to pollute logs with transient errors that nobody would act upon. | |||
2014-01-28 | Merge branch 'feature/retriable_execute' into develop | martinko | |
2014-01-28 | cleaned up, even more robust, added logging, feature inactive by default | martinko | |
2014-01-28 | made more robust, returns retry count and valid cursor | martinko | |
2014-01-28 | another iteration from past | martinko | |
2014-01-28 | simple retriable execute (for sql) | martinko | |
the idea is that db calls occasionally break due to transient issues and we’d rather have the calls retried before raising exceptions etc | |||
2014-01-28 | londiste.handlers: removed duplicate debug logging | martinko | |
2014-01-23 | pgq.cascade.admin: do not allow subscribing to itself (same node) | martinko | |
2014-01-13 | pgq.localconsumer: added file path check on config load | martinko | |
2013-12-18 | scripts/data_maintainer.py: fixes | martinko | |
2013-12-17 | scripts/data_maintainer.py: latest code cleanup | martinko | |
2013-12-16 | Merge branch 'develop' of skype-git:/git/users/petr.jelinek/skytools-3 into ↵ | martinko | |
develop | |||
2013-12-07 | updated londiste.upgrade_schema with fix for londiste.table_info trigger issue | martinko | |
2013-12-06 | fixed londiste.table_info trigger issue | martinko | |
2013-12-03 | Merge branch 'hotfix/3.1.5.4'3.1.5.4 | martinko | |
2013-12-03 | Merge branch 'hotfix/3.1.5.4' into develop | martinko | |
2013-12-03 | debian/changelog: updated | martinko | |
2013-12-03 | londiste.handlers.dispatch: fixed "ignore events aiming at obsolete ↵ | martinko | |
partitions" bug but really :-) | |||
2013-12-03 | sql/pgq: tag pgq.batch_id_seq as dumpable (extension) | Marko Kreen | |
That case was broken in old 9.1 releases, fixed since 9.1.7. The sequence will be owned by extension and without tagging it will not be dumped in data dump. | |||
2013-12-03 | python/pgq: fixes (event & walker) | martinko | |
2013-12-01 | DataMaintainer can use csv file as source. | Petr Jelinek | |
2013-11-11 | python/pgq: fixes (event & walker) | martinko | |
2013-11-06 | set_tcp_keepalive: simplify, enable win32 | Marko Kreen | |
The code got messy, clean it up. Also, seems like Python 2.7+ support SIO_KEEPALIVE_VALS, enable it's usage. | |||
2013-11-05 | skytools.set_tcp_keepalive: add compat with newer OSX | Marko Kreen | |
Newer OSX has Linux-style TCP_KEEPIDLE/TCP_KEEPCNT socket options, but TCP_KEEPIDLE is missing, instead it has old well-hidden TCP_KEEPALIVE option. So it branches into Linux section and fails there. This patch detects every Linux option separately and uses TCP_KEEPALIVE instead TCP_KEEPIDLE on Darwin. It does expect that Python is compiled against current OSX versions, and headers match running kernel. So if option is defined in 'socket' module, it works. Reported-by: Rob Fowler |