summaryrefslogtreecommitdiff
path: root/examples/with-markdown-plugins
diff options
context:
space:
mode:
authorGravatar FredKSchott <FredKSchott@users.noreply.github.com> 2022-01-18 12:02:06 +0000
committerGravatar GitHub Actions <actions@github.com> 2022-01-18 12:02:06 +0000
commit6ccae4a47818080d0786a1b28147da95e1281f19 (patch)
tree86ed125a6fdc34d38ef3f14ec754f68d763d1362 /examples/with-markdown-plugins
parentc29f52f21c1faeabb34dc1f84842bcbbf7dd11e8 (diff)
downloadastro-6ccae4a47818080d0786a1b28147da95e1281f19.tar.gz
astro-6ccae4a47818080d0786a1b28147da95e1281f19.tar.zst
astro-6ccae4a47818080d0786a1b28147da95e1281f19.zip
[ci] collect stats
Diffstat (limited to 'examples/with-markdown-plugins')
0 files changed, 0 insertions, 0 deletions
ertions'>+112 * middleware/proxy: Kill goroutines on stop Ports caddy's https://github.com/mholt/caddy/commit/59bf71c2932c3b814a6a1211c492a1aa9f71d4a1 Excludes the proxy_test.go test part though. Fixes #644 * Add tests 2017-04-24Fix health race (#645)Gravatar Miek Gieben 6-28/+26 * Revert "middleware/proxy: Make Unhealthy a pointer (#615)" This reverts commit acbf522cebdcd53c26d153c1d9267d709ba75f64. * middleware/proxy: add proper locking This add the proper locking around `Unhealthy`. 2017-04-24Point users to deployment repo (#643)Gravatar John Belamaric 1-23/+3 2017-04-24Pprof listen (#639)Gravatar Chris O'Haver 4-9/+34 * add listen addr option * Add listen address option to pprof * There is configuration * code styling 2017-04-22msg.Service: add HostType() method (#627)Gravatar Miek Gieben 3-40/+114 This method parses the Host field in the service. It returns 1 or 3 things 1) it is a host 2) an IPv4 address or an 3) IPv6 address. This simplifies some code a bit and allows for 1 way of parsing the Host field. This *only* parse the Host field, Mail and/or Text values should be checked separately. We reuse the dns.TypeXXX values for this as to not invent anything new. 2017-04-21Fix go pprof lib link (#638)Gravatar Chris O'Haver 1-1/+1 2017-04-21Fix link to SkyDNS (#637)Gravatar Dominic 1-1/+1 Url was wrong 2017-04-20Fix TLS error message (#634)Gravatar Yue Ko 1-1/+1 Print corresponding error message when TLS initialization fails. 2017-04-20Add MAINTAINERS (#633)Gravatar Miek Gieben 2-0/+10 Add a MAINTAINERS file. It's not generated and not as elaborate (i.e. no focus areas) as the one prometheus uses. But it's a start. Generated with `git shortlog -s -n`, everyone with more than 5 commits. Docs are put in `Makefile.release`. Fixes #566 2017-04-19Clean up the tls middleware README (#631)Gravatar John Belamaric 1-4/+22 2017-04-19Update the various Kubernetes middleware README files. (#630)Gravatar John Belamaric 3-174/+21 2017-04-19Add fallthrough support for Kubernetes (#626)Gravatar John Belamaric 7-9/+122 * Add fallthrough support for Kubernetes This enables registering other services in the same zone as Kubernetes services. This also re-orders the middleware chain so that Kubernetes comes before other types, in order to make this work out-of-the-box. * Remove extra line 2017-04-18Tracing for gRPC Server (#619)Gravatar John Belamaric 6-11/+72 * Implements tracing in the native gRPC server * Undo some unnecessary changes * Properly revert trace/setup.go this time * Some very very basic tests * Remove warning for non-Trace middleware