This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WARN ReceiveHelper - Message action failed. | |
java.lang.RuntimeException: Failed read from session store | |
at org.asamk.signal.manager.storage.sessions.SessionStore.storeSession(SessionStore.java:141) | |
at org.asamk.signal.manager.storage.protocol.SignalProtocolStore.storeSession(SignalProtocolStore.java:119) | |
at org.signal.libsignal.internal.Native.SessionBuilder_ProcessPreKeyBundle(Native Method) | |
at org.signal.libsignal.protocol.SessionBuilder.process(SessionBuilder.java:113) | |
at org.signal.libsignal.protocol.SessionBuilder.process(SessionBuilder.java:93) | |
at org.whispersystems.signalservice.api.crypto.SignalSessionBuilder.process(SignalSessionBuilder.java:24) | |
at org.whispersystems.signalservice.api.SignalServiceMessageSender.handleMismatchedDevices(SignalServiceMessageSender.java:2678) | |
at org.whispersystems.signalservice.api.SignalServiceMessageSender.sendMessage(SignalServiceMessageSender.java:2260) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/admin/email_previews.rb | |
ActiveAdmin.register_page 'Email Previews' do | |
content do | |
div '.' | |
end | |
sidebar 'Mail Previews' do | |
Dir['app/mailer_previews/*_preview.rb'].each do |preview_path| | |
preview_mailer = File.basename(preview_path, '.rb') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/admin/email_previews.rb | |
ActiveAdmin.register_page 'Email Previews' do | |
menu parent: 'dashboard', priority: 10 | |
content do | |
div '1' | |
end | |
sidebar 'Mail Previews' do | |
Dir['test/mailers/previews/**/*_preview.rb'].each do |preview_path| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Human | |
attr_reader :name, :amount | |
def initialize(name, amount) | |
@name = name | |
@amount = amount | |
end | |
def deposit(amount) | |
@amount += amount |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=begin | |
Test various ruby serializers. | |
*** LOCAL GEMS *** | |
bert (1.1.2) | |
bson_ext (1.6.1) | |
json (1.6.5) | |
msgpack (0.4.6) |