()
| 823 | } |
| 824 | |
| 825 | func (r Repository) GetBalancerType() PoolBalancerType { |
| 826 | if r.PoolBalancerType == "" { |
| 827 | return PoolBalancerTypeRoundRobin |
| 828 | } |
| 829 | return r.PoolBalancerType |
| 830 | } |
| 831 | |
| 832 | func (r Repository) String() string { |
| 833 | return fmt.Sprintf("%s/%s", r.Owner, r.Name) |
no outgoing calls
no test coverage detected