mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 03:21:21 +00:00
Use uploads table
This commit is contained in:
parent
dc0f151a7f
commit
830dc1bc43
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ class RethinkDBStore {
|
|||
}
|
||||
|
||||
set(key, data, callback) {
|
||||
this.client.table('pastes').insert({ id: RethinkDBStore.md5(key), data: data }).run((error) => {
|
||||
this.client.table('uploads').insert({ id: RethinkDBStore.md5(key), data: data }).run((error) => {
|
||||
if (error) {
|
||||
callback(false);
|
||||
winston.error('failed to insert to table', error);
|
||||
|
@ -26,7 +26,7 @@ class RethinkDBStore {
|
|||
}
|
||||
|
||||
get(key, callback) {
|
||||
this.client.table('pastes').get(RethinkDBStore.md5(key)).run((error, result) => {
|
||||
this.client.table('uploads').get(RethinkDBStore.md5(key)).run((error, result) => {
|
||||
if (error || !result) {
|
||||
callback(false);
|
||||
winston.error('failed to insert to table', error);
|
||||
|
|
Loading…
Reference in a new issue