diff --git a/Cargo.lock b/Cargo.lock index 573fa61b0..467c62141 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,7 +8,7 @@ checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e" [[package]] name = "agent" -version = "0.1.13" +version = "0.1.14" dependencies = [ "akri-shared", "anyhow", @@ -74,7 +74,7 @@ dependencies = [ [[package]] name = "akri-shared" -version = "0.1.13" +version = "0.1.14" dependencies = [ "anyhow", "async-trait", @@ -526,7 +526,7 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "controller" -version = "0.1.13" +version = "0.1.14" dependencies = [ "akri-shared", "anyhow", @@ -3481,7 +3481,7 @@ dependencies = [ [[package]] name = "udev-video-broker" -version = "0.1.13" +version = "0.1.14" dependencies = [ "akri-shared", "env_logger", diff --git a/agent/Cargo.toml b/agent/Cargo.toml index c93e21fec..d1424d6d1 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent" -version = "0.1.13" +version = "0.1.14" authors = ["Kate Goldenring ", ""] edition = "2018" diff --git a/controller/Cargo.toml b/controller/Cargo.toml index ed041d89d..d57074e33 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "controller" -version = "0.1.13" +version = "0.1.14" authors = [""] edition = "2018" diff --git a/deployment/helm/Chart.yaml b/deployment/helm/Chart.yaml index ef336c8d2..138e2baaf 100644 --- a/deployment/helm/Chart.yaml +++ b/deployment/helm/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.13 +version: 0.1.14 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 0.1.13 +appVersion: 0.1.14 diff --git a/samples/apps/anomaly-detection-app/anomaly_detection.py b/samples/apps/anomaly-detection-app/anomaly_detection.py index 685a02d26..82336646d 100644 --- a/samples/apps/anomaly-detection-app/anomaly_detection.py +++ b/samples/apps/anomaly-detection-app/anomaly_detection.py @@ -71,9 +71,11 @@ def continuously_get_values(): logging.info("Starting to call GetValue on endpoint %s", url) while True: try: - channel = grpc.insecure_channel(url) + channel = grpc.insecure_channel(url, options=( + ('grpc.use_local_subchannel_pool', 1),)) stub = opcua_node_pb2_grpc.OpcuaNodeStub(channel) value_response = stub.GetValue(opcua_node_pb2.ValueRequest()) + channel.close() if test_new_value(data, value_response.value) == -1: values_log.append(make_log_entry( value_response.opcua_server, value_response.value, True)) diff --git a/samples/apps/anomaly-detection-app/templates/index.html b/samples/apps/anomaly-detection-app/templates/index.html index ab23e9010..936711a55 100644 --- a/samples/apps/anomaly-detection-app/templates/index.html +++ b/samples/apps/anomaly-detection-app/templates/index.html @@ -6,7 +6,7 @@
-

Akri OPCUA Node Value Anomaly Detection

+

Akri OPC UA Node Value Anomaly Detection

  • No values
  • diff --git a/samples/brokers/udev-video-broker/Cargo.toml b/samples/brokers/udev-video-broker/Cargo.toml index d5cc26fa3..4ca9a434d 100644 --- a/samples/brokers/udev-video-broker/Cargo.toml +++ b/samples/brokers/udev-video-broker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev-video-broker" -version = "0.1.13" +version = "0.1.14" authors = ["Kate Goldenring ", ""] edition = "2018" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index ec0815fb4..269ddb3f3 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-shared" -version = "0.1.13" +version = "0.1.14" authors = [""] edition = "2018" diff --git a/version.txt b/version.txt index 7ac4e5e38..71d6a66ed 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.1.13 +0.1.14