chore: cargo fmt

This commit is contained in:
Christian Schwarz
2023-03-20 17:34:07 +01:00
parent 834e94f5e3
commit ae1b2f78b3

View File

@@ -1175,7 +1175,9 @@ pub fn make_router(
"/v1/tenant/:tenant_id/timeline/:timeline_id/layer/:layer_file_name",
|r| RequestSpan(evict_timeline_layer_handler).handle(r),
)
.put("/v1/disk_usage_eviction/run", |r| RequestSpan(disk_usage_eviction_run).handle(r))
.put("/v1/disk_usage_eviction/run", |r| {
RequestSpan(disk_usage_eviction_run).handle(r)
})
.put(
"/v1/tenant/:tenant_id/break",
testing_api!("set tenant state to broken", handle_tenant_break),