Abhijit Sarkar
Abhijit Sarkar
### Expected behavior Decompress server response in GZIP format. Currently, `HttpClientOptions` has an `acceptGzip` option, which adds a `HttpContentDecompressor`. Problem is, `HttpContentDecompressor` works only based on `Content-Encoding` header, and not...
``` Compile / wartremoverWarnings ++= Warts.unsafe.filterNot(Set(Wart.NonUnitStatements).contains) ``` ^^^ Is there a better way to exclude certain Warts? Not a SBT Ninza, so if it's something obvious, please, humor me.
What is the order of [Kubernetes PropertySource](https://github.com/spring-cloud-incubator/spring-cloud-kubernetes#kubernetes-propertysource) with respect to the application's `application.yml/bootstrap.yml` files and config service? This should be documented in the README.
> stack install brittany ``` hashable > /private/var/folders/94/bkkwz0cd7nd2_j_xn2fwr8ph0000gn/T/stack-0ddfdd20f131c516/hashable-1.3.5.0/In file included from /var/folders/94/bkkwz0cd7nd2_j_xn2fwr8ph0000gn/T/ghc48724_0/ghc_20.c:4:0: error: hashable > hashable > hashable > In file included from /Users/me/.stack/programs/aarch64-osx/ghc-9.0.2/lib/ghc-9.0.2/lib/../lib/aarch64-osx-ghc-9.0.2/rts-1.0.2/include/ffi.h:66:0: error: hashable > hashable > hashable...
**Rationale** Having worked with Spring Boot's excellent [configuration management](https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html), I really miss the benefits in Scala. I'd like to propose a new feature that I think will cut down the...
# Bug Report ## Description ``` curl -i -H "Accept:application/json" https://somedomain.mycompany.com?a=b&c=d ``` The problem is that the URL is not enclosed in double quotes, so on a *nix system, it...
I asked this question on Slack but didn't get a clear answer. I'm looking to run commands after the container starts up. There doesn't seem to be a companion to...
It'd be nice to have the following functions for `Pairs` to reduce the deep nesting: ``` find(Rule::SomeRule, max_level, min_level) -> Option find(&str, max_level, min_level) -> Option ``` The former finds...
1. I install the plugin, and see syntax highlighting. 2. After couple of days, I discover two tabs at the bottom, named "ANTLR Preview" and "Tool Output". I look at...
Using the plugin requires the following boilerplate set up: ``` compileJava.dependsOn swaggerSources.wiremock.code sourceSets.main.java.srcDir "${swaggerSources.wiremock.code.outputDir}/src/main/java" sourceSets.main.resources.srcDir "${swaggerSources.wiremock.code.outputDir}/src/main/resources" idea { module { sourceDirs += file("${swaggerSources.wiremock.code.outputDir}/src/main/java") sourceDirs += file("${swaggerSources.wiremock.code.outputDir}/src/main/resources") generatedSourceDirs += file("${swaggerSources.wiremock.code.outputDir}") }...