Skip to content

Commit

Permalink
Merge pull request #345 from AllenInstitute/feature/refactor-environment
Browse files Browse the repository at this point in the history
comment resolution
  • Loading branch information
BrianWhitneyAI authored Nov 23, 2024
2 parents 390a804 + 44b3f16 commit 63796fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default class HttpFileService extends HttpServiceBase implements FileServ
"Content-Type": "application/json",
"X-User-Id": username || "anonymous",
};
console.log(requestUrl, requestBody, headers);

try {
const cacheStatuses = await this.rawPut<{
cacheFileStatuses: { [fileId: string]: string };
Expand Down
2 changes: 1 addition & 1 deletion packages/core/state/interaction/logics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ const moveFilesLogic = createLogic({
// TODO: What to do with the status
console.log("Cache statuses:", cacheStatuses);
} catch (err) {
console.error(`Error encountered while moving files: ${err}`);
throw new Error(`Error encountered while moving files: ${err}`);
} finally {
done();
}
Expand Down

0 comments on commit 63796fd

Please sign in to comment.