dependabot[bot] on npm_and_yarn
ai on main
Bump ini from 1.3.5 to 1.3.7 (#… (compare)
dependabot[bot] on npm_and_yarn
Bump ini from 1.3.5 to 1.3.7 B… (compare)
ai on next
Fix branch name (compare)
ai on next
Update dependencies (compare)
ai on master
ai on main
ai on next
Typo (compare)
ai on next
Use resend shortcut (compare)
ai on next
Use nameless single job (compare)
ai on next
FIx job name (compare)
ai on next
Update dependencies Add cache to CI (compare)
ai on next
Fix workflow format (compare)
ai on next
Clean up GitHub Action config (compare)
ai on next
Add 0/clean action docs (compare)
ai on next
Simplify docs Simplify another example (compare)
ai on next
Add encryptActions docs (compare)
dispatch.local()
looks like what you want. See: https://logux.io/recipes/cross-tab/
'login/done'
I assume client.changeUser( action.userId, action.token )
needs to called to change from anonymous
to the logged in user.logux/subscribe
the client
is in a incorrect state as it still has the anonymous
login which hasn't received alogux/sychronized
leaving setSynchronized()
in status()
never passing if (Object.keys(processing).length === 0)
because it has the anonymous
item still present. Apologies for the long winded explanation.client.destroy()
and then client.start()
with the logged in users credentials.
const Logux = createLogux({
subprotocol: config.subprotocol,
server: config.loguxProxy,
userId: someUserId
token: i-want-to-change-this-when-user-pushes-a-button
});
online
and has a log of updates to send to the server, how can I find out when they've all been sent. This is all handled y Logux client code and I can't see how to see what it is doing.Hey, guys! I try to build a simple app with rails backend but faild with this. The connection from client goes to proxy and rails well, but when I try to add something to logs proxy does not receive any message.
I suspect that client does not send action to server. What I did wrong? client send action code below
loguxClient.log.add({
type: 'question/pick',
payload
});
syncSince()
syncSince()
-> syncSinceQuery()
-> outFilter()
matches the "anonymous" signin log entry and discards the earlier unsent crud log items.
Привет! Обнаружил проблему с рассинхронизацией после обрыва интернета. На фронте есть subscribe на channel сущности (character
), load (на сервере) которого отдает всю сущность целиком. Последовательность такая:
setRaceChoice
), который меняет одно поле данной сущностиsetRaceChoice
и подписка на channel character
setRaceChoice
не успевает обработаться до того, как прилетает load от channel character
- и приходят устаревшие данныеИспользуется NoSQL БД - нормальную блокировку сделать проблематично
WS лог выглядит так - http://prntscr.com/us7lok
Есть ли возможность это решить?
Hello, I've run into a problem and I'm not sure if it's a known bug or some issue with my own code:
add_group
action, stored locally for now).add_group
- but it takes a while (async DB query).add_group
actions for groups (in the channel's load function)add_group
message.Because the DB query hasn't finished yet step 6 sends outdated group information. This seems to happen no matter whether my load/process functions are async or not. Is this what's being addressed by logux/logux#54
changeUser
user method, that I might use, but I don't want to disconnect/reconnect, etc.