diff --git a/quml-migrator/src/main/scala/org/sunbird/job/quml/migrator/helpers/QuestionSetMigrator.scala b/quml-migrator/src/main/scala/org/sunbird/job/quml/migrator/helpers/QuestionSetMigrator.scala index 04ee3c82..ae9bdb5c 100644 --- a/quml-migrator/src/main/scala/org/sunbird/job/quml/migrator/helpers/QuestionSetMigrator.scala +++ b/quml-migrator/src/main/scala/org/sunbird/job/quml/migrator/helpers/QuestionSetMigrator.scala @@ -205,6 +205,8 @@ trait QuestionSetMigrator extends MigrationObjectReader with MigrationObjectUpda val chStr = ScalaJsonUtil.serialize(chData) val chMap: util.Map[String, AnyRef] = mapper.readValue(chStr, classOf[util.Map[String, AnyRef]]) ch.putAll(chMap) + ch.remove("bloomsLevel") + ch.remove("version") } else throw new QumlMigrationException(s"Please migrate children having identifier ${childrenId}") } })