Skip to content

Commit 9f5bfc0

Browse files
committed
update admin with proper list of workflows
Signed-off-by: Florent Poinsard <[email protected]>
1 parent 8c6f2c1 commit 9f5bfc0

File tree

2 files changed

+11
-20
lines changed

2 files changed

+11
-20
lines changed

go/admin/templates/add_new_executions.html

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,15 @@
3434
/>
3535
All</label
3636
>
37+
</div>
38+
<div class="flex flex-col">
3739
<label
38-
><input
39-
class="accent-orange-500"
40-
type="checkbox"
41-
name="workloads"
42-
value="OLTP"
43-
/>
40+
><input
41+
class="accent-orange-500"
42+
type="checkbox"
43+
name="workloads"
44+
value="OLTP"
45+
/>
4446
OLTP</label
4547
>
4648
<label
@@ -52,17 +54,6 @@
5254
/>
5355
OLTP-READONLY</label
5456
>
55-
<label
56-
><input
57-
class="accent-orange-500"
58-
type="checkbox"
59-
name="workloads"
60-
value="OLTP-SET"
61-
/>
62-
OLTP-SET</label
63-
>
64-
</div>
65-
<div class="flex flex-col">
6657
<label
6758
><input
6859
class="accent-orange-500"

go/server/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@ func (s *Server) Init() error {
189189
// "oltp-readonly-olap": {file: path.Join(s.benchmarkConfigPath, "olap-readonly.yaml"), v: viper.New(), skip: true},
190190

191191
"tpcc": {file: path.Join(s.benchmarkConfigPath, "tpcc.yaml"), v: viper.New()},
192-
"tpcc_unsharded": {file: path.Join(s.benchmarkConfigPath, "tpcc_unsharded.yaml"), v: viper.New()},
193-
"tpcc_fk": {file: path.Join(s.benchmarkConfigPath, "tpcc_fk.yaml"), v: viper.New()},
194-
"tpcc_fk_unmanaged": {file: path.Join(s.benchmarkConfigPath, "tpcc_fk_unmanaged.yaml"), v: viper.New()},
192+
"tpcc_unsharded": {file: path.Join(s.benchmarkConfigPath, "tpcc_unsharded.yaml"), v: viper.New(), skip: true},
193+
"tpcc_fk": {file: path.Join(s.benchmarkConfigPath, "tpcc_fk.yaml"), v: viper.New(), skip: true},
194+
"tpcc_fk_unmanaged": {file: path.Join(s.benchmarkConfigPath, "tpcc_fk_unmanaged.yaml"), v: viper.New(), skip: true},
195195
}
196196
for workload, config := range s.benchmarkConfig {
197197
config.v.SetConfigFile(config.file)

0 commit comments

Comments
 (0)