@clairejs/server 3.27.1 → 3.27.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/job/AwsJobScheduler.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,7 +103,7 @@ let AwsJobScheduler = class AwsJobScheduler extends AbstractJobScheduler {
|
|
|
103
103
|
if (jobInfo.at) {
|
|
104
104
|
// For one-time jobs, use at() expression
|
|
105
105
|
const date = new Date(jobInfo.at);
|
|
106
|
-
scheduleExpression = `at(${date.toISOString()})`;
|
|
106
|
+
scheduleExpression = `at(${date.toISOString().replace(/\.\d{3}Z$/, '')})`;
|
|
107
107
|
// Add flexible time window for one-time jobs to handle slight delays
|
|
108
108
|
flexibleTimeWindow = {
|
|
109
109
|
Mode: "OFF",
|