Andy Zhang
Andy Zhang
@nsf just want to say thank you for this project. It has been a very handy tool up until this point.
I have a problem which I think is related to this: #892 Turns out the chart is helm's incubator repo does not support this settings yet. After I added this...
Glad it worked out for you. I have a few questions around your approach: - I did a similar change in the helm chart but with a different namespace label...
I too am looking for the ability to have one EBS per Manager pod. I was able to get EFS working properly and one thing to note about it is...
By any chance you are making a call to a url? e.g http://localhost:8888? I'm adding `Illuminate\Foundation\Testing\ApplicationTrait` to FeatureConext and making calls like normal laravel test: `$this->call($httpMethod, $this->resource, json_decode($payload->getRaw(), true), [],...
@praditha It maybe even easier to do this in 5.2. There's a trait `Illuminate\Foundation\Testing\Concerns\MakesHttpRequests` which should allow you to make all kinds of requests. But I haven't tested this yet....
@praditha I'll give it a try over the weekend. In the mean time give this a try in `FeatureContext.php`: ``` public function __construct() { global $app; $this->app = app(); $app...
@rvdwijngaard with echo 3.0+ you can create a middleware to start tracking ``` var xr = func() echo.MiddlewareFunc { return echo.WrapMiddleware(func(h http.Handler) http.Handler { return xray.Handler(xray.NewFixedSegmentNamer(".com"), h) }) } ```
How exactly should I install this in airflow? I know the doc is in WIP but I don't see anything in code doc either. So far I tried `pip install...
I managed to install this for airflow 1.10.*, I have to compile the backport packages from the airflow source repo with ``` ./scripts/ci/ci_prepare_packages.sh cncf.kubernetes ``` Then install with pip ```...