Skip to content

Commit

Permalink
[regresion-test](fix) fix cache plugin bug (#47827)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?

Issue Number: close #xxx

Related PR: introduced by #47785
  • Loading branch information
pingchunzhang authored Feb 12, 2025
1 parent e2ff89e commit 59d2471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions regression-test/plugins/cloud_filecache_plugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ Suite.metaClass.show_cache_hotspot = { String computeGroup = null, String table
res = sql_return_maparray """${select_table_hotspot}"""
}

if ( computeGroup != null && table = null) {
if ( computeGroup != null && table == null) {
res = sql_return_maparray """${select_compute_group_hotspot}"""
}

if ( computeGroup = null && table = null) {
if ( computeGroup == null && table == null) {
res = sql_return_maparray """${select_all_hotspot}"""
}
return res
Expand Down

0 comments on commit 59d2471

Please sign in to comment.