Skip to content

Commit

Permalink
Increase Payload size from 500MB to 1GB (#4493)
Browse files Browse the repository at this point in the history
  • Loading branch information
laileni-aws committed Jun 19, 2024
1 parent 72380bf commit a8d51e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ object CodeWhispererConstants {
val ISSUE_HIGHLIGHT_TEXT_ATTRIBUTES = TextAttributes(null, null, JBColor.YELLOW, EffectType.WAVE_UNDERSCORE, Font.PLAIN)
const val CODE_SCAN_ISSUE_TITLE_MAX_LENGTH = 60
const val DEFAULT_CODE_SCAN_TIMEOUT_IN_SECONDS: Long = 60 * 10 // 10 minutes
const val DEFAULT_PAYLOAD_LIMIT_IN_BYTES: Long = 500 * 1024 * 1024 // 500 MB
const val DEFAULT_PAYLOAD_LIMIT_IN_BYTES: Long = 1 * 1024 * 1024 * 1024 // 1GB
const val CODE_SCAN_POLLING_INTERVAL_IN_SECONDS: Long = 1
const val FILE_SCAN_INITIAL_POLLING_INTERVAL_IN_SECONDS: Long = 10
const val PROJECT_SCAN_INITIAL_POLLING_INTERVAL_IN_SECONDS: Long = 30
Expand Down

0 comments on commit a8d51e3

Please sign in to comment.