easy_ml 0.2.0.pre.rc20 → 0.2.0.pre.rc21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/easy_ml/datasources_controller.rb +2 -2
- data/lib/easy_ml/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0de4170b55d8d6e28cc09ac68421cbee2f0c441e6fb89e86207620fef642ee3
|
4
|
+
data.tar.gz: 86e5b583cc202827bc3d2d9ea89fd4dd13f1d95f729ad5ae8d43936a66fe1a2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d066503c36f9daee59ad93a89b6f35ff6c211602181030036edc31b7ece52276fd252a7a85b549263a180f4ec85f86a04e498440f217b6431d8da0225d9de0e
|
7
|
+
data.tar.gz: c9c69540e6fbbedd688517226cffc757938933317952f9318189200a259dbc5b0963de6dfaa330741ea50387d290980176837f78ea80de04ea5e76b8d8f1c794
|
@@ -72,9 +72,9 @@ module EasyML
|
|
72
72
|
# Start sync in background to avoid blocking
|
73
73
|
datasource.refresh_async
|
74
74
|
|
75
|
-
redirect_to easy_ml_datasources_path, notice: "Datasource is syncing..."
|
75
|
+
redirect_to easy_ml_datasources_path(host: request.host), notice: "Datasource is syncing..."
|
76
76
|
rescue ActiveRecord::RecordNotFound
|
77
|
-
redirect_to easy_ml_datasources_path, error: "Datasource not found..."
|
77
|
+
redirect_to easy_ml_datasources_path(host: request.host), error: "Datasource not found..."
|
78
78
|
end
|
79
79
|
|
80
80
|
private
|
data/lib/easy_ml/version.rb
CHANGED