golang-github-cloudflare-tableflip 1.2.1~git20200514.4baec98-4 source package in Ubuntu

Changelog

golang-github-cloudflare-tableflip (1.2.1~git20200514.4baec98-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Set upstream metadata fields: Bug-Database, Bug-Submit.
  * Apply multi-arch hints. + golang-github-cloudflare-tableflip-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Tue, 22 Nov 2022 23:44:03 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-cloudflare-tableflip_1.2.1~git20200514.4baec98-4.dsc 2.4 KiB 571136400156c3a297b1e1227a850ead7cfc6e328f2ddc19aeab26b9935cf825
golang-github-cloudflare-tableflip_1.2.1~git20200514.4baec98.orig.tar.gz 16.0 KiB ce4b09b2aea3f7f6d77b0df9cdb22d350c9be50dc7161db596486b2af88ac99b
golang-github-cloudflare-tableflip_1.2.1~git20200514.4baec98-4.debian.tar.xz 2.9 KiB 036232d3ebf10a166e95fa69904fcd42236ad4b3df918a11dc8b592f2307b168

No changes file available.

Binary packages built by this source

golang-github-cloudflare-tableflip-dev: Graceful process restarts in Go (library)

 It is sometimes useful to update the running code and / or configuration of a
 network service, without disrupting existing connections. Usually, this is
 achieved by starting a new process, somehow transferring clients to it and
 then exiting the old process.
 .
 There are many ways to implement graceful upgrades. They vary wildly in the
 trade-offs they make, and how much control they afford the user. This library
 has the following goals:
  - No old code keeps running after a successful upgrade
  - The new process has a grace period for performing initialisation
  - Crashing during initialisation is OK
  - Only a single upgrade is ever run in parallel