We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97903cf commit bee3f20Copy full SHA for bee3f20
tools/plex-bootstraptest.py
@@ -124,13 +124,14 @@ def alert_callback(data):
124
start = time.time()
125
bar = tqdm(desc='Scanning section ' + section['name'], total=expected_media_count)
126
notifier = server.startAlertListener(alert_callback)
127
+ time.sleep(3)
128
add_library_section(server, section)
129
while bar.n < bar.total:
130
if runtime >= 120:
131
print('Metadata scan taking too long, but will continue anyway..')
132
break
133
time.sleep(3)
- runtime = time.time() - start
134
+ runtime = int(time.time() - start)
135
bar.close()
136
notifier.stop()
137
0 commit comments