datadog-mcp 1.0.6 → 1.0.7
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/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3281,6 +3281,10 @@ function normalizeDowntimeConfig(config) {
|
|
|
3281
3281
|
if (schedule.end && typeof schedule.end === "string") {
|
|
3282
3282
|
schedule.end = new Date(schedule.end);
|
|
3283
3283
|
}
|
|
3284
|
+
if (schedule.timezone && !normalized.displayTimezone) {
|
|
3285
|
+
normalized.displayTimezone = schedule.timezone;
|
|
3286
|
+
}
|
|
3287
|
+
delete schedule.timezone;
|
|
3284
3288
|
}
|
|
3285
3289
|
normalized.schedule = schedule;
|
|
3286
3290
|
}
|