Skip to content

chore: changing region to west1 for samples #1549

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

Merged
merged 5 commits into from
Jan 19, 2022
Merged
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 samples/instance.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async function createInstance(instanceId, projectId) {
try {
console.log(`Creating instance ${instance.formattedName_}.`);
const [, operation] = await instance.create({
config: 'regional-us-central1',
config: 'regional-us-west1',
nodes: 1,
displayName: 'This is a display name.',
labels: {
Expand Down
4 changes: 2 additions & 2 deletions samples/system-test/spanner.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ const DEFAULT_LEADER_DATABASE_ID = `test-database-${CURRENT_TIME}-dl`;
const BACKUP_ID = `test-backup-${CURRENT_TIME}`;
const ENCRYPTED_BACKUP_ID = `test-backup-${CURRENT_TIME}-enc`;
const CANCELLED_BACKUP_ID = `test-backup-${CURRENT_TIME}-c`;
const LOCATION_ID = 'regional-us-central1';
const KEY_LOCATION_ID = 'us-central1';
const LOCATION_ID = 'regional-us-west1';
const KEY_LOCATION_ID = 'us-west1';
const KEY_RING_ID = 'test-key-ring-node';
const KEY_ID = 'test-key';
const DEFAULT_LEADER = 'us-central1';
Expand Down