コード例 #1
0
ファイル: configuration.go プロジェクト: Ritsyy/almighty-core
// GetPostgresConnectionTimeout returns the postgres connection timeout as set via default, config file, or environment variable
func GetPostgresConnectionTimeout() int64 {
	return viper.GetInt64(varPostgresConnectionTimeout)
}
コード例 #2
0
ファイル: configuration.go プロジェクト: Ritsyy/almighty-core
// GetPostgresPort returns the postgres port as set via default, config file, or environment variable
func GetPostgresPort() int64 {
	return viper.GetInt64(varPostgresPort)
}