zilencer: Fix buggy validation of installation_counts upload.

This was a simple copy-paste error.  It's probably worth a bit more
work on code duplication in this code path.
This commit is contained in:
Tim Abbott 2019-02-02 11:47:43 -08:00
parent 4fef10f4e6
commit 55ead5b77f
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ def remote_server_post_analytics(request: HttpRequest,
server = cast(RemoteZulipServer, entity)
validate_count_stats(server, RemoteRealmCount, realm_counts)
validate_count_stats(server, RemoteInstallationCount, realm_counts)
validate_count_stats(server, RemoteInstallationCount, installation_counts)
BATCH_SIZE = 1000
while len(realm_counts) > 0: