Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nmaas Platform
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nmaas
nmaas Platform
Merge requests
!210
Fix dashboard issue
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix dashboard issue
fix-dashboard-issue
into
develop
Overview
0
Commits
5
Pipelines
2
Changes
1
Merged
Karol Beyrowski
requested to merge
fix-dashboard-issue
into
develop
1 month ago
Overview
0
Commits
5
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Viewing commit
7f203f37
Prev
Next
Show latest version
1 file
+
1
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
7f203f37
delete log
· 7f203f37
kbeyro
authored
1 month ago
src/main/java/net/geant/nmaas/portal/service/impl/DashboardServiceImpl.java
+
1
−
2
Options
@@ -70,8 +70,7 @@ public class DashboardServiceImpl implements DashboardService {
//filter not deployed application
applicationDeploymentCountPerName
.
entrySet
().
removeIf
(
app
->
app
.
getValue
()
==
0
);
log
.
warn
(
"Start stamp {} / end stamp {}"
,
startTimeStamp
,
endTimeStamp
);
log
.
warn
(
"Result: {}"
,
appInstanceRepo
.
countAllDeployedSinceTime
(
startTimeStamp
,
endTimeStamp
));
log
.
info
(
"Start stamp {} / end stamp {}"
,
startTimeStamp
,
endTimeStamp
);
return
DashboardView
.
builder
()
.
domainsCount
(
domainRepository
.
count
())
Loading