diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 4139ab787..1c556aae0 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -109,10 +109,10 @@ jobs: java-version: ${{ matrix.java_version }} distribution: 'temurin' - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - name: Set up Python 3.8 + - name: Set up Python 3 uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 with: - python-version: 3.8 + python-version: 3 - name: install dependencies run: mvn install -DskipTests=true - run: mvn $TEST_SUITE -B diff --git a/ecchronos-binary/src/pylib/ecchronoslib/rest.py b/ecchronos-binary/src/pylib/ecchronoslib/rest.py index 99de38d6e..556828972 100644 --- a/ecchronos-binary/src/pylib/ecchronoslib/rest.py +++ b/ecchronos-binary/src/pylib/ecchronoslib/rest.py @@ -239,7 +239,7 @@ def post(self, keyspace=None, table=None, local=False, repair_type="vnode"): result = result.transform_with_data(new_data=[Repair(x) for x in result.data]) return result - def get_repair_info(self, keyspace=None, table=None, since=None, # pylint: disable=too-many-arguments + def get_repair_info(self, keyspace=None, table=None, since=None, # pylint: disable=too-many-arguments, too-many-positional-arguments duration=None, local=False): request_url = V2RepairSchedulerRequest.repair_info_url if keyspace: