Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.12
2 changes: 1 addition & 1 deletion dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ARG UID=1000

ENV PATH="${HOME}/.local/bin:${PATH}"

RUN apk add --no-cache tini bash curl nano nodejs npm && \
RUN apk add --no-cache tini bash curl nano nodejs npm python3 py3-pip && \
addgroup -g ${UID} -S ${USER} && \
adduser -u ${UID} -S -G ${USER} -h ${HOME} -s /bin/bash ${USER} && \
chmod 755 ${HOME}
Expand Down
2 changes: 1 addition & 1 deletion magg/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ async def check(
unresponsive_servers = []

for server_name, server_info in self.server_manager.mounted_servers.items():
client = server_info.get('client')
client = server_info.client
if not client:
results[server_name] = {"status": "error", "reason": "No client found"}
unresponsive_servers.append(server_name)
Expand Down