Skip to content

Commit aaabc5a

Browse files
committed
make fmt
1 parent 8cfef1a commit aaabc5a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

provisioner/terraform/testdata/multiple-apps/multiple-apps.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ resource "coder_app" "app1" {
1919
resource "coder_app" "app2" {
2020
agent_id = coder_agent.dev1.id
2121
healthcheck {
22-
url = "http://localhost:13337/healthz"
23-
interval = 5
22+
url = "http://localhost:13337/healthz"
23+
interval = 5
2424
threshold = 6
2525
}
2626
}

provisionersdk/proto/provisioner.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ message App {
9999

100100
// Healthcheck represents configuration for checking for app readiness.
101101
message Healthcheck {
102-
string url = 1;
102+
string url = 1;
103103
int32 interval = 2;
104104
int32 threshold = 3;
105105
}

site/src/testHelpers/entities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export const MockWorkspaceApp: TypesGen.WorkspaceApp = {
329329
url: "",
330330
interval: 0,
331331
threshold: 0,
332-
}
332+
},
333333
}
334334

335335
export const MockWorkspaceAgent: TypesGen.WorkspaceAgent = {

0 commit comments

Comments
 (0)