Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check for client before calling clientoptions #3412

Merged
merged 2 commits into from
Sep 24, 2024
Merged
Changes from 1 commit
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
21 changes: 12 additions & 9 deletions packages/playground/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -336,16 +336,19 @@ async function setTimeouts() {
}

const client = gridStore.client as GridClient;
const clientOptions = client.clientOptions;

const localStorageDeploymentTimeout = localStorage.getItem(LocalStorageSettingsKey.TIMEOUT_DEPLOYMENT_KEY);
const deploymentTimeoutMinutes = clientOptions.deploymentTimeoutMinutes;

if (client && clientOptions && deploymentTimeoutMinutes) {
if (!localStorageDeploymentTimeout) {
localStorage.setItem(LocalStorageSettingsKey.TIMEOUT_DEPLOYMENT_KEY, `${+deploymentTimeoutMinutes * 60}`);
} else {
client.clientOptions.deploymentTimeoutMinutes = +localStorageDeploymentTimeout! / 60;
await client.connect();

if (client) {
const clientOptions = client.clientOptions;
if (clientOptions) {
const deploymentTimeoutMinutes = clientOptions.deploymentTimeoutMinutes;
if (!localStorageDeploymentTimeout && deploymentTimeoutMinutes) {
localStorage.setItem(LocalStorageSettingsKey.TIMEOUT_DEPLOYMENT_KEY, `${+deploymentTimeoutMinutes * 60}`);
} else {
client.clientOptions.deploymentTimeoutMinutes = +localStorageDeploymentTimeout! / 60;
amiraabouhadid marked this conversation as resolved.
Show resolved Hide resolved
await client.connect();
}
}
}
amiraabouhadid marked this conversation as resolved.
Show resolved Hide resolved
}
Expand Down
Loading