Skip to content

Commit

Permalink
Merge pull request #4992 from harveyyue/hotfix
Browse files Browse the repository at this point in the history
[bybit] fix date parse locale
  • Loading branch information
timmolter authored Jan 26, 2025
2 parents 9b25a34 + 5bf6e7c commit 624c31c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
public class BybitAdapters {

private static final ThreadLocal<SimpleDateFormat> OPTION_DATE_FORMAT =
ThreadLocal.withInitial(() -> new SimpleDateFormat("ddMMMyy"));
ThreadLocal.withInitial(() -> new SimpleDateFormat("ddMMMyy", Locale.US));
public static final List<String> QUOTE_CURRENCIES =
Arrays.asList("USDT", "USDC", "USDE", "EUR", "BRL", "PLN", "TRY", "SOL", "BTC", "ETH", "DAI",
"BRZ");
Expand Down

0 comments on commit 624c31c

Please sign in to comment.