Skip to content

Commit

Permalink
Merge pull request #2608 from microsoft/dev
Browse files Browse the repository at this point in the history
Issue #2595
  • Loading branch information
freddydk committed Jul 21, 2022
2 parents 8f1a0ed + 6757308 commit 5ea7b9b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ContainerHandling/New-NavContainer.ps1
Expand Up @@ -1689,7 +1689,12 @@ if ($multitenant) {
$customNavSettings += @("PublicODataBaseUrl=$restUrl/odata","PublicSOAPBaseUrl=$soapUrl/ws","PublicWebBaseUrl=$webclientUrl")

if ($version.Major -ge 15) {
$ServerInstance = "BC"
if (Test-Path "$myfolder\serviceSettings.ps1") {
. "$myfolder\serviceSettings.ps1"
}
else {
$ServerInstance = "BC"
}
}
else {
$ServerInstance = "NAV"
Expand Down
1 change: 1 addition & 0 deletions ReleaseNotes.txt
Expand Up @@ -9,6 +9,7 @@ Issue #2581 Event log messages show the wrong description
Issue #2590 UploadImportAndApply-ConfigPackageInBcContainer ignores tenant parameter
Issue #2591 Performance issue with Get-NavContainerAppInfo
Issue #2587 Run-ALPipeline with App Name Change
Partial fix for Issue #2595 (Issues with "Edit in Excel" for container behind traefik)

3.0.11
Issue #2378 When running BcContainerHelper without admin rights, the import of a certificate is now done in an elevated process (asking for permissions)
Expand Down

0 comments on commit 5ea7b9b

Please sign in to comment.