OmiseNotFoundException
schedule schd_test_B was not found
schd_test_A from keys A
schd_test_B from keys B
The issue arises from OmiseSchedule utilizing the singleton pattern to store keys. Consequently, subsequent instances of OmiseSchedule are unable to utilize their own keys for data requests, instead using the keys stored from the previous instance of OmiseSchedule.
Please verify if this is a bug or an issue with my usage.
Code like this:
will get
schd_test_A from keys A
schd_test_B from keys B
The issue arises from OmiseSchedule utilizing the singleton pattern to store keys. Consequently, subsequent instances of OmiseSchedule are unable to utilize their own keys for data requests, instead using the keys stored from the previous instance of OmiseSchedule.
Please verify if this is a bug or an issue with my usage.