Skip to content

Commit

Permalink
fix: update default anomaly detector version to compatible non-preview
Browse files Browse the repository at this point in the history
  • Loading branch information
mhamilton723 committed Sep 6, 2024
1 parent 478e8a2 commit b8f61aa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class DetectLastAnomaly(override val uid: String) extends AnomalyDetectorBase(ui

def setSeriesCol(v: String): this.type = setVectorParam(series, v)

def urlPath: String = "/anomalydetector/v1.1-preview.1/timeseries/last/detect"
def urlPath: String = "/anomalydetector/v1.1/timeseries/last/detect"

override def responseDataType: DataType = ADLastResponse.schema

Expand All @@ -181,7 +181,7 @@ class DetectAnomalies(override val uid: String) extends AnomalyDetectorBase(uid)

def setSeriesCol(v: String): this.type = setVectorParam(series, v)

def urlPath: String = "/anomalydetector/v1.1-preview.1/timeseries/entire/detect"
def urlPath: String = "/anomalydetector/v1.1/timeseries/entire/detect"

override def responseDataType: DataType = ADEntireResponse.schema

Expand Down Expand Up @@ -281,7 +281,7 @@ class SimpleDetectAnomalies(override val uid: String) extends AnomalyDetectorBas

}

def urlPath: String = "/anomalydetector/v1.1-preview.1/timeseries/entire/detect"
def urlPath: String = "/anomalydetector/v1.1/timeseries/entire/detect"

override def responseDataType: DataType = ADEntireResponse.schema

Expand Down

0 comments on commit b8f61aa

Please sign in to comment.