Skip to content

Commit

Permalink
Release 0.2.20
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Jan 3, 2021
2 parents ccf9636 + 3b47b95 commit 58b42fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions api/tacticalrmm/agents/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ def check_in_task() -> None:
agents: List[int] = [
i.pk for i in q if pyver.parse(i.version) >= pyver.parse("1.1.12")
]
with ThreadPoolExecutor(max_workers=30) as executor:
with ThreadPoolExecutor() as executor:
executor.map(_check_in_full, agents)


@app.task
def monitor_agents_task() -> None:
q = Agent.objects.all()
agents: List[int] = [i.pk for i in q if i.has_nats and i.status != "online"]
with ThreadPoolExecutor(max_workers=15) as executor:
with ThreadPoolExecutor() as executor:
executor.map(_check_agent_service, agents)


Expand Down
2 changes: 1 addition & 1 deletion api/tacticalrmm/tacticalrmm/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
AUTH_USER_MODEL = "accounts.User"

# latest release
TRMM_VERSION = "0.2.19"
TRMM_VERSION = "0.2.20"

# bump this version everytime vue code is changed
# to alert user they need to manually refresh their browser
Expand Down

0 comments on commit 58b42fa

Please sign in to comment.