Skip to content

Commit

Permalink
fix: changed “logins_count” attribute type from long to int
Browse files Browse the repository at this point in the history
Since "logins_count" is Integer type in Auth0 SDK, the schema definition of the connector should also be int.
  • Loading branch information
wadahiro committed Sep 30, 2024
1 parent 9fcc1d9 commit c09fa2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public static ObjectClassInfo getSchema(Auth0Configuration config, String databa
.setUpdateable(false)
.build());
builder.addAttributeInfo(AttributeInfoBuilder.define(ATTR_LOGINS_COUNT)
.setType(Long.class)
.setType(Integer.class)
.setCreateable(false)
.setUpdateable(false)
.build());
Expand Down

0 comments on commit c09fa2a

Please sign in to comment.