Skip to content

Commit 6fa3b53

Browse files
Jake ChampionJakeChampion
authored andcommitted
clarify that we don't yet support guest provided streams
1 parent bcb4ea5 commit 6fa3b53

File tree

1 file changed

+2
-2
lines changed
  • integration-tests/js-compute/fixtures/object-store

1 file changed

+2
-2
lines changed

integration-tests/js-compute/fixtures/object-store/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ routes.set('/', () => {
275275
}, TypeError, `Content-provided streams are not yet supported for streaming into ObjectStore`)
276276
if (error) { return error }
277277
return pass()
278-
// TODO: uncomment this when streams are supported
278+
// TODO: uncomment this when conte-provided (guest) streams are supported
279279
// const stream = iteratableToStream([])
280280
// const store = createValidStore()
281281
// let result = store.put('readablestream-empty', stream)
@@ -306,7 +306,7 @@ routes.set('/', () => {
306306
}, Error, `Content-provided streams are not yet supported for streaming into ObjectStore`)
307307
if (error) { return error }
308308
return pass()
309-
// TODO: uncomment this when streams are supported
309+
// TODO: uncomment this when conte-provided (guest) streams are supported
310310
// const stream = iteratableToStream(['x'.repeat(30*1024*1024) + 'x'])
311311
// const store = createValidStore()
312312
// let result = store.put('readablestream-over-30mb', stream)

0 commit comments

Comments
 (0)