Eduan
Eduan
When the server has Spring Security, like a basic auth username and password, and the client is misconfigured you get this error: `Caused by: org.springframework.web.client.UnknownContentTypeException: Could not extract response: no...
Currently connecting to Zipkin has a hardcoded 1-second timeout, which for me isn't long enough. When I connect to a Zipkin server behind a VPN from my local PC on...
With Hibernate and Spring Data JPA you can do a soft delete like this: ``` @SQLDelete(sql = "UPDATE user SET deleted = true WHERE id = ?", check = ResultCheckStyle.COUNT)...
I am working on a spring mvc project and all my controllers inherit from an abstract. I would like to add @Loggable to the parent and have it propagate down...
### Description This PR allows you to send in the raw kubeconfig data without first creating a temp file. Closes https://github.com/hashicorp/terraform-provider-kubernetes/issues/1735 Note: I have very little Go experience, so please...
**Is your feature request related to a problem? Please describe.** When creating clients with a well-defined enum that will never expand, like the direction of `ASC` and `DESC`, it doesn't...
As far as I can tell, using this module in terraform/env0 cloud is impossible. When connecting to the cluster using a kubeconfig, it complains because oci is not installed. ```terraform...
On the NodePool class, there is no current_node_count. https://cloud.google.com/python/docs/reference/container/latest/google.cloud.container_v1.types.NodePool Nodepool sizes can be updated using a SetNodePoolSizeRequest but it doesn't seem like there is a way to get the size....
### Eschewed features - [X] This issue is not requesting templating, unstuctured edits, build-time side-effects from args or env vars, or any other eschewed feature. ### What would you like...
Provide a more concise way to customize the system environment when using ApplicationContextRunner
For some specific cases, it is necessary to set systemEnvironment which is different from systemProperties. For example, mocking out a Kubernetes environment. Adding a test for Kubernetes in ConditionalOnCloudPlatformTests is...