Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic Descamps <lefred.descamps@gmail.com>
  • Loading branch information
lefred committed Apr 22, 2024
1 parent 3f905ed commit d784601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/collections/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def plot(session):
# Here we set the second element of the "variables" to 3, this means it's a
# fix value
major, middle, minor = common._get_version_info(common.collectedInfo['version'])
if int(major) == 8 and int(minor) < 30:
if int(major) == 8 and int(middle) == 0 and int(minor) < 30:
print("Redo Log < 8.0.30 detected")
async_flush_point=_get_async_flush_point(session)
sync_flush_point=_get_sync_flush_point(session)
Expand Down

0 comments on commit d784601

Please sign in to comment.