Sotiris Nanopoulos

Results 9 issues of Sotiris Nanopoulos

I have created Windows container images based on Windows server core. Would you be interested if I did a pr and we could upload them to the dockerhub of the...

Hey folks, On newer windows releases we added support for [ProcessSocketNotifications](https://docs.microsoft.com/en-us/windows/win32/winsock/winsock-socket-state-notifications) which provides a scalable alternative to `WSAPoll` and `Select` API. Libevent consumers running on newer Windows releases will benefit...

os:windows

Fixes #98 This adds two new command line flags: * `-git`: Which controls if paths are treated as versioned paths * `-repo`: Which set the path to the git repository...

enhancement

The current way we set annotations only allows for subroutines to be used in a single vcl state function. Fastly is allows that and it also leads to copy-pasting functions...

enhancement

The way we use VCL and manage dependencies at $company is by having them versioned in a separate git repository and I would like to build a git file resolver...

Hey @ysugimoto I wanted to see if we could decouple the release process from the pr merge process. The way we consume Falco is by having an fork of main...

In falco you need to add `@recv` as a comment on top of the funciton but some subroutines can be used in multiple functions if they only use `req` object...

In the following scenario Falco fails but Fastly succeeds: ``` # depenency1.vcl sub foo { set req.backend = httpbin_org; } ``` ``` # main.vcl backend httpbin_org { .connect_timeout = 1s;...

When a baseplate server is shutting down in k8s * baseplate calls func (srv *Server) Shutdown(ctx context.Context) error which does the following: * Shutdown works by first closing all open...