We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bdd637 commit 356a8b8Copy full SHA for 356a8b8
src/reporter/gitlab/index.js
@@ -379,4 +379,9 @@ export default class GitLab {
379
generateSnapshotsBaseUrl(serviceName, termsType) {
380
return `${this.baseURL}/${this.commonParams.owner}/${this.commonParams.repo}/-/blob/main/${encodeURIComponent(serviceName)}/${encodeURIComponent(termsType)}`;
381
}
382
+
383
+ // GitLab API responses are not cached unlike GitHub, so this method only exists to satisfy the Reporter interface contract
384
+ clearCache() { /* eslint-disable-line class-methods-use-this */
385
+ logger.debug('Cache clearing not implemented for GitLab reporter as it is not needed');
386
+ }
387
0 commit comments