Skip to content

Commit

Permalink
Merge branch 'main' into fix-controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Rodríguez Baquero authored Nov 2, 2023
2 parents e7cfc37 + 7e9dd0e commit 9a46ef5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class Saturn {
cdnURL: 'l1s.saturn.ms',
logURL: 'https://twb3qukm2i654i3tnvx36char40aymqq.lambda-url.us-west-2.on.aws/',
orchURL: 'https://orchestrator.strn.pl/nodes?maxNodes=100',
authURL: 'https://fz3dyeyxmebszwhuiky7vggmsu0rlkoy.lambda-url.us-west-2.on.aws/',
authURL: 'https://su4hesnyinnwvtk3h2rkauh5ja0qrisq.lambda-url.us-west-2.on.aws/',
fallbackLimit: 5,
connectTimeout: 5_000,
downloadTimeout: 0
Expand Down
4 changes: 2 additions & 2 deletions test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('Saturn client', () => {
})

describe('Fetch a CID', () => {
const client = new Saturn({ clientKey })
const client = new Saturn({ clientKey, authURL: TEST_AUTH })
const handlers = [
mockJWT(TEST_AUTH)
]
Expand Down Expand Up @@ -86,7 +86,7 @@ describe('Saturn client', () => {
mockJWT(TEST_AUTH)
]
const server = getMockServer(handlers)
const client = new Saturn({ clientKey, clientId: 'tesd' })
const client = new Saturn({ clientKey, clientId: 'tesd', authURL: TEST_AUTH })
before(() => {
server.listen(MSW_SERVER_OPTS)
})
Expand Down

0 comments on commit 9a46ef5

Please sign in to comment.