🔧 Tooling for resumable socket.io sessions

This commit is contained in:
2023-07-27 11:08:51 -07:00
parent 26fdb6d3a4
commit 11ef9e6e2a
7 changed files with 36 additions and 24 deletions

View File

@@ -33,7 +33,6 @@ export const getWeeklyPullList = (options) => async (dispatch) => {
dispatch({
type: CV_WEEKLY_PULLLIST_CALL_IN_PROGRESS,
});
await cachedAxios(`${COMICVINE_SERVICE_URI}/getWeeklyPullList`, {
method: "get",
params: options,

View File

@@ -40,7 +40,7 @@ import { success } from "react-notification-system-redux";
import { isNil, map } from "lodash";
export const getServiceStatus = (serviceName?: string) => async (dispatch) => {
export const getServiceStatus = (serviceName?: string) => async dispatch => {
axios
.request({
url: `${LIBRARY_SERVICE_BASE_URI}/getHealthInformation`,
@@ -91,9 +91,9 @@ export const fetchComicBookMetadata = () => async (dispatch) => {
// }),
// );
dispatch({
type: "EMIT_SOCKET_EVENT",
type: LS_IMPORT,
meta: { remote: true },
data: { gym: "asas" },
data: {},
});
};
export const toggleImportQueueStatus = (options) => async (dispatch) => {