Fix typos
This commit is contained in:
pare
b7a55dc0dc
commit
6a877e6e46
S'han modificat 2 arxius amb 7 adicions i 7 eliminacions
|
@ -61,7 +61,7 @@ class Server:
|
||||||
try:
|
try:
|
||||||
|
|
||||||
users = nodeinfo_json.get('usage').get('users').get('total') or '0'
|
users = nodeinfo_json.get('usage').get('users').get('total') or '0'
|
||||||
if users > 1000000:
|
if int(users) > 1000000:
|
||||||
|
|
||||||
users = 1
|
users = 1
|
||||||
|
|
||||||
|
@ -93,11 +93,11 @@ class Server:
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
if api == '/api/v1/instance?':
|
if api == '/api/v1/instance':
|
||||||
|
|
||||||
try:
|
try:
|
||||||
users = nodeinfo_json.get('stats').get('user_count') or '0'
|
users = nodeinfo_json.get('stats').get('user_count') or '0'
|
||||||
if users > 1000000:
|
if int(users) > 1000000:
|
||||||
|
|
||||||
users = 1
|
users = 1
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ import socket
|
||||||
import ray
|
import ray
|
||||||
import pdb
|
import pdb
|
||||||
|
|
||||||
#ray.init(num_cpus = 25) # Specify this system CPUs.
|
ray.init(num_cpus = 25) # Specify this system CPUs.
|
||||||
|
|
||||||
from ray.exceptions import (
|
from ray.exceptions import (
|
||||||
RaySystemError,
|
RaySystemError,
|
||||||
|
@ -201,7 +201,7 @@ def getsoft(server):
|
||||||
soft = soft.lower()
|
soft = soft.lower()
|
||||||
soft_version = nodeinfo_json['software']['version']
|
soft_version = nodeinfo_json['software']['version']
|
||||||
users = nodeinfo_json.get('usage').get('users').get('total') or '0'
|
users = nodeinfo_json.get('usage').get('users').get('total') or '0'
|
||||||
if users > 1000000:
|
if int(users) > 1000000:
|
||||||
return
|
return
|
||||||
self.mau = nodeinfo_json.get('usage').get('users').get('activeMonth') or 0
|
self.mau = nodeinfo_json.get('usage').get('users').get('activeMonth') or 0
|
||||||
alive = True
|
alive = True
|
||||||
|
@ -225,7 +225,7 @@ def getsoft(server):
|
||||||
soft = soft.lower()
|
soft = soft.lower()
|
||||||
soft_version = nodeinfo_json['server']['version']
|
soft_version = nodeinfo_json['server']['version']
|
||||||
users = nodeinfo_json['usage']['users']['total']
|
users = nodeinfo_json['usage']['users']['total']
|
||||||
if users > 1000000:
|
if int(users) > 1000000:
|
||||||
return
|
return
|
||||||
self.mau = nodeinfo_json.get('usage').get('users').get('activeMonth') or 0
|
self.mau = nodeinfo_json.get('usage').get('users').get('activeMonth') or 0
|
||||||
alive = True
|
alive = True
|
||||||
|
@ -252,7 +252,7 @@ def getsoft(server):
|
||||||
|
|
||||||
users = nodeinfo_json['stats']['user_count']
|
users = nodeinfo_json['stats']['user_count']
|
||||||
|
|
||||||
if users > 1000000:
|
if int(users) > 1000000:
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Referencia en una nova incidència