Skip to content

Commit

Permalink
fix: Raises error when reading java-serialized blobs instead of retun…
Browse files Browse the repository at this point in the history
…ing byte array (#143)

* fix: Raises error when reading java-serialized blobs instead of returning byte array
This upgrades java client 7.0.0 to 7.1.0. Java client 7.1.0 returns language specific serialized objects as byte arrays instead of raising an error like in java client 7.0.0.

* ci: Don't automatically run github pages deploy on tag
  • Loading branch information
Jesse S authored Aug 25, 2023
1 parent 88556dd commit 4ff60e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
tags: ["*"]
# push:
# tags: [ "*" ]

# Allows you to run this workflow manually from the Actions tab
# Currently the only way to successfully run this workflow. push: tags does not work. Hopefully it will in the future.
# Allows you to run this workflow manually from the Actions tab.
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
Expand All @@ -28,8 +29,8 @@ jobs:
needs: generate-openapi-spec
runs-on: ubuntu-latest
steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Checkout
# uses: actions/checkout@v3
- name: Download Package
uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -67,4 +68,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v1
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {
ext {
springBootVersion = "2.7.11"
httpclientVersion = "4.5.14"
aerospikeClientVersion = findProperty("aerospikeClientVersion") ?: "7.0.0"
aerospikeClientVersion = findProperty("aerospikeClientVersion") ?: "7.1.0"
set('snakeyaml.version', '2.0') // Can be removed after upgrading to springboot 3.x
}
if (findProperty("aerospikeUseLocal")) {
Expand Down

0 comments on commit 4ff60e1

Please sign in to comment.