Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AHI POC #642

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Hit HTTP/2 proxy
PaulHax committed Aug 26, 2024
commit 193939475826049f0012870113b6241020e993a4
2 changes: 1 addition & 1 deletion src/core/streaming/requestPool.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Deferred, addEventListenerOnce, defer } from '@/src/utils';

const DEFAULT_POOL_SIZE = 6;
const DEFAULT_POOL_SIZE = 60;

let nextId = 0;
function getNextId() {
2 changes: 1 addition & 1 deletion src/io/import/awsAhi.ts
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@ const makeAhiChunk = (imageSetUrl: string, frame: any) => {
};

const importAhiImageSet = async (uri: string) => {
const withProto = uri.replace('ahi:', 'http:');
const withProto = uri.replace('ahi:', 'https:');
const lastSlash = withProto.lastIndexOf('/');
const seriesId = withProto.substring(lastSlash + 1);
const imageSetUrl = withProto.substring(0, lastSlash);