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

fix: correct resourcesNames in get log queries #1553

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 4 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ class Logging {
reqOpts.resourceNames = arrify(reqOpts.resourceNames!);
this.projectId = await this.auth.getProjectId();
const resourceName = 'projects/' + this.projectId;
if (reqOpts.resourceNames.indexOf(resourceName) === -1) {
if (reqOpts.resourceNames.length < 1) {
reqOpts.resourceNames.push(resourceName);
}
delete reqOpts.autoPaginate;
Expand Down Expand Up @@ -692,7 +692,9 @@ class Logging {
options
);
reqOpts.resourceNames = arrify(reqOpts.resourceNames!);
reqOpts.resourceNames.push(`projects/${this.projectId}`);
if (reqOpts.resourceNames.length < 1) {
reqOpts.resourceNames.push(`projects/${this.projectId}`);
}
delete reqOpts.autoPaginate;
delete reqOpts.gaxOptions;
const gaxOptions = extend(
Expand Down