Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ SETUP_SCRIPT=tests/scripts/setup-supernodes.sh
# Optional: specify lumera binary path to skip download
LUMERAD_BINARY ?=
# Optional: specify installation mode (latest-release, latest-tag, or vX.Y.Z)
INSTALL_MODE ?=latest-tag
INSTALL_MODE ?=v1.7.2

install-lumera:
@echo "Installing Lumera..."
Expand Down
27 changes: 27 additions & 0 deletions gen/supernode/service.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,25 @@
},
"title": "System resource information"
},
"StatusResponseServiceTasks": {
"type": "object",
"properties": {
"serviceName": {
"type": "string"
},
"taskIds": {
"type": "array",
"items": {
"type": "string"
}
},
"taskCount": {
"type": "integer",
"format": "int32"
}
},
"title": "ServiceTasks contains task information for a specific service"
},
"protobufAny": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -827,6 +846,14 @@
"resources": {
"$ref": "#/definitions/StatusResponseResources"
},
"runningTasks": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/StatusResponseServiceTasks"
},
"title": "Services with currently running tasks"
},
"registeredServices": {
"type": "array",
"items": {
Expand Down
242 changes: 160 additions & 82 deletions gen/supernode/status.pb.go

Large diffs are not rendered by default.

121 changes: 0 additions & 121 deletions pkg/common/blocktracker/block_tracker.go

This file was deleted.

97 changes: 0 additions & 97 deletions pkg/common/blocktracker/block_tracker_test.go

This file was deleted.

20 changes: 0 additions & 20 deletions pkg/common/task/action.go

This file was deleted.

Loading