mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
fix(troubleshooting): remove malformed leading ellipsis from waiting-for-response strings (#17141)
This commit is contained in:
parent
610b704bf0
commit
ed2d1396df
3 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ async function grabContainers(): Promise<void> {
|
|||
const start = performance.now();
|
||||
listInProgress = true;
|
||||
listError = '';
|
||||
listContainersResult = '...Waiting for response...';
|
||||
listContainersResult = 'Waiting for response...';
|
||||
try {
|
||||
const result = await window.listContainersFromEngine($state.snapshot(providerContainerEngine));
|
||||
listContainersResult = `Responded: ${result.length} containers`;
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ async function pingConnection(): Promise<void> {
|
|||
const start = performance.now();
|
||||
pingInProgress = true;
|
||||
pingError = '';
|
||||
pingResult = '...Waiting for response...';
|
||||
pingResult = 'Waiting for response...';
|
||||
try {
|
||||
const result = await window.pingContainerEngine($state.snapshot(providerContainerEngine));
|
||||
pingResult = `Responded: ${Buffer.from(String(result)).toString()}`;
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ async function reconnectContainerProviders(): Promise<void> {
|
|||
const start = performance.now();
|
||||
reconnectInProgress = true;
|
||||
reconnectError = '';
|
||||
reconnectResult = '...Waiting for response...';
|
||||
reconnectResult = 'Waiting for response...';
|
||||
try {
|
||||
await window.reconnectContainerProviders();
|
||||
} catch (e) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue