(source AttributionSource, rule string)
| 150 | } |
| 151 | |
| 152 | func (r Resolver) ambiguous(source AttributionSource, rule string) IntentRecord { |
| 153 | return IntentRecord{ |
| 154 | Status: AttributionAmbiguous, |
| 155 | Source: source, |
| 156 | Rule: rule, |
| 157 | ResolverVersion: r.ResolverVersion, |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | func (r Resolver) statusForLabels(labels []string) AttributionStatus { |
| 162 | if len(labels) == 0 { |