Skip to content

Commit

Permalink
bugfix for dadadj ccpp refactor. remove length check as std_names can…
Browse files Browse the repository at this point in the history
… be much longer than 63 chars. Couldnt find a lenght limit for that field in the docs
  • Loading branch information
jtruesdal committed May 7, 2024
1 parent 84782b7 commit 4e4e5cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CIME/ParamGen/xml_schema/entry_id_pg.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<!-- simple types -->
<xs:simpleType name="identifier_type">
<xs:restriction base="xs:string">
<xs:pattern value="[A-Za-z][A-Za-z0-9_]{0,63}"/>
<xs:pattern value="[A-Za-z][A-Za-z0-9_]+"/>
</xs:restriction>
</xs:simpleType>

Expand Down

0 comments on commit 4e4e5cc

Please sign in to comment.