File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/Storage/Storage.Management Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1818 - Additional information about change #1
1919-->
2020## Upcoming Release
21-
21+ * Fixed object replication policy time format parsing issue [ #24434 ]
22+
2223## Version 6.1.3
2324* Introduced secrets detection feature to safeguard sensitive data.
2425* Upgraded Azure.Core to 1.37.0.
Original file line number Diff line number Diff line change 1616using Microsoft . WindowsAzure . Commands . Common . Attributes ;
1717using System ;
1818using System . Collections . Generic ;
19+ using System . Globalization ;
1920
2021namespace Microsoft . Azure . Commands . Management . Storage . Models
2122{
@@ -178,7 +179,7 @@ public PSObjectReplicationPolicyFilter(ObjectReplicationPolicyFilter filter)
178179 {
179180 filter . MinCreationTime = filter . MinCreationTime + "Z" ;
180181 }
181- this . MinCreationTime = Convert . ToDateTime ( filter . MinCreationTime ) ;
182+ this . MinCreationTime = Convert . ToDateTime ( filter . MinCreationTime , CultureInfo . GetCultureInfo ( "en-US" ) ) ;
182183 }
183184 }
184185 }
You can’t perform that action at this time.
0 commit comments