@@ -544,8 +544,7 @@ pub enum __Type {
544544#[ cached(
545545 type = "SizedCache<u64, HashMap<String, __Field>>" ,
546546 create = "{ SizedCache::with_size(1000) }" ,
547- convert = r#"{ calculate_hash(type_) }"# ,
548- sync_writes = true
547+ convert = r#"{ calculate_hash(type_) }"#
549548) ]
550549pub fn field_map ( type_ : & __Type ) -> HashMap < String , __Field > {
551550 let mut hmap = HashMap :: new ( ) ;
@@ -570,8 +569,7 @@ pub fn field_map(type_: &__Type) -> HashMap<String, __Field> {
570569#[ cached(
571570 type = "SizedCache<u64, HashMap<String, __InputValue>>" ,
572571 create = "{ SizedCache::with_size(1000) }" ,
573- convert = r#"{ calculate_hash(type_) }"# ,
574- sync_writes = true
572+ convert = r#"{ calculate_hash(type_) }"#
575573) ]
576574pub fn input_field_map ( type_ : & __Type ) -> HashMap < String , __InputValue > {
577575 let mut hmap = HashMap :: new ( ) ;
@@ -3875,8 +3873,7 @@ pub struct __Schema {
38753873#[ cached(
38763874 type = "SizedCache<String, HashMap<String, __Type>>" ,
38773875 create = "{ SizedCache::with_size(200) }" ,
3878- convert = r#"{ serde_json::ser::to_string(&schema.context.config).expect("schema config should be a string") }"# ,
3879- sync_writes = true
3876+ convert = r#"{ serde_json::ser::to_string(&schema.context.config).expect("schema config should be a string") }"#
38803877) ]
38813878pub fn type_map ( schema : & __Schema ) -> HashMap < String , __Type > {
38823879 let tmap: HashMap < String , __Type > = schema
0 commit comments