Skip to content

Commit

Permalink
temporarily disable sync.getBlob
Browse files Browse the repository at this point in the history
  • Loading branch information
dholms committed May 7, 2023
1 parent aabbf43 commit c88073c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-and-push-pds-aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- disable-blob-api
env:
REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }}
USERNAME: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_USERNAME }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-and-push-pds-ghcr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- disable-blob-api
env:
REGISTRY: ghcr.io
USERNAME: ${{ github.actor }}
Expand Down
4 changes: 2 additions & 2 deletions packages/pds/src/api/com/atproto/sync/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Server } from '../../../../lexicon'
import AppContext from '../../../../context'
import getBlob from './getBlob'
// import getBlob from './getBlob'
import getBlocks from './getBlocks'
import getCheckout from './getCheckout'
import getCommitPath from './getCommitPath'
Expand All @@ -12,7 +12,7 @@ import listBlobs from './listBlobs'
import listRepos from './listRepos'

export default function (server: Server, ctx: AppContext) {
getBlob(server, ctx)
// getBlob(server, ctx)
getBlocks(server, ctx)
getCheckout(server, ctx)
getCommitPath(server, ctx)
Expand Down

0 comments on commit c88073c

Please sign in to comment.