Alars-ALIT

Results 3 comments of Alars-ALIT

Ohh, but: > echo '{{ include "test.txt" "test=$outer"}}' | sigil outer=glider > ..gives output: > $outer > (when test.txt contains {{ $test }}) > What am i doing wrong?

Passing all the vars in is exactly what I wanted. Thanks alot!

Reducing the keep alive timeout of the httpClient in VertxNioAsyncHttpClient seems to solve this issue. HttpClientOptions options = new HttpClientOptions() .setSsl(true) .setKeepAlive(true) **.setKeepAliveTimeout(30);** The timeout defaults to 60s. When setting...