8000 Tags · khanh2000/wal-g · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: khanh2000/wal-g

Tags

v0.2.14

Toggle v0.2.14's commit message
Do not check system identifier for PG 9.4 Fix wal-g#459

v0.2.13

Toggle v0.2.13's commit message
Update storages dependency

v0.2.12

Toggle v0.2.12's commit message
Fix deadlock with unclosed pipe of uploaded tarball (wal-g#399)

This problem does not affect buffered storages (like AWS) but can stuck unbuffered (like GCP).
Also this commit fixes problem of premature timeout in GCP storage during ReadObject().
This commit should help to resolve wal-g#266

v0.2.11

Toggle v0.2.11's commit message
add config files to int tests (wal-g#368)

* add config files to int tests

* add config files to int tests

* fix names in tests

* add previous pr's changes

* fix crypto_test config

* fix travis.yml

* fix travis.yml

v0.2.10a

Toggle v0.2.10a's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release binaries from proper directory

v0.2.10

Toggle v0.2.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Mention YC in readme

v0.2.9

Toggle v0.2.9's commit message
Fix lzo release binsuffix

v0.2.8

Toggle v0.2.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request wal-g#233 from x4m/fix_gcp

Fix ListFolder returning superflous '/' char at name of every object

v0.1.17

Toggle v0.1.17's commit message
Fix possible deadlock in background WAL uploader

Stop() of background uploader was acquiring upload scan mutex. Under
this mutex, it was disallowing new uploads and awaits finish of all
spawned uploads. But scan process has to acquire that mutex too.
In various race outcomes, upload could deadlock with Stop().

Now Stop() awaits for finished uploads with the released mutex.
Mutex guards that upload is not started if Stop() in progress.

With current mutex guards, we could relax all atomic operations
with bgUploader.parallelWorkers, but this requires extra refactoring,
now we should just fix the bug.

v0.2.7

Toggle v0.2.7's commit message
Moved backup finishing function from TarBall (wal-g#199)

0