Skip to content

Commit 1f6fe5b

Browse files
authored
Merge pull request #168 from cramorr-op/patch-1
Fix for Update-FabricSemanticModelDefinition when platform file exists
2 parents 40e6619 + 88e384c commit 1f6fe5b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Fixed
1515

16+
- Fixed bug in `Update-FabricSemanticModelDefinition` - Uri was incorrect when a platform file exists
17+
1618
### Deprecated
1719

1820
### Removed

source/Public/Semantic Model/Update-FabricSemanticModelDefinition.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function Update-FabricSemanticModelDefinition
7474

7575
if ($hasPlatformFile -eq $true)
7676
{
77-
$apiEndpointUrl = "?updateMetadata=true" -f $apiEndpointUrl
77+
$apiEndpointUrl = "{0}?updateMetadata=true" -f $apiEndpointUrl
7878
}
7979
Write-Message -Message "API Endpoint: $apiEndpointUrl" -Level Debug
8080

0 commit comments

Comments
 (0)