Skip to content

Commit

Permalink
message-broker: Update mdb_error_t to const
Browse files Browse the repository at this point in the history
  • Loading branch information
mikael-magnusson authored and johan-olsson-work committed Nov 19, 2024
1 parent 373c5fe commit 8ceb422
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/message-broker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
axis-os: ["12.0.91"]
axis-os: ["12.1.60"]
arch: ["armv7hf", "aarch64"]
env:
EXREPO: acap-native-examples
Expand Down
2 changes: 1 addition & 1 deletion message-broker/consume-scene-metadata/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ARCH=
ARG VERSION=12.0.0
ARG VERSION=12.1.0-rc.1
ARG UBUNTU_VERSION=24.04
ARG REPO=axisecp
ARG SDK=acap-native-sdk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ typedef struct channel_identifier {
char* source;
} channel_identifier_t;

static void on_connection_error(mdb_error_t* error, void* user_data) {
static void on_connection_error(const mdb_error_t* error, void* user_data) {
(void)user_data;

syslog(LOG_ERR, "Got connection error: %s, Aborting...", error->message);
Expand Down

0 comments on commit 8ceb422

Please sign in to comment.