Skip to content

Commit

Permalink
added small fixes to deal with SharedWorkspace
Browse files Browse the repository at this point in the history
  • Loading branch information
porterbot committed May 31, 2024
1 parent a9f728f commit cc1b0ba
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// 9.18.8
// 9.19

FlyLight
* Fixed exception when viewing LSMs for a sample
Horta
* Added client support for downloading Tile-loading logging data
* Fixed issue with multi-swc imports in HortaCloud
* Added some fixes for SharedWorkspace Exceptions
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// 9.18.8

FlyLight
* Fixed exception when viewing LSMs for a sample

// 9.18.7

Horta
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ private void handleNeuronDeleted(String user, TmNeuronMetadata neuron) {
try {
log.info("Processing neuron '{}' ({}) remotely deleted by {}", neuron.getName(), neuron.getId(), user);
updateFilter(neuron, NeuronMessageConstants.MessageType.NEURON_DELETE);
neuronManager.fireNeuronDeleted(neuron);
// comment this out for now with shared workspace to see if merges are causing most of the issues
// neuronManager.fireNeuronDeleted(neuron);
} catch (Exception e) {
FrameworkAccess.handleExceptionQuietly("Error handling neuron deletion: " + e.getMessage(), e);
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@

<janeliaws.jetty.version>9.4.46.v20220331</janeliaws.jetty.version>

<janeliaws.jacs-model.version>2.96</janeliaws.jacs-model.version>
<janeliaws.jacs-model.version>3.00</janeliaws.jacs-model.version>

<janeliaws.jacs-messaging.version>2.5.0</janeliaws.jacs-messaging.version>

Expand Down

0 comments on commit cc1b0ba

Please sign in to comment.