Skip to content

Commit

Permalink
Merge pull request #117 from liprec/develop
Browse files Browse the repository at this point in the history
🚀 v1.5.10
  • Loading branch information
liprec committed Oct 19, 2022
2 parents 082d812 + 329075d commit 35026e5
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ daysUntilClose: 3
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- enhancement
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
Expand Down
2 changes: 2 additions & 0 deletions deploy-aas-db/v1/deploy-aas-db.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ function Get-AgentIpAddress {
$length = $errMsg.IndexOf("' is not allowed to access the server.") - $start
if (($start -gt 24) -and ($length -ge 7)) {
$startIP = $errMsg.SubString($start, $length)
# Extra parsing needed due to inconsistend message between datacenters
$startIP = $startIP.Replace("<ip>", "").Replace("</ip>", "")
$endIP = $startIP
} else {
throw "Error during detecting agent IP address ($errMsg)"
Expand Down
2 changes: 1 addition & 1 deletion deploy-aas-db/v1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"version": {
"Major": "1",
"Minor": "5",
"Patch": "8"
"Patch": "10"
},
"minimumAgentVersion": "2.115.0",
"groups": [
Expand Down
2 changes: 2 additions & 0 deletions execute-aas-tmsl/v1/execute-aas-tmsl.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ function Get-AgentIpAddress {
$length = $errMsg.IndexOf("' is not allowed to access the server.") - $start
if (($start -gt 24) -and ($length -ge 7)) {
$startIP = $errMsg.SubString($start, $length)
# Extra parsing needed due to inconsistend message between datacenters
$startIP = $startIP.Replace("<ip>", "").Replace("</ip>", "")
$endIP = $startIP
} else {
throw "Error during detecting agent IP address ($errMsg)"
Expand Down
2 changes: 1 addition & 1 deletion execute-aas-tmsl/v1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"version": {
"Major": "1",
"Minor": "5",
"Patch": "8"
"Patch": "10"
},
"minimumAgentVersion": "2.115.0",
"groups": [
Expand Down
2 changes: 1 addition & 1 deletion vss-extension-preview.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "vsts-release-aas-preview",
"version": "1.5.8",
"version": "1.5.10",
"name": "Analysis Service (Preview)",
"publisher": "liprec",
"public": false,
Expand Down
2 changes: 1 addition & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "vsts-release-aas",
"version": "1.5.8",
"version": "1.5.10",
"name": "Azure Analysis Service",
"publisher": "liprec",
"public": true,
Expand Down

0 comments on commit 35026e5

Please sign in to comment.