Skip to content

Commit

Permalink
Make accumulator static to satisfy Jackson requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabby Anandan committed Aug 13, 2020
1 parent 518e7b3 commit 9b42bfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public Function<KStream<Object, Truck>, KStream<String, AverageBrakeTemperatureA
});
}

class AverageBrakeTemperatureAccumulator {
static class AverageBrakeTemperatureAccumulator {

private int count;

Expand Down
2 changes: 1 addition & 1 deletion install-scdf/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ helm upgrade --wait -n "${scdf_namespace}" --install "${scdf_release_name}" bitn
--set metrics.enabled=true \
--set metrics.serviceMonitor.enabled=true \
--set metrics.serviceMonitor.namespace="${prometheus_namespace}" \
--set server.configuration.grafanaInfo="http://grafana:3000" > /dev/null
--set server.configuration.grafanaInfo="http://instance.autolab.strigo.io:3000" > /dev/null

echo ""
echo "### Stack succesfully deployed ###"
Expand Down

0 comments on commit 9b42bfd

Please sign in to comment.