Skip to content
New issue

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

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

Already on GitHub? # to your account

feat: Add String type with Utf8Raw encoding to Bigtable API #1419

Merged
merged 5 commits into from
May 28, 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
Prev Previous commit
Next Next commit
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] committed May 16, 2024
commit 43d1e5c4c6c4d2a125dfd7e66b1a2940845a45a3
7 changes: 0 additions & 7 deletions owl-bot-staging/admin/v2/.eslintignore

This file was deleted.

3 changes: 0 additions & 3 deletions owl-bot-staging/admin/v2/.eslintrc.json

This file was deleted.

14 changes: 0 additions & 14 deletions owl-bot-staging/admin/v2/.gitignore

This file was deleted.

55 changes: 0 additions & 55 deletions owl-bot-staging/admin/v2/.jsdoc.js

This file was deleted.

33 changes: 0 additions & 33 deletions owl-bot-staging/admin/v2/.mocharc.js

This file was deleted.

22 changes: 0 additions & 22 deletions owl-bot-staging/admin/v2/.prettierrc.js

This file was deleted.

1 change: 0 additions & 1 deletion owl-bot-staging/admin/v2/README.md

This file was deleted.

59 changes: 0 additions & 59 deletions owl-bot-staging/admin/v2/package.json

This file was deleted.

Loading

Unchanged files with check annotations Beta

}
}
function isStringArray(array: any): array is string[] {

Check warning on line 516 in src/app-profile.ts

GitHub Actions / lint

Unexpected any. Specify a different type
return array.every((cluster: any) => {

Check warning on line 517 in src/app-profile.ts

GitHub Actions / lint

Unexpected any. Specify a different type
return typeof cluster === 'string';
});
}
function isClusterArray(array: any): array is Cluster[] {

Check warning on line 522 in src/app-profile.ts

GitHub Actions / lint

Unexpected any. Specify a different type
return array.every((cluster: any) => {

Check warning on line 523 in src/app-profile.ts

GitHub Actions / lint

Unexpected any. Specify a different type
return isCluster(cluster);
});
}
function isCluster(cluster: any): cluster is Cluster {

Check warning on line 528 in src/app-profile.ts

GitHub Actions / lint

Unexpected any. Specify a different type
return (
(cluster as Cluster).bigtable !== undefined &&
(cluster as Cluster).instance !== undefined &&
// Handling retries in this client. Specify the retry options to
// make sure nothing is retried in retry-request.
noResponseRetries: 0,
shouldRetryFn: (_: any) => {

Check warning on line 813 in src/table.ts

GitHub Actions / lint

'_' is defined but never used

Check warning on line 813 in src/table.ts

GitHub Actions / lint

Unexpected any. Specify a different type
return false;
},
};
userStream.emit('error', error);
}
})
.on('data', _ => {

Check warning on line 972 in src/table.ts

GitHub Actions / lint

'_' is defined but never used
// Reset error count after a successful read so the backoff
// time won't keep increasing when as stream had multiple errors
numConsecutiveErrors = 0;
// Handling retries in this client. Specify the retry options to
// make sure nothing is retried in retry-request.
noResponseRetries: 0,
shouldRetryFn: (_: any) => {

Check warning on line 1595 in src/table.ts

GitHub Actions / lint

'_' is defined but never used

Check warning on line 1595 in src/table.ts

GitHub Actions / lint

Unexpected any. Specify a different type
return false;
},
};