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

Tags: thejerf/suture

Tags

v4.0.6

Toggle v4.0.6's commit message

Verified

This commit was signed with the committer’s verified signature.
thejerf Jeremy Bowers
Do not examine the returned error for the context failure. Check the …

…context directly.

This closes Issue 77.

Issue 77 is that returning one of the distinguished context errors as a service's
error value caused the supervisor to intepret it as the context being cancelled.
This is not necessarily the case; it is easy for another context, possibly
a sub-context, to have its error bubble up to the service's return value.
Since the supervisor has its own reference to the context, it should instead
directly check if the context is canceled or not, rather than depending on the
error return from the service.

v4.0.5

Toggle v4.0.5's commit message

Unverified

No user is associated with the committer email.
Give up and move sutureslog to its own project.

v4.0.4

Toggle v4.0.4's commit message

Unverified

No user is associated with the committer email.
Fix the location of sutureslog.

v4.0.3

Toggle v4.0.3's commit message

Unverified

No user is associated with the committer email.
Add a slog-based logger people can use without writing it themselves.

v4.0.2

Toggle v4.0.2's commit message

Verified

This commit was signed with the committer’s verified signature.
thejerf Jeremy Bowers
README.md updates for v4.0.2.

v4.0.1

Toggle v4.0.1's commit message

Verified

This commit was signed with the committer’s verified signature.
thejerf Jeremy Bowers
Add documentation for version 4.0.1.

v4.0.0

Toggle v4.0.0'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 #43 from thejerf/jcontext

Upgrade to suture 4.0.

Verified

This tag was signed with the committer’s verified signature.
thejerf Jeremy Bowers

v3.0.2

Toggle v3.0.2's commit message

Verified

This commit was signed with the committer’s verified signature.
thejerf Jeremy Bowers
Fix issue #35: Supervisor can't panic if stop is called before Serve.

In hindsight, that's obvious. The contract is that Stop can be called
before Serve, and the service ought to notice that and not start up
in that case. Supervisors are not excluded from this policy.

v3.0.1

Toggle v3.0.1's commit message

Verified

This commit was signed with the committer’s verified signature.
thejerf Jeremy Bowers
Fix #34: Calling .Stop on a supervisor while trying to shut down serv…

…ice will not lose service shutdown.

When the supervisor shut down, the main loop is stopped and we go into
a cleanup loop. That cleanup loop could not receive notifications
that services sucessfully shut down, so it would delay until the
timeout and report a failed shutdown.
0