Skip to content

Commit

Permalink
Lower to 128MB.
Browse files Browse the repository at this point in the history
  • Loading branch information
flvndvd committed Mar 7, 2024
1 parent 9ad213e commit 521479c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { ConnectorResource } from "@connectors/resources/connector_resource";
import type { GoogleDriveObjectType } from "@connectors/types/google_drive";

const MAXIMUM_NUMBER_OF_GSHEET_ROWS = 10000;
const MAX_FILE_SIZE = 200 * 1024 * 1024; // 200 MB in bytes.
const MAX_FILE_SIZE = 128 * 1024 * 1024; // 200 MB in bytes.

type Sheet = sheets_v4.Schema$ValueRange & {
id: number;
Expand Down

0 comments on commit 521479c

Please sign in to comment.