David Barri

Results 110 comments of David Barri

I don't think it's possible but if it is I'd be happy for it to be an optional module. On Tue, 25 Jun. 2019, 4:13 am Gavin Bisesi, wrote: >...

Hi @yadavan88 , currently we don't support reading from HOCON format. If you mean you're moving away from HOCON, then yes that's the right way to do it. You could...

Hey Ryan. I used it in multiple serious products and find it a complete solution for my needs. I don't do mutation but you can call .map (and various) on...

It creates an instance by reading from multiple prioritised sources. You're right that it doesn't have any features to specifically deal with config versioning. Maybe we follow different practices but...

Hi again, So for now, I've made my own app called [scala-restructure](https://github.com/japgolly/scala-restructure) that does what I need it to do, but directly using scalameta, rather that trying to use scalafix...

Just a few thoughts on the implementation details: 1. WDYT about changing `/external-annotations.txt` to `/META-INF/scala-annotations.txt`? * The `META-INF` is usually where these kinds of things go and is a bit...

FYI I tried the above and it didn't make a difference

Found a fix: ```yml with: key: docker-layer-cache-{hash} restore-keys: | docker-layer-cache- layer-docker-layer-cache- ``` Turns out that layers are saved with a `layer-` prefix ([see here](https://github.com/satackey/action-docker-layer-caching/blob/87d3d090488035a21f76fa0ede3aabe8acb2e72f/src/LayerCache.ts#L265)) that isn't used during cache restoration...

Hey @DylanArnold, I meant to reply to you but lost forgot. Sorry about that! We already have a mechanism in place for adding prefixes, here is an example of key...

@DylanArnold Hey. I'm not totally against quick and dirty as long as it's not observable externally. But before I merge (or suggest a different course like your option 2) I...