interloper-api 0.26.0__tar.gz → 0.27.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {interloper_api-0.26.0 → interloper_api-0.27.0}/PKG-INFO +1 -1
- {interloper_api-0.26.0 → interloper_api-0.27.0}/pyproject.toml +1 -1
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/oauth.py +1 -1
- {interloper_api-0.26.0 → interloper_api-0.27.0}/README.md +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/__init__.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/app.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/dependencies.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/email.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/__init__.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/admin.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/agent.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/assets.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/auth.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/backfills.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/catalog.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/destinations.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/external/__init__.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/external/resolve.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/jobs.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/organisations.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/resources.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/runs.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/sources.py +0 -0
- {interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/ws.py +0 -0
|
@@ -179,7 +179,7 @@ async def exchange_token(
|
|
|
179
179
|
|
|
180
180
|
try:
|
|
181
181
|
logger.info("Exchanging auth code for provider %s", provider)
|
|
182
|
-
async with httpx.AsyncClient(timeout=30) as client:
|
|
182
|
+
async with httpx.AsyncClient(timeout=30, follow_redirects=True) as client:
|
|
183
183
|
result = await _exchange(client, spec, cfg, body.code)
|
|
184
184
|
logger.info("Successfully exchanged auth code for provider %s", provider)
|
|
185
185
|
return result
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/external/__init__.py
RENAMED
|
File without changes
|
{interloper_api-0.26.0 → interloper_api-0.27.0}/src/interloper_api/routes/external/resolve.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|