ashish
ashish

Reputation: 68

Changing Google Datastore api version

I have a project hosted on Google app engine and it is using datastore api version v1beta2. Can anyone please suggests the step how to migrate from api version v1beta2 to version v1? I got a mail from google asking to move to datastore api version v1 as v1beta2 is deprecated and will stop working after September 30.

Please help as I am unable to work this out since last 2 days.

Thanks

Upvotes: 1

Views: 104

Answers (1)

Dan McGrath
Dan McGrath

Reputation: 42048

You are most likely using the PHP GDS client library. Versions 2.x essentially uses v1beta2 as a gateway, whereas 3.x stream does not.

Upgrading your client library to the latest will start sending requests via the supported path rather than the deprecated path.

Upvotes: 2

Related Questions