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 18
18
- Additional information about change #1
19
19
-->
20
20
## Upcoming Release
21
-
21
+ * Fixed object replication policy time format parsing issue [ #24434 ]
22
+
22
23
## Version 6.1.3
23
24
* Introduced secrets detection feature to safeguard sensitive data.
24
25
* Upgraded Azure.Core to 1.37.0.
Original file line number Diff line number Diff line change 16
16
using Microsoft . WindowsAzure . Commands . Common . Attributes ;
17
17
using System ;
18
18
using System . Collections . Generic ;
19
+ using System . Globalization ;
19
20
20
21
namespace Microsoft . Azure . Commands . Management . Storage . Models
21
22
{
@@ -178,7 +179,7 @@ public PSObjectReplicationPolicyFilter(ObjectReplicationPolicyFilter filter)
178
179
{
179
180
filter . MinCreationTime = filter . MinCreationTime + "Z" ;
180
181
}
181
- this . MinCreationTime = Convert . ToDateTime ( filter . MinCreationTime ) ;
182
+ this . MinCreationTime = Convert . ToDateTime ( filter . MinCreationTime , CultureInfo . GetCultureInfo ( "en-US" ) ) ;
182
183
}
183
184
}
184
185
}
You can’t perform that action at this time.
0 commit comments