John Behm
John Behm
I think operating systems that have not been updated for ages still have old versions.
@deepmap-marcinr could you provide an example. We want to have the openapi spec in a single location which is usually a private git repo. We don't want to have any...
implement a redial
the timeout is the problem, not what he wants. What he wants is a "keep alive" for the connection.
imo, this testing aspect does not really belong into the provider. I think that this is a pretty common use case where you can use the flexibility of koanf and...
do you have an example of such a test? my first thoughts would be: - Koanf.All() - maps.Flatten
This might work for your tests: ```go package main import ( "strings" "testing" "github.com/knadh/koanf/providers/confmap" "github.com/knadh/koanf/providers/env" "github.com/knadh/koanf/v2" "github.com/mitchellh/mapstructure" "github.com/pkg/errors" "github.com/stretchr/testify/require" ) type Config struct { Users []string `conf_key:"users_credentials"` Admins []string `conf_key:"admins_credentials"`...
in regard to the pr code: - environ field might be prefereably private (smaller public api and easier to change later on) - an additional constructor should be used that...
I think you would need to extend ProviderWithValue to have an additional parameter map[string]string My problem is a little bit the proper name and another one would be that the...
I'd say yes. Update your PR code and you will get feedback as fas as I can say.