Function
markOperationAsExported
(b *cache.BugCache, target entity.Id, githubID, githubURL string)
Source from the content-addressed store, hash-verified
| 467 | } |
| 468 | |
| 469 | func markOperationAsExported(b *cache.BugCache, target entity.Id, githubID, githubURL string) error { |
| 470 | _, err := b.SetMetadata( |
| 471 | target, |
| 472 | map[string]string{ |
| 473 | metaKeyGithubId: githubID, |
| 474 | metaKeyGithubUrl: githubURL, |
| 475 | }, |
| 476 | ) |
| 477 | |
| 478 | return err |
| 479 | } |
| 480 | |
| 481 | func (ge *githubExporter) cacheGithubLabels(ctx context.Context, gc *rateLimitHandlerClient) error { |
| 482 | variables := map[string]interface{}{ |
Tested by
no test coverage detected