Guillaume Poulin
Guillaume Poulin
Yeah, I think it makes sense. Having some clear message would help. Something like `Cancelling '+{task}'. Press 'ctrl-c' to force terminate the task`.
I imagine the need for that would be way less if https://github.com/earthly/earthly/issues/1575 was implemented.
What would be the possible interaction with https://github.com/earthly/earthly/issues/1890 ? Would it allow to also pass target/artifact implicitly? For example: a/Earthfile ```earthfile DO_SOMETHING: COMMAND ARG --target deps FROM deps RUN echo...
Should COMMAND also support list? The example I have is a python monorepo with multiple shared library. The application might reference multiple shared library. As part of the application building,...
I was more thinking about a list of target, something along the line of: ```earthfile MY_COPY: COMMAND ARG --list --artifact LIBS FOR LIB N LIBS COPY LIB libs/ END ```
Would that overlap with `BUILD`?
@wouterdebie any idea on how you plan to proceed? I started to port over spotify/luigi#747 and snakebite is currently a blocker. I had a fast look at snakebite code and...
@Tarrasch I was under the impression that it was a soft requirement for Luigi, but hard requirement for "Hadoop Luigi", since all the Hadoop tests were failing on `import snakebite`....
@Tarrasch Even thou I'm currently working more in scala, I'm willing to help here. However, my understanding is that the version of protobuf that snakebite is currently using doesn't support...
The client is configured with the following configuration: ```scala val stack = com.twitter.finagle.Http.client .configured(DefaultPool.Param(3, 100, 0, 1.second, Int.MaxValue)) .configured(ExpiringService.Param(Duration.Top, Duration.Top)) .configured(FailFast(false)) .withRetryBackoff(Backoff.exponential(1.second, 2).take(5)) .withLabel(name) .withTransport.connectTimeout(5.seconds) .withMaxResponseSize(StorageUnit.fromMegabytes(5)) val resolved = Resolver.eval(url.getAuthority)...