File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed
integration_tests/pprof_heap Expand file tree Collapse file tree 3 files changed +2
-2
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ def generate_random_string(length):
67
67
return '' .join (random .choice (string .ascii_letters + string .digits ) for _ in range (length ))
68
68
69
69
70
- def create_test_tables (count = 3 ):
70
+ def create_test_tables (count = 5 ):
71
71
table_names = []
72
72
73
73
for t in range (count ):
Original file line number Diff line number Diff line change @@ -646,7 +646,7 @@ impl Service {
646
646
. and_then (
647
647
|duration_sec : u64 , profiler : Arc < Profiler > , runtime : Arc < Runtime > | async move {
648
648
let handle = runtime. spawn_blocking ( move || {
649
- profiler. dump_heap_pprof ( duration_sec) . context ( ProfileHeap )
649
+ profiler. dump_heap_pprof ( duration_sec) . context ( PprofHeap )
650
650
} ) ;
651
651
let result = handle. await . context ( JoinAsyncTask ) ;
652
652
match result {
You can’t perform that action at this time.
0 commit comments