Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Commit 2e2d0f7

Browse files
committed
disabled DistributedPubSub
1 parent 273bec8 commit 2e2d0f7

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

RELEASE_NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.7.1] / 05 May 2022
2+
- Running on .NET Core 3.1 version of the software (i.e. all code changes needed to make app .NET Core 3.1-compliant,) but .NET 6 runtime
3+
- Disabling `DistributedPubSub`
4+
15
## [0.7.0] / 05 May 2022
26
- Running on .NET Core 3.1 version of the software (i.e. all code changes needed to make app .NET Core 3.1-compliant,) but .NET 6 runtime
37

k8s/prod/environment/configs/configs-prod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ data:
1313
StressOptions__AkkaClusterOptions__UseKubernetesLease: "false"
1414

1515
# DistributedPubSub options
16-
StressOptions__DistributedPubSubOptions__Enabled: "true"
16+
StressOptions__DistributedPubSubOptions__Enabled: "false"
1717

1818
# Sharding options
1919
StressOptions__ShardingOptions__Enabled: "true"

k8s/prod/services/prod-services.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ spec:
7878
emptyDir: {}
7979
containers:
8080
- name: frontend
81-
image: akkalargescaleimages64b06635.azurecr.io/akkadotnet.frontend:0.7.0
81+
image: akkalargescaleimages64b06635.azurecr.io/akkadotnet.frontend:0.7.1
8282
env:
8383
- name: POD_NAME
8484
valueFrom:
@@ -207,7 +207,7 @@ spec:
207207
emptyDir: {}
208208
containers:
209209
- name: backend
210-
image: akkalargescaleimages64b06635.azurecr.io/akkadotnet.backend:0.7.0
210+
image: akkalargescaleimages64b06635.azurecr.io/akkadotnet.backend:0.7.1
211211
env:
212212
- name: POD_NAME
213213
valueFrom:

src/Directory.Build.props

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
<PropertyGroup>
33
<Copyright>Copyright © 2022 Petabridge</Copyright>
44
<Authors>Petabridge</Authors>
5-
<VersionPrefix>0.7.0</VersionPrefix>
6-
<PackageReleaseNotes>• Running on .NET Core 3.1 version of the software (i.e. all code changes needed to make app .NET Core 3.1-compliant%2C) but .NET 6 runtime</PackageReleaseNotes>
5+
<VersionPrefix>0.7.1</VersionPrefix>
6+
<PackageReleaseNotes>• Running on .NET Core 3.1 version of the software (i.e. all code changes needed to make app .NET Core 3.1-compliant%2C) but .NET 6 runtime
7+
• Disabling DistributedPubSub</PackageReleaseNotes>
78
<PackageIconUrl>
89
</PackageIconUrl>
910
<PackageProjectUrl>

0 commit comments

Comments
 (0)