Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct loop condition for replication tasks #19570

Merged
merged 1 commit into from Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/portal/PACKAGE.md
@@ -1,7 +1,7 @@
```text
{
"name": "harbor",
"version": "2.9.0",
"version": "2.10.0",
"description": "Harbor UI with Clarity",
"angular-cli": {},
"scripts": {
Expand Down
Expand Up @@ -252,13 +252,11 @@
count > 0 ||
this.execution?.status === executionStatus
) {
if (!this.tasksTimeout) {
this.tasksTimeout = setTimeout(() => {
this.clrLoadTasks(false, {
page: {},
});
}, REFRESH_TIME_DIFFERENCE);
}
this.tasksTimeout = setTimeout(() => {
this.clrLoadTasks(false, {

Check warning on line 256 in src/portal/src/app/base/left-side-nav/replication/replication/replication-tasks/replication-tasks.component.ts

View check run for this annotation

Codecov / codecov/patch

src/portal/src/app/base/left-side-nav/replication/replication/replication-tasks/replication-tasks.component.ts#L255-L256

Added lines #L255 - L256 were not covered by tests
page: {},
});
}, REFRESH_TIME_DIFFERENCE);
}
},
error => {
Expand Down