File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
analytics-provider/src/main/java/org/digma/intellij/plugin/analytics
ide-common/src/main/kotlin/org/digma/intellij/plugin/auth/credentials Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments