Skip to content

Commit

Permalink
fix: adds missing dayjs dependency for azure storage queues
Browse files Browse the repository at this point in the history
Resolves a problem where the SAS token could not get an expiration date.
  • Loading branch information
beauraines committed Mar 6, 2023
1 parent 7792972 commit 094a2ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"dependencies": {
"@azure/storage-queue": "^12.11.0",
"azure-storage": "^2.10.7",
"dayjs": "^1.11.7",
"node-fetch": "^2.6.7",
"sparkly": "^5.0.0",
"sqlite": "^4.1.2",
Expand Down
1 change: 1 addition & 0 deletions src/azure.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const azure = require('azure-storage');
const dayjs = require('dayjs')
const { QueueClient, StorageSharedKeyCredential } = require("@azure/storage-queue");
var path = require('path');

Expand Down

0 comments on commit 094a2ed

Please sign in to comment.