Skip to content

Commit

Permalink
chore: update linter to remove errors (#1906)
Browse files Browse the repository at this point in the history
* chore: update linter to remove error

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md


---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: surbhigarg92 <[email protected]>
  • Loading branch information
3 people authored Aug 21, 2023
1 parent f0f2c1d commit 19e0765
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
"dependencies": {
"@google-cloud/common": "^5.0.0",
"@google-cloud/precise-date": "^3.0.0",
"@google-cloud/projectify": "^3.0.0",
"@google-cloud/promisify": "^3.0.0",
"@google-cloud/projectify": "^4.0.0",
"@google-cloud/promisify": "^4.0.0",
"@grpc/proto-loader": "^0.7.0",
"@types/big.js": "^6.0.0",
"@types/stack-trace": "0.0.29",
Expand All @@ -71,8 +71,6 @@
"lodash.snakecase": "^4.1.1",
"merge-stream": "^2.0.0",
"p-queue": "^6.0.2",
"projectify": "^1.0.1",
"promisify": "0.0.3",
"protobufjs": "^7.0.0",
"retry-request": "^6.0.0",
"split-array-stream": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/session-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ export class SessionPool extends EventEmitter implements SessionPoolInterface {
* @private
*/
_stopHouseKeeping(): void {
clearInterval(this._pingHandle);
clearInterval(this._evictHandle);
clearInterval(this._pingHandle as any);
clearInterval(this._evictHandle as any);
}
}

0 comments on commit 19e0765

Please sign in to comment.