Skip to main content
Homepage
Explore
Search or go to…
/
Sign in
Explore
Primary navigation
Project
K
KPI Reporting Generator
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Collapse sidebar
Snippets
Groups
Projects
Show more breadcrumbs
Coscine
backend
scripts
KPI Reporting Generator
Commits
6e9ae9c8
Commit
6e9ae9c8
authored
Jan 12, 2024
by
Petar Hristov
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Reporting name
parent
6cc5a81a
No related branches found
No related tags found
1 merge request
!31
BREAKING: Migrated KPI Generator to the APIv2 infrastructure
Pipeline
#1212179
passed
Jan 12, 2024
Status:
Stage: build
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/KPI Generator/Reportings/Complete/CompleteReporting.cs
+2
-2
2 additions, 2 deletions
src/KPI Generator/Reportings/Complete/CompleteReporting.cs
with
2 additions
and
2 deletions
src/KPI Generator/Reportings/Complete/CompleteReporting.cs
+
2
−
2
View file @
6e9ae9c8
...
...
@@ -45,11 +45,11 @@ public class CompleteReporting
var
reportingFiles
=
await
GenerateReportingAsync
();
// Publish to GitLab first, if that fails, publish to local storage
var
success
=
await
_gitlabStorageService
.
PublishAsync
(
"
Project
Reporting"
,
reportingFiles
);
var
success
=
await
_gitlabStorageService
.
PublishAsync
(
"
Complete
Reporting"
,
reportingFiles
);
if
(!
success
)
{
Console
.
WriteLine
(
"Failed to publish to GitLab. Publishing to local storage instead."
);
success
=
await
_localStorageService
.
PublishAsync
(
"
Project
Reporting"
,
reportingFiles
);
success
=
await
_localStorageService
.
PublishAsync
(
"
Complete
Reporting"
,
reportingFiles
);
}
return
success
;
}
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment