Skip to content
This repository has been archived by the owner on Sep 17, 2021. It is now read-only.

Commit

Permalink
Merge pull request #12 from PuzzleIO/develop
Browse files Browse the repository at this point in the history
Change redis storage prefix.
  • Loading branch information
DManavi committed Oct 22, 2020
2 parents ca4c3b8 + 9f02aaa commit ed90279
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@puzzleio/state-manager",
"version": "1.0.1",
"version": "1.0.2",
"description": "Manage current state of the workflow using different backend providers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -15,7 +15,7 @@
},
"repository": {
"type": "git",
"url": "git@github.com-personal:PuzzleIO/state-manager.git"
"url": "git@github.com-personal:PuzzleIO/state_manager.git"
},
"keywords": [
"keen",
Expand Down
2 changes: 1 addition & 1 deletion src/storage/redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export type RedisStorageConfig = {
};

export const defaultConfig: RedisStorageConfig = {
prefix: 'PZIO'
prefix: 'PZST'
};

const errors = {
Expand Down

0 comments on commit ed90279

Please sign in to comment.