[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-04-14 02:15:37 +00:00
committed by GitHub
parent f8eb2ba4ba
commit ddf570a807
3 changed files with 5 additions and 17 deletions

View File

@@ -447,10 +447,7 @@ export const containerStart = async (
}
};
export const containerStop = async (
containerId: string,
serverId?: string,
) => {
export const containerStop = async (containerId: string, serverId?: string) => {
const command = `docker container stop ${containerId}`;
const { stderr } = serverId
? await execAsyncRemote(serverId, command)
@@ -462,10 +459,7 @@ export const containerStop = async (
}
};
export const containerKill = async (
containerId: string,
serverId?: string,
) => {
export const containerKill = async (containerId: string, serverId?: string) => {
const command = `docker container kill ${containerId}`;
const { stderr } = serverId
? await execAsyncRemote(serverId, command)