Skip to content

Commit 5fd971c

Browse files
authored
fix(amazonq): Increase scan time (#5643)
* fix(amazonq): increase scan timeout threshold * add change log
1 parent 124b079 commit 5fd971c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "increase /review timeout"
4+
}

plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/util/CodeWhispererConstants.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ object CodeWhispererConstants {
7070
// Code scan feature constants
7171
val ISSUE_HIGHLIGHT_TEXT_ATTRIBUTES = TextAttributes(null, null, JBColor.YELLOW, EffectType.WAVE_UNDERSCORE, Font.PLAIN)
7272
const val CODE_SCAN_ISSUE_TITLE_MAX_LENGTH = 60
73-
const val DEFAULT_CODE_SCAN_TIMEOUT_IN_SECONDS: Long = 60 * 10 // 10 minutes
73+
const val DEFAULT_CODE_SCAN_TIMEOUT_IN_SECONDS: Long = 60 * 15 // 15 minutes
7474
const val DEFAULT_PAYLOAD_LIMIT_IN_BYTES: Long = 1 * 1024 * 1024 * 1024 // 1GB
7575
const val CODE_SCAN_POLLING_INTERVAL_IN_SECONDS: Long = 1
7676
const val FILE_SCAN_INITIAL_POLLING_INTERVAL_IN_SECONDS: Long = 10

0 commit comments

Comments
 (0)