Skip to content

Commit

Permalink
add AfterburnerModule
Browse files Browse the repository at this point in the history
  • Loading branch information
v1r3n committed Jul 2, 2024
1 parent b0efce7 commit 81ab5ee
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
*/
package com.netflix.conductor.common.config;

import com.fasterxml.jackson.module.afterburner.AfterburnerModule;
import com.netflix.conductor.common.jackson.JsonProtoModule;

import com.fasterxml.jackson.annotation.JsonInclude;
Expand Down Expand Up @@ -56,6 +57,7 @@ private static ObjectMapper _getObjectMapper() {
objectMapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
objectMapper.registerModule(new JsonProtoModule());
objectMapper.registerModule(new JavaTimeModule());
objectMapper.registerModule(new AfterburnerModule());
return objectMapper;
}
}

0 comments on commit 81ab5ee

Please sign in to comment.