Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ jobs:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: example-password-change-me
zk-service1:
image: bitnami/zookeeper:3.7.1
image: bitnamilegacy/zookeeper:3.9.3 # this is the last build, so we can use legacy version (internal lib uses different one already)
env:
ALLOW_ANONYMOUS_LOGIN: "yes"
JVMFLAGS: "-Xmx512m -Xms64m"
zk1:
image: bitnami/zookeeper:3.7.1
image: bitnamilegacy/zookeeper:3.9.3 # this is the last build, so we can use legacy version (internal lib uses different one already)
env:
ALLOW_ANONYMOUS_LOGIN: "yes"
JVMFLAGS: "-Xmx512m -Xms64m"
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
> [!IMPORTANT]
> **This repository is no longer open source**
>
> To better serve Wise business and customer needs, this library is no longer open source and will not receive further public updates. The codebase has moved to our internal systems.
Comment on lines +2 to +4
Copy link

Copilot AI Nov 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The phrasing 'no longer open source' is misleading. The existing code remains open source under the Apache 2.0 license (still shown on line 11). A more accurate statement would be 'This repository has been archived' or 'This repository is no longer actively maintained as open source' to clarify that future development is closed, but the existing code remains under its original license.

Suggested change
> **This repository is no longer open source**
>
> To better serve Wise business and customer needs, this library is no longer open source and will not receive further public updates. The codebase has moved to our internal systems.
> **This repository has been archived and is no longer actively maintained as open source**
>
> To better serve Wise business and customer needs, this library will not receive further public updates. The codebase has moved to our internal systems. The existing code remains available under the Apache 2.0 license.

Copilot uses AI. Check for mistakes.
>
> **For continued development and access, please refer to the internal repository:**
Copy link

Copilot AI Nov 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The notice references a private GitHub repository URL, which external users cannot access. This may cause confusion for public users who cannot view the linked repository. Consider either removing the link entirely or adding clarification that access is restricted to internal team members only.

Suggested change
> **For continued development and access, please refer to the internal repository:**
> **For continued development and access (internal team members only), please refer to the internal repository:**

Copilot uses AI. Check for mistakes.
> https://github.com/transferwise/tw-tasks-executor-private

# TwTasks - TransferWise Tasks Executor

![Apache 2](https://img.shields.io/hexpm/l/plug.svg)
Expand Down
4 changes: 2 additions & 2 deletions demoapp/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: '3.3'

services:
zk-service:
image: bitnami/zookeeper:3.7.1
image: bitnamilegacy/zookeeper:3.9.3 # this is the last build, so we can use legacy version (internal lib uses different one already)
hostname: zk-service
ports:
- "2181:2181"
Expand All @@ -14,7 +14,7 @@ services:
volumes:
- ./java/fullgc-agent.jar:/tmp/fullgc-agent.jar
kafka-zk:
image: bitnami/zookeeper:3.7.1
image: bitnamilegacy/zookeeper:3.9.3 # this is the last build, so we can use legacy version (internal lib uses different one already)
hostname: kafka-zk
ports:
- "2183:2181"
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/src/test/resources/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ version: '3.7'

services:
zookeeper:
image: bitnami/zookeeper:3.7.1
image: bitnamilegacy/zookeeper:3.9.3 # this is the last build, so we can use legacy version (internal lib uses different one already)
hostname: zookeeper
ports:
- "2181"
environment:
ALLOW_ANONYMOUS_LOGIN: "yes"
JVMFLAGS: -server -Xms25m -Xmx512m -Djava.awt.headless=true -XX:MaxMetaspaceExpansion=2M -XX:+HeapDumpOnOutOfMemoryError -XX:GCHeapFreeLimit=5 -XX:GCTimeLimit=90 -XX:ReservedCodeCacheSize=256m -Djava.security.egd=file:/dev/./urandom -XX:SoftRefLRUPolicyMSPerMB=5 -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=20 -XX:+ExplicitGCInvokesConcurrent
kafka-zk:
image: bitnami/zookeeper:3.7.1
image: bitnamilegacy/zookeeper:3.9.3 # this is the last build, so we can use legacy version (internal lib uses different one already)
hostname: kafka-zk
ports:
- "2181"
Expand Down