Skip to content

Commit

Permalink
Fix unprocessed count
Browse files Browse the repository at this point in the history
Potentially resolves #81
  • Loading branch information
greenstatic committed Jun 16, 2022
1 parent a3f32ab commit 2dfac6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bbb-exporter/collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def recordings_deleted_from_disk(bigbluebutton_base_dir) -> int:

def recordings_unprocessed_from_disk(bigbluebutton_base_dir) -> int:
# bigbluebutton_base_dir i.e. "/var/bigbluebutton/"
path = os.path.join(bigbluebutton_base_dir, "recording/status/sanity")
path = os.path.join(bigbluebutton_base_dir, "recording/status/recorded")
try:
return len(os.listdir(path=path))
except FileNotFoundError:
Expand Down
4 changes: 2 additions & 2 deletions bbb-exporter/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

MAJOR = 0
MINOR = 7
BUGFIX = 0
INFO = "preview2"
BUGFIX = 1
INFO = "preview1"

VERSION = "{}.{}.{}".format(MAJOR, MINOR, BUGFIX)
if INFO:
Expand Down

0 comments on commit 2dfac6c

Please sign in to comment.