Skip to content

Commit 39fb090

Browse files
committed
change trigger field name
1 parent 124c34e commit 39fb090

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

analytics-provider/src/main/java/org/digma/intellij/plugin/analytics/RestAnalyticsProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ private ObjectMapper createObjectMapper() {
669669
ObjectMapper objectMapper = new ObjectMapper();
670670
objectMapper.setTimeZone(TimeZone.getTimeZone("UTC"));
671671
objectMapper.registerModule(new JavaTimeModule());
672-
//objectMapper can be configured here is necessary
672+
//objectMapper can be configured here if necessary
673673
objectMapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
674674
objectMapper.disable(DeserializationFeature.FAIL_ON_IGNORED_PROPERTIES);
675675
objectMapper.enable(DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_USING_DEFAULT_VALUE);

ide-common/src/main/kotlin/org/digma/intellij/plugin/auth/credentials/DigmaCredentials.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ class DigmaCredentials
3636
private val creationTime: Long
3737
) : CredentialsWithRefresh {
3838

39+
//the format of expirationTime from the server is 2024-08-18T21:33:24Z
40+
3941

4042
//expiresIn is the time left for expiration, it is not accurate because it is assigned some time after
4143
// the server created the expirationTime. it should actually be

0 commit comments

Comments
 (0)