fix: unneded type conversion
Signed-off-by: Mario Constanti <mario.constanti@mercedes-benz.com>
This commit is contained in:
parent
b27f523259
commit
742ebabfc3
1 changed files with 1 additions and 1 deletions
|
|
@ -532,7 +532,7 @@ func formatOnePool(pool params.Pool) {
|
|||
t.AppendRow(table.Row{"Enabled", pool.Enabled})
|
||||
t.AppendRow(table.Row{"Runner Prefix", pool.GetRunnerPrefix()})
|
||||
t.AppendRow(table.Row{"Extra specs", string(pool.ExtraSpecs)})
|
||||
t.AppendRow(table.Row{"GitHub Runner Group", string(pool.GitHubRunnerGroup)})
|
||||
t.AppendRow(table.Row{"GitHub Runner Group", pool.GitHubRunnerGroup})
|
||||
|
||||
if len(pool.Instances) > 0 {
|
||||
for _, instance := range pool.Instances {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue