Skip to content

Commit

Permalink
Use checked in ./mvnw
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer committed Jan 29, 2024
1 parent 695baaa commit 356c687
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ jobs:
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up Maven
uses: stCarolas/[email protected]
with:
maven-version: 3.9.4
- uses: actions/checkout@v3
- uses: graalvm/setup-graalvm@v1
with:
Expand All @@ -27,4 +23,4 @@ jobs:
cache: 'maven'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build with Maven
run: mvn -batch-mode clean install -Ppre --file pom.xml
run: ./mvnw -batch-mode clean install -Ppre --file pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ public void stop() {

protected ViewLifecycleListener listener() {
return (context, id, cardinality, join, leaving) -> {
choam.setDiadem(id);
for (var d : join) {
params.context().activate(context.apply(d));
}
for (var d : leaving) {
params.context().remove(d);
}
choam.setDiadem(id);

log.info("View change: {} for: {} joining: {} leaving: {} on: {}", id, params.context().getId(),
join.size(), leaving.size(), params.member().getId());
Expand Down

0 comments on commit 356c687

Please sign in to comment.