##// END OF EJS Templates
Mercurial: fix stream ehxaustion problem....
Mercurial: fix stream ehxaustion problem. - webob odd implementation consumes the iterator. - this is a workardound fix to allows sending headers in first chunk, and rest of the stream later on.

File last commit:

r34:640a4096 default
r254:47313a3c stable
Show More
release.nix
15 lines | 164 B | text/x-nix | NixLexer
{ pkgs ? import <nixpkgs> {}
, doCheck ? true
}:
let
vcsserver = import ./default.nix {
inherit
doCheck
pkgs;
};
in {
build = vcsserver;
}