## The symptom
Calling `GetFileContent` through connect-sdk-go against Connect server 1.5.4 errors with:
```
error with GetFileContent: need at least version 1.3.0 of Connect for this function,
detected version 1.2.0 (or earlier). Please update your Connect server
```
The call worked fine against 1.5.0. The version in the error is wrong: the server
really is 1.5.4.
## What is going on
This is a bug in the Connect server itself, in how the File object's `content_path`
is handled in 1.5.4. The SDK asks the server for the file content, the server's
version detection misfires, and you get the bogus "update your Connect server"
message. Nothing is wrong with your SDK version or your vault items.
## The fix
Upgrade your Connect server images to 1.5.5 or later. In the connect-helm-charts
setup that means bumping both `connect-api` and `connect-sync`:
1. Check what you are running now: `kubectl get deploy -l app=connect -o jsonpath` and
look at the image tags, or check your helm values.
2. Set the image tag to `1.5.5` (or newer) for `connect-api` and `connect-sync`.
3. `helm upgrade` and wait for the rollout to finish.
4. Retry the `GetFileContent` call. It should work immediately.
## If it still fails after upgrading
Report the exact version pair (SDK version and both server image versions), since the
1.5.5 fix was specifically for this 1.5.4 regression. A different pair failing the
same way would be a new bug, not this one.