Skip to content

Commit 296adee

Browse files
feat: file health check
1 parent 1696ce0 commit 296adee

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

structs.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4301,7 +4301,7 @@ type DatastoreHealth struct {
43014301
type FileHealth struct {
43024302
Create bool `json:"create"`
43034303
FileId string `json:"fileId"`
4304-
GetFile bool `json:"get_file"`
4304+
Upload bool `json:"get_file"`
43054305
Delete bool `json:"delete"`
43064306
}
43074307

@@ -4340,7 +4340,9 @@ type HealthCheck struct {
43404340
Updated int64 `json:"updated"`
43414341
Apps AppHealth `json:"apps"`
43424342
Workflows WorkflowHealth `json:"workflows"`
4343-
PythonApps AppHealth `json:"python_apps"`
4343+
PythonApps AppHealth `json:"python_apps"`
4344+
Datastore DatastoreHealth `json:"datastore"`
4345+
FileOps FileHealth `json:"fileops"`
43444346
}
43454347

43464348
type HealthCheckDB struct {

0 commit comments

Comments
 (0)